Unexpected result transforming lat-lon on sphere to WGS84 #952
Answered
by
andypbarrett
andypbarrett
asked this question in
Q&A
-
I am trying to convert lat, lon on a sphere to lat, lon on the WGS84 ellipsoid. My understanding is that latitude, at least, should be different. However, I get the output is the same as the input.
|
Beta Was this translation helpful? Give feedback.
Answered by
andypbarrett
Sep 18, 2021
Replies: 2 comments
-
Looks like it is a >>> from pyproj import Transformer
>>> tranformer = Transformer.from_crs('+proj=lonlat +ellps=sphere +R=6367470', 4326, always_xy=True)
>>> tranformer
<Concatenated Operation Transformer: noop>
Description: Ballpark geographic offset from unknown to WGS 84 + axis order change (2D)
Area of Use:
- name: World
- bounds: (-180.0, -90.0, 180.0, 90.0)
I would ask here if you think this behavior is incorrect: /~https://github.com/osgeo/PROJ/ UPDATE: Better answer here: OSGeo/PROJ#2860 |
Beta Was this translation helpful? Give feedback.
0 replies
-
See the answer here: OSGeo/PROJ#2860 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
andypbarrett
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See the answer here: OSGeo/PROJ#2860