JuliaEarth/CoordRefSystems.jl

Add support for MAGNA-SIGRAS EPSG:4686

Closed this issue · 6 comments

https://github.com/JuliaEarth/CoordRefSystems.jl/blob/main/src/strings.jl
If you know the EPSG/ESRI code of a given ESRI WKT string, please submit a pull request.

@romu545 check this page: https://epsg.io/4686

At the bottom you can find the option "Export ESRI WKT". Click on it to see the following string:

GEOGCS["GCS_MAGNA",
    DATUM["D_MAGNA",
        SPHEROID["GRS_1980",6378137.0,298.257222101]],
    PRIMEM["Greenwich",0.0],
    UNIT["Degree",0.0174532925199433]]

You need to map the ESRI string "GCS_MAGNA" to the EPSG{4686} code in the dictionary here;

const esriid2code = Dict(

Do you know how to submit a pull request on GitHub?

No worries. Check this guide: https://github.com/firstcontributions/first-contributions

Try to follow those steps and ask for help here if you have questions.

Thank you for fixing it @romu545.

For reference: #154

A patch release has been triggered, should be available in 15min: JuliaRegistries/General#113494