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=4
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=5",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=3",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20030/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 30",
            "code": "EPSG:20030",
            "extent": {
                "south": 61.65,
                "west": 174.0,
                "north": 71.59,
                "east": 180.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20031/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 31",
            "code": "EPSG:20031",
            "extent": {
                "south": 64.35,
                "west": -180.0,
                "north": 71.65,
                "east": -174.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20032/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 32",
            "code": "EPSG:20032",
            "extent": {
                "south": 64.2,
                "west": -174.0,
                "north": 67.18,
                "east": -168.97
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2004/?format=api",
            "name": "Montserrat 1958 / British West Indies Grid",
            "code": "EPSG:2004",
            "extent": {
                "south": 16.62,
                "west": -62.29,
                "north": 16.87,
                "east": -62.08
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2005/?format=api",
            "name": "St. Kitts 1955 / British West Indies Grid",
            "code": "EPSG:2005",
            "extent": {
                "south": 17.06,
                "west": -62.92,
                "north": 17.46,
                "east": -62.5
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2006/?format=api",
            "name": "St. Lucia 1955 / British West Indies Grid",
            "code": "EPSG:2006",
            "extent": {
                "south": 13.66,
                "west": -61.13,
                "north": 14.16,
                "east": -60.82
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20064/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 4N",
            "code": "EPSG:20064",
            "extent": {
                "south": 54.32,
                "west": 19.57,
                "north": 55.32,
                "east": 22.87
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20065/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 5N",
            "code": "EPSG:20065",
            "extent": {
                "south": 55.69,
                "west": 26.61,
                "north": 69.47,
                "east": 30.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20066/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 6N",
            "code": "EPSG:20066",
            "extent": {
                "south": 50.34,
                "west": 30.0,
                "north": 70.02,
                "east": 36.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20067/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 7N",
            "code": "EPSG:20067",
            "extent": {
                "south": 43.18,
                "west": 36.0,
                "north": 69.23,
                "east": 42.01
            }
        }
    ]
}