API endpoint that allows Location instances to be viewed.

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

FILTERS:
Parameters - 'name', 'country_code', 'id'
Example - /2.0.0/location/?country_code=USA

GET /2.0.0/location/24/?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 24,
    "name": "Uchinoura Space Center, Japan",
    "country_code": "JPN",
    "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/location_24_20200803142411.jpg",
    "total_launch_count": 43,
    "total_landing_count": 0,
    "pads": [
        {
            "id": 47,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/47/?format=api",
            "agency_id": 37,
            "name": "Mu Center",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Uchinoura_Space_Center",
            "map_url": "https://www.google.com/maps?q=31.2509794,131.0821319",
            "latitude": 31.2509794,
            "longitude": 131.0821319,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_47_20200803143524.jpg",
            "total_launch_count": 36
        },
        {
            "id": 43,
            "url": "https://ll.thespacedevs.com/2.0.0/pad/43/?format=api",
            "agency_id": null,
            "name": "KS Center",
            "info_url": null,
            "wiki_url": "https://en.wikipedia.org/wiki/Uchinoura_Space_Center",
            "map_url": "https://www.google.com/maps?q=31.2519752,131.0791609",
            "latitude": 31.2519752,
            "longitude": 131.0791609,
            "map_image": "https://spacelaunchnow-prod-east.nyc3.digitaloceanspaces.com/media/launch_images/pad_43_20200803143309.jpg",
            "total_launch_count": 7
        }
    ]
}