Library for performing queries and transformations on GeoJSON data (with emphasis on support for abstract graph representations).
Package Installation and Usage
The package is available on PyPI:
python -m pip install geoql
The library can be imported in the usual ways:
import geoql from geoql import geoql
Examples
An example of usage is provided below:
import geojson
from geoql import geoql
import geoleaflet
import requests
url = 'https://raw.githubusercontent.com/Data-Mechanics/geoql/master/examples/'
# Boston ZIP Codes regions.
z = geoql.loads(requests.get(url + 'example_zips.geojson').text, encoding="latin-1")
# Extract of street data.
g = geoql.loads(requests.get(url + 'example_extract.geojson').text, encoding="latin-1")
g = g.properties_null_remove()\
.tags_parse_str_to_dict()\
.keep_by_property({"highway": {"$in": ["residential", "secondary", "tertiary"]}})
g = g.keep_within_radius((42.3551, -71.0656), 0.75, 'miles') # 0.75 miles from Boston Common.
g = g.keep_that_intersect(z) # Only those entries found in a Boston ZIP Code regions.
g = g.node_edge_graph() # Converted into a graph with nodes and edges.
g.dump(open('example_extract.geojson', 'w'))
open('leaflet.html', 'w').write(geoleaflet.html(g)) # Create visualization.
An alternative example of usage is provided below (the below usage is deprecated but will remain supported):
import geojson
import geoql
import geoleaflet
import requests
url = 'https://raw.githubusercontent.com/Data-Mechanics/geoql/master/examples/'
# Boston ZIP Codes regions.
z = geojson.loads(requests.get(url + 'example_zips.geojson').text, encoding="latin-1")
# Extract of street data.
g = geojson.loads(requests.get(url + 'example_extract.geojson').text, encoding="latin-1")
g = geoql.features_properties_null_remove(g)
g = geoql.features_tags_parse_str_to_dict(g)
g = geoql.features_keep_by_property(g, {"highway": {"$in": ["residential", "secondary", "tertiary"]}})
g = geoql.features_keep_within_radius(g, (42.3551, -71.0656), 0.75, 'miles') # Within 0.75 of Boston Common.
g = geoql.features_keep_intersecting_features(g, z) # Only those entries found in a Boston ZIP Code regions.
g = geoql.features_node_edge_graph(g) # Converted into a graph with nodes and edges.
open('example_extract.geojson', 'w').write(geojson.dumps(g))
open('leaflet.html', 'w').write(geoleaflet.html(g)) # Create visualization.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
geoql-0.0.8.0.tar.gz
(4.2 kB
view details)
File details
Details for the file geoql-0.0.8.0.tar.gz.
File metadata
- Download URL: geoql-0.0.8.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
359dc39ce8237011dd718e2b19af0d8681a723d969a468705d56fcbb2b7d2230
|
|
| MD5 |
ed4365547dc7ad3ba1b64dcaae1b9442
|
|
| BLAKE2b-256 |
cc25e7852ec5d9cf6e098e34ee06b37957a57bea51e11be43b535b1499031453
|