API endpoint that allows Location instances to be viewed.

GET:
Return a list of all the existing location instances.

FILTERS:
Parameters - 'id', 'agency_id', 'name', 'name__contains', 'latitude', 'latitude__contains', 'longitude',
'longitude__contains', 'location__name', 'location__name__contains', 'location__id', 'orbital_launch_attempt_count',
'total_launch_count'

ORDERING:
Fields - 'id', 'name', 'location__id', 'location__name', 'orbital_launch_attempt_count', 'total_launch_count'

Example - /2.2.0/pad/?ordering=location__name

GET /2.2.0/pad/?format=api&offset=210&ordering=-location__name
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 214,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.2.0/pad/?format=api&limit=10&offset=200&ordering=-location__name",
    "results": [
        {
            "id": 53,
            "url": "https://ll.thespacedevs.com/2.2.0/pad/53/?format=api",
            "agency_id": null,
            "name": "Mojave Air and Space Port",
            "description": null,
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Mojave_Air_and_Space_Port",
            "map_url": "https://www.google.com/maps?q=35.059444,-118.151667",
            "latitude": "35.059444",
            "longitude": "-118.151667",
            "location": {
                "id": 20,
                "url": "https://ll.thespacedevs.com/2.2.0/location/20/?format=api",
                "name": "Air launch to orbit",
                "country_code": "???",
                "description": "",
                "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_20_20200803142433.jpg",
                "timezone_name": "",
                "total_launch_count": 51,
                "total_landing_count": 0
            },
            "country_code": "USA",
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_53_20200803143612.jpg",
            "total_launch_count": 5,
            "orbital_launch_attempt_count": 5
        },
        {
            "id": 104,
            "url": "https://ll.thespacedevs.com/2.2.0/pad/104/?format=api",
            "agency_id": null,
            "name": "Guam International Airport",
            "description": null,
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Antonio_B._Won_Pat_International_Airport",
            "map_url": "https://www.google.com/maps?q=13.483889,144.797222",
            "latitude": "13.483889",
            "longitude": "144.797222",
            "location": {
                "id": 20,
                "url": "https://ll.thespacedevs.com/2.2.0/location/20/?format=api",
                "name": "Air launch to orbit",
                "country_code": "???",
                "description": "",
                "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_20_20200803142433.jpg",
                "timezone_name": "",
                "total_launch_count": 51,
                "total_landing_count": 0
            },
            "country_code": "USA",
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_104_20200803143546.jpg",
            "total_launch_count": 0,
            "orbital_launch_attempt_count": 0
        },
        {
            "id": 46,
            "url": "https://ll.thespacedevs.com/2.2.0/pad/46/?format=api",
            "agency_id": 100,
            "name": "Gran Canaria",
            "description": null,
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Gran_Canaria",
            "map_url": "https://www.google.com/maps?q=27.966667,-15.6",
            "latitude": "27.966667",
            "longitude": "-15.6",
            "location": {
                "id": 20,
                "url": "https://ll.thespacedevs.com/2.2.0/location/20/?format=api",
                "name": "Air launch to orbit",
                "country_code": "???",
                "description": "",
                "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_20_20200803142433.jpg",
                "timezone_name": "",
                "total_launch_count": 51,
                "total_landing_count": 0
            },
            "country_code": "ESP",
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_46_20200803143312.jpg",
            "total_launch_count": 1,
            "orbital_launch_attempt_count": 1
        },
        {
            "id": 110,
            "url": "https://ll.thespacedevs.com/2.2.0/pad/110/?format=api",
            "agency_id": null,
            "name": "Andersen Air Force Base",
            "description": null,
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Andersen_Air_Force_Base",
            "map_url": "https://www.google.com/maps?q=13.581111,144.924444",
            "latitude": "13.581111",
            "longitude": "144.924444",
            "location": {
                "id": 20,
                "url": "https://ll.thespacedevs.com/2.2.0/location/20/?format=api",
                "name": "Air launch to orbit",
                "country_code": "???",
                "description": "",
                "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_20_20200803142433.jpg",
                "timezone_name": "",
                "total_launch_count": 51,
                "total_landing_count": 0
            },
            "country_code": "USA",
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_110_20200803143558.jpg",
            "total_launch_count": 0,
            "orbital_launch_attempt_count": 0
        }
    ]
}