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=688
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=689",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=687",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9159/?format=api",
            "name": "RSAO13 / TM 12 SE",
            "code": "EPSG:9159",
            "extent": {
                "south": -17.26,
                "west": 8.2,
                "north": -6.01,
                "east": 13.86
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9182/?format=api",
            "name": "SIRGAS-Chile",
            "code": "EPSG:9182",
            "extent": {
                "south": -59.87,
                "west": -113.21,
                "north": -17.5,
                "east": -65.72
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9183/?format=api",
            "name": "SIRGAS-Chile",
            "code": "EPSG:9183",
            "extent": {
                "south": -59.87,
                "west": -113.21,
                "north": -17.5,
                "east": -65.72
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9184/?format=api",
            "name": "SIRGAS-Chile",
            "code": "EPSG:9184",
            "extent": {
                "south": -59.87,
                "west": -113.21,
                "north": -17.5,
                "east": -65.72
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9191/?format=api",
            "name": "WGS 84 / NIWA Albers",
            "code": "EPSG:9191",
            "extent": {
                "south": -60.0,
                "west": -170.0,
                "north": -25.0,
                "east": 155.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9205/?format=api",
            "name": "VN-2000 / TM-3 103-00",
            "code": "EPSG:9205",
            "extent": {
                "south": 20.89,
                "west": 102.14,
                "north": 22.82,
                "east": 103.99
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9206/?format=api",
            "name": "VN-2000 / TM-3 104-00",
            "code": "EPSG:9206",
            "extent": {
                "south": 20.57,
                "west": 103.21,
                "north": 22.04,
                "east": 105.03
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9207/?format=api",
            "name": "VN-2000 / TM-3 104-30",
            "code": "EPSG:9207",
            "extent": {
                "south": 8.33,
                "west": 103.4,
                "north": 10.55,
                "east": 105.54
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9208/?format=api",
            "name": "VN-2000 / TM-3 104-45",
            "code": "EPSG:9208",
            "extent": {
                "south": 10.18,
                "west": 103.53,
                "north": 22.85,
                "east": 105.86
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:9209/?format=api",
            "name": "VN-2000 / TM-3 105-30",
            "code": "EPSG:9209",
            "extent": {
                "south": 9.19,
                "west": 104.33,
                "north": 23.4,
                "east": 106.69
            }
        }
    ]
}