This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pipelinedemo.py | |
# Data processing pipeline demo | |
# Uses GeoJSON like geometries for demonstration only | |
from fiona import workspace | |
from shapely.geometry import box | |
from shapely import wkb | |
from json import dumps | |
import urllib2 | |
import logging |