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

{
    "id": 42,
    "url": "https://ll.thespacedevs.com/2.2.0/pad/42/?format=api",
    "agency_id": 163,
    "name": "35/1",
    "description": null,
    "info_url": null,
    "wiki_url": "https://en.wikipedia.org/wiki/Plesetsk_Cosmodrome_Site_35",
    "map_url": "https://www.google.com/maps?q=62.927319,40.574897",
    "latitude": "62.927319",
    "longitude": "40.574897",
    "location": {
        "id": 6,
        "url": "https://ll.thespacedevs.com/2.2.0/location/6/?format=api",
        "name": "Plesetsk Cosmodrome, Russian Federation",
        "country_code": "RUS",
        "description": "",
        "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_6_20200803142434.jpg",
        "timezone_name": "Europe/Moscow",
        "total_launch_count": 1667,
        "total_landing_count": 0
    },
    "country_code": "RUS",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_42_20200803143543.jpg",
    "total_launch_count": 6,
    "orbital_launch_attempt_count": 6
}