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=3
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=4",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=2",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20021/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 21",
            "code": "EPSG:20021",
            "extent": {
                "south": 51.51,
                "west": 120.0,
                "north": 74.0,
                "east": 126.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20022/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 22",
            "code": "EPSG:20022",
            "extent": {
                "south": 42.25,
                "west": 126.0,
                "north": 73.61,
                "east": 132.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20023/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 23",
            "code": "EPSG:20023",
            "extent": {
                "south": 42.63,
                "west": 132.0,
                "north": 76.15,
                "east": 138.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20024/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 24",
            "code": "EPSG:20024",
            "extent": {
                "south": 45.84,
                "west": 138.0,
                "north": 76.27,
                "east": 144.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20025/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 25",
            "code": "EPSG:20025",
            "extent": {
                "south": 43.6,
                "west": 144.0,
                "north": 76.82,
                "east": 150.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20026/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 26",
            "code": "EPSG:20026",
            "extent": {
                "south": 45.77,
                "west": 150.0,
                "north": 76.26,
                "east": 156.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20027/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 27",
            "code": "EPSG:20027",
            "extent": {
                "south": 50.27,
                "west": 156.0,
                "north": 77.2,
                "east": 162.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20028/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 28",
            "code": "EPSG:20028",
            "extent": {
                "south": 54.47,
                "west": 162.0,
                "north": 70.03,
                "east": 168.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20029/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger zone 29",
            "code": "EPSG:20029",
            "extent": {
                "south": 54.45,
                "west": 168.0,
                "north": 70.19,
                "east": 174.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2003/?format=api",
            "name": "Grenada 1953 / British West Indies Grid",
            "code": "EPSG:2003",
            "extent": {
                "south": 11.94,
                "west": -61.84,
                "north": 12.57,
                "east": -61.35
            }
        }
    ]
}