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=662
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=663",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=661",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8717/?format=api",
            "name": "NAD83 / California zone 4 (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8717",
            "extent": {
                "south": 35.78,
                "west": -122.01,
                "north": 37.58,
                "east": -115.62
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8718/?format=api",
            "name": "NAD83 / California zone 5 (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8718",
            "extent": {
                "south": 32.76,
                "west": -121.42,
                "north": 35.81,
                "east": -114.12
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8719/?format=api",
            "name": "NAD83 / California zone 6 (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8719",
            "extent": {
                "south": 32.53,
                "west": -118.15,
                "north": 34.08,
                "east": -114.42
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8720/?format=api",
            "name": "NAD83 / Colorado North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8720",
            "extent": {
                "south": 39.56,
                "west": -109.06,
                "north": 41.01,
                "east": -102.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8721/?format=api",
            "name": "NAD83 / Colorado Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8721",
            "extent": {
                "south": 38.14,
                "west": -109.06,
                "north": 40.09,
                "east": -102.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8722/?format=api",
            "name": "NAD83 / Colorado South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8722",
            "extent": {
                "south": 36.98,
                "west": -109.06,
                "north": 38.68,
                "east": -102.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8723/?format=api",
            "name": "NAD83 / Connecticut (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8723",
            "extent": {
                "south": 40.98,
                "west": -73.73,
                "north": 42.05,
                "east": -71.78
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8724/?format=api",
            "name": "NAD83 / Delaware (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8724",
            "extent": {
                "south": 38.44,
                "west": -75.8,
                "north": 39.85,
                "east": -74.97
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8725/?format=api",
            "name": "NAD83 / Florida North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8725",
            "extent": {
                "south": 29.21,
                "west": -87.63,
                "north": 31.01,
                "east": -82.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8726/?format=api",
            "name": "NAD83 / Florida East (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8726",
            "extent": {
                "south": 24.41,
                "west": -82.33,
                "north": 30.83,
                "east": -79.97
            }
        }
    ]
}