-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Get function no longer working #22
Comments
I created an issue here: maptiler/epsg.io#185 |
Steps to reproduce and traceback:
|
Project is dead. Issue still present in 2024, while last version is 6 years old. The inability to use |
Like Cartopy, you should probably use pyproj instead from pyproj import CRS
crs = CRS.from_epsg(21781) Or, if you are using the the CRS with Rasterio anyways, you might as well from rasterio.crs import CRS
crs = CRS.from_epsg(21781) Is there functionality of pyepsg that you are missing in either of the two, @aleksandaratanasov? |
Thanks for the tip. I completely switched to GDAL due to other project requirements. The big drawback (compared to the two you have posted) is how clunky the Python API of GDAL is (imho). |
It seems like there has been a recent change to epsg.io web page where now the gml return is no longer supported from the URL request, so the get function is broken when it tries to convert the request from the string into an XML. Is there any expected update to the library or was the update to the epsg web page a bug?
The text was updated successfully, but these errors were encountered: