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
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=2",
    "previous": null,
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2000/?format=api",
            "name": "Anguilla 1957 / British West Indies Grid",
            "code": "EPSG:2000",
            "extent": {
                "south": 18.11,
                "west": -63.22,
                "north": 18.33,
                "east": -62.92
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20004/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 4",
            "code": "EPSG:20004",
            "extent": {
                "south": 54.32,
                "west": 19.57,
                "north": 55.32,
                "east": 22.87
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20005/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 5",
            "code": "EPSG:20005",
            "extent": {
                "south": 55.69,
                "west": 26.61,
                "north": 69.47,
                "east": 30.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20006/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 6",
            "code": "EPSG:20006",
            "extent": {
                "south": 50.34,
                "west": 30.0,
                "north": 70.02,
                "east": 36.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20007/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 7",
            "code": "EPSG:20007",
            "extent": {
                "south": 43.18,
                "west": 36.0,
                "north": 69.23,
                "east": 42.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20008/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 8",
            "code": "EPSG:20008",
            "extent": {
                "south": 41.19,
                "west": 42.0,
                "north": 80.91,
                "east": 48.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20009/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 9",
            "code": "EPSG:20009",
            "extent": {
                "south": 41.39,
                "west": 48.0,
                "north": 81.4,
                "east": 54.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2001/?format=api",
            "name": "Antigua 1943 / British West Indies Grid",
            "code": "EPSG:2001",
            "extent": {
                "south": 16.94,
                "west": -61.95,
                "north": 17.22,
                "east": -61.61
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20010/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 10",
            "code": "EPSG:20010",
            "extent": {
                "south": 50.47,
                "west": 54.0,
                "north": 81.91,
                "east": 60.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20011/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 11",
            "code": "EPSG:20011",
            "extent": {
                "south": 50.66,
                "west": 60.0,
                "north": 81.77,
                "east": 66.0
            }
        }
    ]
}