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/11/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 11,
    "url": "https://ll.thespacedevs.com/2.2.0/pad/11/?format=api",
    "agency_id": null,
    "name": "Space Launch Complex 6",
    "description": "Space Launch Complex 6 at Vandenberg Space Force Base in California is a launch pad and support area. The site was originally developed starting in 1966, but no launches occurred until 1995, as it was repurposed sequentially for three programs that were subsequently cancelled. Initially to be used for Titan IIIM rockets and the Manned Orbiting Laboratory, these were cancelled before construction of SLC-6 was complete. The complex was later rebuilt to serve as the west coast launch site for the Space Shuttle, but went unused due to budget, safety and political considerations. The pad was subsequently used for four Athena rocket launches before being modified to support the Delta IV launch vehicle family, which used the pad for ten launches from 2006 until 2022. The last Delta IV launched in September 2022, and SpaceX leased SLC-6 in 2023 to convert it to launch Falcon 9 and Falcon Heavy starting in 2025.",
    "info_url": null,
    "wiki_url": "https://en.wikipedia.org/wiki/Vandenberg_Space_Launch_Complex_6",
    "map_url": "https://www.google.com/maps?q=34.5815,-120.6262",
    "latitude": "34.5815",
    "longitude": "-120.6262",
    "location": {
        "id": 11,
        "url": "https://ll.thespacedevs.com/2.2.0/location/11/?format=api",
        "name": "Vandenberg SFB, CA, USA",
        "country_code": "USA",
        "description": "",
        "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_11_20200803142416.jpg",
        "timezone_name": "America/Los_Angeles",
        "total_launch_count": 755,
        "total_landing_count": 18
    },
    "country_code": "USA",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_11_20200803143550.jpg",
    "total_launch_count": 14,
    "orbital_launch_attempt_count": 14
}