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=2
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=3",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20012/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 12",
            "code": "EPSG:20012",
            "extent": {
                "south": 54.1,
                "west": 66.0,
                "north": 77.07,
                "east": 72.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20013/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 13",
            "code": "EPSG:20013",
            "extent": {
                "south": 53.17,
                "west": 72.0,
                "north": 79.71,
                "east": 78.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20014/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 14",
            "code": "EPSG:20014",
            "extent": {
                "south": 50.69,
                "west": 78.0,
                "north": 81.03,
                "east": 84.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20015/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 15",
            "code": "EPSG:20015",
            "extent": {
                "south": 49.07,
                "west": 84.0,
                "north": 81.27,
                "east": 90.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20016/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 16",
            "code": "EPSG:20016",
            "extent": {
                "south": 49.89,
                "west": 90.0,
                "north": 81.35,
                "east": 96.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20017/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 17",
            "code": "EPSG:20017",
            "extent": {
                "south": 49.73,
                "west": 96.0,
                "north": 81.32,
                "east": 102.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20018/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 18",
            "code": "EPSG:20018",
            "extent": {
                "south": 49.64,
                "west": 102.0,
                "north": 79.48,
                "east": 108.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20019/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 19",
            "code": "EPSG:20019",
            "extent": {
                "south": 49.14,
                "west": 108.0,
                "north": 76.81,
                "east": 114.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2002/?format=api",
            "name": "Dominica 1945 / British West Indies Grid",
            "code": "EPSG:2002",
            "extent": {
                "south": 15.14,
                "west": -61.55,
                "north": 15.69,
                "east": -61.2
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20020/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 20",
            "code": "EPSG:20020",
            "extent": {
                "south": 49.51,
                "west": 114.0,
                "north": 75.96,
                "east": 120.0
            }
        }
    ]
}