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=657
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=658",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=656",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8528/?format=api",
            "name": "NAD83(2011) / KS RCS zone 11",
            "code": "EPSG:8528",
            "extent": {
                "south": 38.73,
                "west": -96.04,
                "north": 39.43,
                "east": -94.58
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8529/?format=api",
            "name": "NAD83(2011) / KS RCS zone 12",
            "code": "EPSG:8529",
            "extent": {
                "south": 36.99,
                "west": -102.05,
                "north": 38.71,
                "east": -101.06
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8531/?format=api",
            "name": "NAD83(2011) / KS RCS zone 13",
            "code": "EPSG:8531",
            "extent": {
                "south": 36.99,
                "west": -101.13,
                "north": 38.71,
                "east": -100.08
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8533/?format=api",
            "name": "NAD83(2011) / KS RCS zone 14",
            "code": "EPSG:8533",
            "extent": {
                "south": 36.99,
                "west": -100.25,
                "north": 38.7,
                "east": -99.54
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8534/?format=api",
            "name": "NAD83(2011) / KS RCS zone 15",
            "code": "EPSG:8534",
            "extent": {
                "south": 36.99,
                "west": -99.59,
                "north": 38.7,
                "east": -98.91
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8535/?format=api",
            "name": "NAD83(2011) / KS RCS zone 16",
            "code": "EPSG:8535",
            "extent": {
                "south": 36.99,
                "west": -99.03,
                "north": 38.27,
                "east": -98.34
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8536/?format=api",
            "name": "NAD83(2011) / KS RCS zone 17",
            "code": "EPSG:8536",
            "extent": {
                "south": 37.38,
                "west": -98.48,
                "north": 38.18,
                "east": -96.52
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8538/?format=api",
            "name": "NAD83(2011) / KS RCS zone 18",
            "code": "EPSG:8538",
            "extent": {
                "south": 36.99,
                "west": -98.35,
                "north": 37.48,
                "east": -96.52
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8539/?format=api",
            "name": "NAD83(2011) / KS RCS zone 19",
            "code": "EPSG:8539",
            "extent": {
                "south": 36.99,
                "west": -96.53,
                "north": 38.88,
                "east": -95.5
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:8540/?format=api",
            "name": "NAD83(2011) / KS RCS zone 20",
            "code": "EPSG:8540",
            "extent": {
                "south": 36.99,
                "west": -95.53,
                "north": 38.74,
                "east": -94.6
            }
        }
    ]
}