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=666
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=667",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=665",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8757/?format=api",
            "name": "NAD83 / Nevada Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8757",
            "extent": {
                "south": 36.0,
                "west": -118.19,
                "north": 41.0,
                "east": -114.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8758/?format=api",
            "name": "NAD83 / Nevada West (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8758",
            "extent": {
                "south": 36.95,
                "west": -120.0,
                "north": 42.0,
                "east": -116.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8759/?format=api",
            "name": "NAD83 / New Hampshire (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8759",
            "extent": {
                "south": 42.69,
                "west": -72.56,
                "north": 45.31,
                "east": -70.63
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8760/?format=api",
            "name": "NAD83 / New Jersey (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8760",
            "extent": {
                "south": 38.87,
                "west": -75.6,
                "north": 41.36,
                "east": -73.88
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8761/?format=api",
            "name": "NAD83 / New Mexico East (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8761",
            "extent": {
                "south": 32.0,
                "west": -105.72,
                "north": 37.0,
                "east": -102.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8762/?format=api",
            "name": "NAD83 / New Mexico Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8762",
            "extent": {
                "south": 31.78,
                "west": -107.73,
                "north": 37.0,
                "east": -104.84
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8763/?format=api",
            "name": "NAD83 / New Mexico West (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8763",
            "extent": {
                "south": 31.33,
                "west": -109.06,
                "north": 37.0,
                "east": -106.32
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8764/?format=api",
            "name": "NAD83 / New York East (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8764",
            "extent": {
                "south": 40.88,
                "west": -75.87,
                "north": 45.02,
                "east": -73.23
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8765/?format=api",
            "name": "NAD83 / New York Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8765",
            "extent": {
                "south": 41.99,
                "west": -77.75,
                "north": 44.41,
                "east": -75.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8766/?format=api",
            "name": "NAD83 / New York West (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8766",
            "extent": {
                "south": 41.99,
                "west": -79.77,
                "north": 43.64,
                "east": -77.36
            }
        }
    ]
}