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=667
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=668",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=666",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8767/?format=api",
            "name": "NAD83 / New York Long Island (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8767",
            "extent": {
                "south": 40.47,
                "west": -74.26,
                "north": 41.3,
                "east": -71.8
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8768/?format=api",
            "name": "NAD83 / North Carolina (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8768",
            "extent": {
                "south": 33.83,
                "west": -84.33,
                "north": 36.59,
                "east": -75.38
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8769/?format=api",
            "name": "NAD83 / Ohio North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8769",
            "extent": {
                "south": 40.1,
                "west": -84.81,
                "north": 42.33,
                "east": -80.51
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8770/?format=api",
            "name": "NAD83 / Ohio South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8770",
            "extent": {
                "south": 38.4,
                "west": -84.83,
                "north": 40.36,
                "east": -80.7
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8771/?format=api",
            "name": "NAD83 / Oklahoma North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8771",
            "extent": {
                "south": 35.27,
                "west": -103.0,
                "north": 37.01,
                "east": -94.42
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8772/?format=api",
            "name": "NAD83 / Oklahoma South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8772",
            "extent": {
                "south": 33.62,
                "west": -100.0,
                "north": 35.57,
                "east": -94.42
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8773/?format=api",
            "name": "NAD83 / Pennsylvania North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8773",
            "extent": {
                "south": 40.6,
                "west": -80.53,
                "north": 42.53,
                "east": -74.7
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8774/?format=api",
            "name": "NAD83 / Pennsylvania South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8774",
            "extent": {
                "south": 39.71,
                "west": -80.53,
                "north": 41.18,
                "east": -74.72
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8775/?format=api",
            "name": "NAD83 / Rhode Island (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8775",
            "extent": {
                "south": 41.13,
                "west": -71.85,
                "north": 42.02,
                "east": -71.08
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8776/?format=api",
            "name": "NAD83 / South Dakota North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8776",
            "extent": {
                "south": 44.14,
                "west": -104.07,
                "north": 45.95,
                "east": -96.45
            }
        }
    ]
}