Cities is a simple tool for searching cities located at a given longitude and latitude range.
Project description
Cities is a simple tool for searching cities located at a given longitude and latitude range. All the cities returned are sorted by the importance of a city and the population density.
Install
pip install Cities
Features
- fast(less than 0.01s for each searching), simple and convenient.
- cover all the cities around the world.
- the author is cute.
Required File
Download the city data and put it at any directory you want. Remember to set the path up when you initiate an instance.
Example
from Cities import cities_retriever
cr = cities_retriever.CitiesRetriever("Sources/dict_1.json")
cities = cr.retrieve_cities(-124.71, -77.21, 25.24, 44.75, 50) # starting longitude, ending longitude, starting latitude, ending latitude, the number of the cities
print(json.dumps(cities, indent=2))
Note
it might take you a little time(13s for loading the dict) when you first invoke the retrieve method. But the loading process only occurs when you initiate an instance. The retrieving process is still stay around 0.001s ~ 0.01s(it depends on how many cities you want). The mainly time-consuming part in retrieving is a sorting part. You might wanna load it beforehand instead of loading it when you wanna use it.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.