Replies: 1 comment 1 reply
-
I am not the expert at this, but I have hacked my own installation in a docker container for a MapServer instance to include some custom EPSG codes by doing the following SQL query. This makes an EPSG code 930916 for the GOES-16 ABI meteorological satellite instrument's CRS:
Most of this was determined by using my IDE (pycharm) to look at the tables in the PROJ database and reverse engineer/hack what values I could add. If you can find the equivalent table/rows for what you want to do in the database then something similar should work. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm exploring the possibility of adding custom CRS and transformations to the proj.db so they can be utilized with all the built-in functionality in Pyproj/Proj.
Is it possible to add:
I assume that adding bound CRSs might not be possible, but perhaps there is a way to add engineering CRS? One challenge with engineering CRS, as I see it, is the lack of an ellipsoid, which, from my understanding, is mandatory in the geodetic_crs table in proj.db.
There exist a BoundCRS class, and engineering CRS objects can be created based on WKT2, so it should be possible.
Beta Was this translation helpful? Give feedback.
All reactions