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 or a given region(country, state, province). 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 retrieving), 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.CitiesRetrieverByRect("Sources/dict_2.json")
cities = cr.retrieve_cities(lon_start=-124.71, lon_end=-77.21, lat_start=25.24, lat_end=44.75, num=500) # num is optional, default: 999999
print(cities)
print(len(cities))
cr = cities_retriever.CitiesRetrieverByRegionName("Sources/dict_region2cities.json")
cities = cr.retrieve_cities(country="United States", region="Washington", num=500) # region and num are optional
print(cities)
print(len(cities))
Note
the bigger the dict file is, the longer the loading time is.
4million cities --- 12s
- dict_all_cities_region2cities.json
- dict_all_cities_rect2cities.json
8000 cities --- < 1s
- dict_cities_8000_region2cities.json
- dict_cities_8000_rect2cities.json
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Cities-0.9.tar.gz
(5.8 kB
view hashes)