cloasdata / geoiter

A simple tool to iterate center coordinates within given boundaries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

geoiter

iterates the planet.

A simple tool to iterate coordinates within given boundaries such as country boundary. The usage is mostly for querying/searching by location at for example ebay.com or zillow.com

Let's say Germany has in sum 5000 houses to sell. Then most platforms will only allow you to visit or request the first 200 houses. Now to get the others, you need to dissect the big boundary area into smaller ones. And this is where geoiter provides you with coordinates.

geoiter can be used for web scraping to utilize geo/location queries:

In many cases the web page restrict the result items to a fixed number. With geoiter you can now dissect this one query to a many location queries to relax the result density under the restriction limit.

geoiter has only one additional dependency called haversine.

install

pip install geoiter

usage

import pickle

from geoiter.util.ressource_example import germany
from geoiter import GeoIter

# get you boundary for example
with open(germany, "rb") as file:
    germany = pickle.load(file)

# prepare
gi = GeoIter(
    boundary=germany,
    radius=100,
    comp_rate=20
    )

if __name__ == "__main__":
    # plot them as example
    for coordinate in gi:
        print(coordinate)

speed

one may consider that geo data have megabytes of coordinates. Which may make the iteration very slow, because it needs to look up coordinates in the boundary often. To accelerate the geoiter provides a very simple compressor and uses bisect instead of list iteration. However, it still can be slow.

extensions

There two extensions which give additional help

pip install geoiter["gpx]

provides you with an gpx exporter.

pip install geoiter["plot"]

provides a plotting function to visualize the grid.

data

get boundaries from osm or others sources like

todo

  • SRP for compressor
  • Make own haversine calculation for fixed directions.

Homepage

About

A simple tool to iterate center coordinates within given boundaries

License:MIT License


Languages

Language:Python 100.0%