You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, tests fail expectingly (see discussion in #2) because CRS URIs (e.g. http://www.opengis.net/def/crs/IAU/2015/70300) are not registered yet with the naming authority.
So code like pyproj.CRS("http://www.opengis.net/def/crs/IAU/2015/70300") returns an exception.
The Internal Proj Error part interested me, what also interested me was that calling pyproj.CRS("IAU:70300")does not return an exception, it works just fine!:
In [5]: pyproj.CRS('IAU:70300')
Out[5]:
<Geographic 2D CRS: IAU_2015:70300>
Name: Titania (2015) - Sphere / Ocentric
Axis Info [ellipsoidal]:
- Lat[north]: Geodetic latitude (degree)
- Lon[east]: Geodetic longitude (degree)
Area of Use:
- undefined
Datum: Titania (2015) - Sphere
- Ellipsoid: Titania (2015) - Sphere
- Prime Meridian: Reference Meridian
Recently URIs like https://www.opengis.net/def/crs/IAU/2015/49900 started resolving however Proj still cannot make CRSs using them, switching all the URIs to URNs however does work and now #5 is passing tests
theoretically fixed as of OSGeo/PROJ#3569 which will be available in PROJ 9.2.0. Intermediate fix is to use URNs instead although they aren't technically valid tms 1.0 which requires URIs (maybe 2.0 is more flexible?)
Currently, tests fail expectingly (see discussion in #2) because CRS URIs (e.g. http://www.opengis.net/def/crs/IAU/2015/70300) are not registered yet with the naming authority.
So code like
pyproj.CRS("http://www.opengis.net/def/crs/IAU/2015/70300")
returns an exception.The exception interested me because it is:
The
Internal Proj Error
part interested me, what also interested me was that callingpyproj.CRS("IAU:70300")
does not return an exception, it works just fine!:This issue is just to keep track of this issue and work on it happening at opengeospatial/NamingAuthority#212
The text was updated successfully, but these errors were encountered: