We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The PROJ parameter pm can support a string or a number.
pm
The prime meridian is used when defining a datum or for handing the -180/180 issues.
-180/180
So, I propose adding prime_meridian as an input parameter to the Globe object that maps to the pm PROJ parameter.
prime_meridian
Globe
This would enable:
from cartopy.crs import CRS as cCRS, Globe from pyproj.crs import CRS proj_crs = CRS.from_epsg(4326) globe = Globe( ellipse=None, semimajor_axis=proj_crs.ellipsoid.semi_major_metre, semiminor_axis=proj_crs.ellipsoid.semi_minor_metre, inverse_flattening=proj_crs.ellipsoid.inverse_flattening, prime_meridian=proj_crs.prime_meridian.longitude, ) proj_dict = proj_crs.to_dict() cart_crs = cCRS(proj_dict, globe=globe)
The text was updated successfully, but these errors were encountered:
Not as important with #1808
Sorry, something went wrong.
No branches or pull requests
The PROJ parameter
pm
can support a string or a number.The prime meridian is used when defining a datum or for handing the
-180/180
issues.So, I propose adding
prime_meridian
as an input parameter to theGlobe
object that maps to thepm
PROJ parameter.This would enable:
The text was updated successfully, but these errors were encountered: