Replies: 1 comment
-
If you look at the description of the transformer for each one, you will see the core component is the
You can confirm the transformations are all the same in PROJ by looking at the pipeline:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
crs_4326 = CRS("WGS84")
crs_4480 = CRS(4480)
crs_4490 = CRS(4490)
crs_4547 = CRS(4547)
transformer = Transformer.from_crs(crs_4326, crs_4547)
print(transformer.transform(23, 114))
transformer = Transformer.from_crs(crs_4480, crs_4547)
print(transformer.transform(23, 114))
transformer = Transformer.from_crs(crs_4490, crs_4547)
print(transformer.transform(23, 114))
(2544537.57855209, 500000.0)
(2544537.57855209, 500000.0)
(2544537.57855209, 500000.0)
(2544537.57855209, 500000.0)
i donot understand why?the result is error that Compared to Qgis results
Beta Was this translation helpful? Give feedback.
All reactions