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
Some examples of governments or other organizations using CKAN, particularly with spatial data | |
Official CKAN List of Sites | |
http://ckan.org/instances/ | |
http://data.gov.uk/dataset/land-cover-map-1990-1km-percentage-subclass-web-map-service-wms | |
Non-spatial dataset demo with map to show spatial extent | |
http://demo.ckan.org/dataset/afghanistan-election-data |
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
import fiona | |
from shapely.geometry import shape | |
from rtree import index | |
def pointInPolyIntersect(pointPath, polyPath, pointIdCol, polyIdCol): | |
""" | |
This function runs intersect operations on a pair of point and polygon data sets. No | |
geometries are returned, just a pair of IDs for each intersection. The ID columns are | |
specified in the args. |
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
import fiona, time | |
from shapely.geometry import shape | |
from shapely import speedups | |
from rtree import index | |
searchTime = time.time() | |
stationPath = "C:/stations.shp" | |
countyPath = "C:/counties.shp" |
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
import fiona, time | |
from shapely.geometry import shape | |
from shapely import speedups | |
from rtree import index | |
searchTime = time.time() | |
stationPath = "C:/stations.shp" | |
countyPath = "C:/counties.shp" |
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
import fiona, time | |
from shapely.geometry import shape | |
from shapely import speedups | |
from rtree import index | |
searchTime = time.time() | |
stationPath = "C:/stations.shp" | |
countyPath = "C:/counties.shp" |
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
import fiona, time | |
from shapely.geometry import shape | |
from shapely.geometry import Point | |
from shapely.prepared import prep | |
from shapely import speedups | |
import sys | |
searchTime = time.time() | |
stationPath = "C:/stations.shp" |
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
import fiona, time | |
from shapely.geometry import shape | |
from shapely.geometry import Point | |
searchTime = time.time() | |
stationPath = "C:/stations.shp" | |
countyPath = "C:/counties.shp" | |
stationCollect = fiona.open(stationPath,'r') |
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
Two people in the top 11 active users on GitHub | |
(https://gist.github.com/2657075) | |
#5 Dane Springmeyer | |
#11 Tom MacWright | |
Repositories | |
https://github.com/OSGeo |
NewerOlder