Returns available Projections. More info: https://epsg.io/

Query parameters:

name Text filter on the name field. All text field filter methods, like startswith, endswith, icontains are supported.

code Text filter on the code field. All text field filter methods, like startswith, endswith, icontains are supported.

extent__intersects Spatial filter on extent. Filter on only projections whose extent intersect the requested geometry. Supports WKT.

ordering Show the results in a specific order. You can order them by name, code. Add a - in front to reverse the order.

Examples:

?name=projection

?name__icontains=proj

?name__startswith=proj

?code=EPSG:25890

?code__startswith=EPSG

?ordering=name

?ordering=-code

?extent__covers=POLYGON((4.87 52.73, 4.87 52.79, 4.98 52.79,
4.98 52.73, 4.87 52.73))

?extent__intersects=POLYGON((4.87 52.73, 4.87 52.79, 4.98 52.79,
4.98 52.73, 4.87 52.73))
GET /api/v4/projections/?format=api&page=672
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 6891,
    "next": "https://demo.lizard.net/api/v4/projections/?format=api&page=673",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=671",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8817/?format=api",
            "name": "MTRF-2000",
            "code": "EPSG:8817",
            "extent": {
                "south": 15.61,
                "west": 34.44,
                "north": 32.16,
                "east": 55.67
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8818/?format=api",
            "name": "MTRF-2000",
            "code": "EPSG:8818",
            "extent": {
                "south": 15.61,
                "west": 34.44,
                "north": 32.16,
                "east": 55.67
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8820/?format=api",
            "name": "EPSG example wellbore local cubic CRS - true north",
            "code": "EPSG:8820",
            "extent": {
                "south": -90.0,
                "west": -180.0,
                "north": 90.0,
                "east": 180.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8821/?format=api",
            "name": "EPSG example wellbore local cubic CRS - grid north (ft)",
            "code": "EPSG:8821",
            "extent": {
                "south": -90.0,
                "west": -180.0,
                "north": 90.0,
                "east": 180.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8826/?format=api",
            "name": "NAD83 / Idaho Transverse Mercator",
            "code": "EPSG:8826",
            "extent": {
                "south": 41.99,
                "west": -117.24,
                "north": 49.01,
                "east": -111.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8836/?format=api",
            "name": "MTRF-2000 / UTM zone 36N",
            "code": "EPSG:8836",
            "extent": {
                "south": 24.92,
                "west": 34.44,
                "north": 29.38,
                "east": 36.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8837/?format=api",
            "name": "MTRF-2000 / UTM zone 37N",
            "code": "EPSG:8837",
            "extent": {
                "south": 16.29,
                "west": 36.0,
                "north": 32.16,
                "east": 42.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8838/?format=api",
            "name": "MTRF-2000 / UTM zone 38N",
            "code": "EPSG:8838",
            "extent": {
                "south": 15.61,
                "west": 41.99,
                "north": 31.15,
                "east": 48.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8839/?format=api",
            "name": "MTRF-2000 / UTM zone 39N",
            "code": "EPSG:8839",
            "extent": {
                "south": 17.43,
                "west": 48.0,
                "north": 28.94,
                "east": 54.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8840/?format=api",
            "name": "MTRF-2000 / UTM zone 40N",
            "code": "EPSG:8840",
            "extent": {
                "south": 19.66,
                "west": 54.0,
                "north": 22.77,
                "east": 55.67
            }
        }
    ]
}