A complete package to work with polygons and geohashes. Optimisation of Geohash levels to cover and area with % error controlled by user. Also allows to convert geohases to polygons.
Project description
polygeohasher
polygeohasher is a python package to implement polygon to geohash and vice versa with optimisation of geohash levels as per the user requirement, with error rate being controlled by the user.
Installation
Use the package manager pip to install polygeohasher.
pip install polygeohasher
#install all dependencies
pip3 install -r requirements.txt
Usage
from polygeohasher import polygeohasher
import geopandas as gpd
gdf = gpd.read_file("your geospatial file format") # read your geometry file here
primary_df = polygeohasher.create_geohash_list(gdf, geohash_level,inner=False) # returns a dataframe with list of geohashes for each geometry
secondary_df = polygeohasher.geohash_optimizer(primary_df, largest_gh_size, smallest_gh_size, gh_input_level) # returns optimized list of geohash
polygeohasher.optimization_summary(primary_df, secondary_df) #creates a summary of first and second output
'''
--------------------------------------------------
OPTIMIZATION SUMMARY
--------------------------------------------------
Total Counts of Initial Geohashes : 2597
Total Counts of Final Geohashes : 837
Percent of optimization : 67.77 %
--------------------------------------------------
'''
geo_df = polygeohasher.geohashes_to_geometry(secondary_df,"geohash_column_name") # return geometry for a DataFrame with a column - `opitimized_geohash_list` (output from above)
geo_df.to_file("your write path.format",driver = "GeoJSON") #write file in your favorite spatial file format
Some visualisations
Study are consist of division of City of Bengaluru in India.
Primary Output of geohashes without any optimisation.
Final Output of geohashes with optimization of number of geohashes at different levels to cover an area.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for polygeohasher-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73c6c95bf636c1c26583fd54abd3f64836ae6eabcc3493700a5d9611dc6d2830 |
|
MD5 | 08d17b06b4389afa0dbe17a59f8df40d |
|
BLAKE2b-256 | 708f5dcd6855e1943be98ad00288949f329c791c690b8904e748acc548eb0482 |