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=661
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=662",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=660",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8707/?format=api",
            "name": "NAD83 / North Dakota North (ft) + NAVD88 height (ft)",
            "code": "EPSG:8707",
            "extent": {
                "south": 47.15,
                "west": -104.07,
                "north": 49.01,
                "east": -96.83
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8708/?format=api",
            "name": "NAD83 / North Dakota South (ft) + NAVD88 height (ft)",
            "code": "EPSG:8708",
            "extent": {
                "south": 45.93,
                "west": -104.05,
                "north": 47.83,
                "east": -96.55
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8709/?format=api",
            "name": "NAD83 / Oregon North (ft) + NAVD88 height (ft)",
            "code": "EPSG:8709",
            "extent": {
                "south": 43.95,
                "west": -124.17,
                "north": 46.26,
                "east": -116.47
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8710/?format=api",
            "name": "NAD83 / Oregon South (ft) + NAVD88 height (ft)",
            "code": "EPSG:8710",
            "extent": {
                "south": 41.98,
                "west": -124.6,
                "north": 44.56,
                "east": -116.9
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8711/?format=api",
            "name": "NAD83 / South Carolina (ft) + NAVD88 height (ft)",
            "code": "EPSG:8711",
            "extent": {
                "south": 32.05,
                "west": -83.36,
                "north": 35.21,
                "east": -78.52
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8712/?format=api",
            "name": "NAD83 / Arkansas North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8712",
            "extent": {
                "south": 34.67,
                "west": -94.62,
                "north": 36.5,
                "east": -89.64
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8713/?format=api",
            "name": "NAD83 / Arkansas South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8713",
            "extent": {
                "south": 33.01,
                "west": -94.48,
                "north": 35.1,
                "east": -90.4
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8714/?format=api",
            "name": "NAD83 / California zone 1 (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8714",
            "extent": {
                "south": 39.59,
                "west": -124.45,
                "north": 42.01,
                "east": -119.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8715/?format=api",
            "name": "NAD83 / California zone 2 (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8715",
            "extent": {
                "south": 38.02,
                "west": -124.06,
                "north": 40.16,
                "east": -119.54
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8716/?format=api",
            "name": "NAD83 / California zone 3 (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8716",
            "extent": {
                "south": 36.73,
                "west": -123.02,
                "north": 38.71,
                "east": -117.83
            }
        }
    ]
}