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=668
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=669",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=667",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8777/?format=api",
            "name": "NAD83 / South Dakota South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8777",
            "extent": {
                "south": 42.48,
                "west": -104.06,
                "north": 44.79,
                "east": -96.43
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8778/?format=api",
            "name": "NAD83 / Tennessee (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8778",
            "extent": {
                "south": 34.98,
                "west": -90.31,
                "north": 36.68,
                "east": -81.65
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8779/?format=api",
            "name": "NAD83 / Texas North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8779",
            "extent": {
                "south": 34.3,
                "west": -103.03,
                "north": 36.5,
                "east": -99.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8780/?format=api",
            "name": "NAD83 / Texas North Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8780",
            "extent": {
                "south": 31.72,
                "west": -103.07,
                "north": 34.58,
                "east": -94.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8781/?format=api",
            "name": "NAD83 / Texas Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8781",
            "extent": {
                "south": 29.78,
                "west": -106.66,
                "north": 32.27,
                "east": -93.5
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8782/?format=api",
            "name": "NAD83 / Texas South Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8782",
            "extent": {
                "south": 27.78,
                "west": -105.0,
                "north": 30.67,
                "east": -93.76
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8783/?format=api",
            "name": "NAD83 / Texas South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8783",
            "extent": {
                "south": 25.83,
                "west": -100.2,
                "north": 28.21,
                "east": -96.85
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8784/?format=api",
            "name": "NAD83 / Utah North (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8784",
            "extent": {
                "south": 40.55,
                "west": -114.04,
                "north": 42.01,
                "east": -109.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8785/?format=api",
            "name": "NAD83 / Utah Central (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8785",
            "extent": {
                "south": 38.49,
                "west": -114.05,
                "north": 41.08,
                "east": -109.04
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8786/?format=api",
            "name": "NAD83 / Utah South (ftUS) + NAVD88 height (ftUS)",
            "code": "EPSG:8786",
            "extent": {
                "south": 36.99,
                "west": -114.05,
                "north": 38.58,
                "east": -109.04
            }
        }
    ]
}