File tree 4 files changed +40
-42
lines changed
4 files changed +40
-42
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ =======================================
2
+ gis-data - Sample data for GIS packages
3
+ =======================================
4
+
5
+ Sometimes you need sample raster and vector data for your python applications.
6
+
7
+ Sometimes you need bad data for your corner test cases. (No projections, NaN values).
8
+
9
+ This library provides both.
10
+
11
+ Installation
12
+ ============
13
+
14
+ The latest release can be installed using::
15
+
16
+ pip install gisdata
17
+
18
+ Usage
19
+ =====
20
+
21
+ Get the absolute path to the the sample data from python::
22
+
23
+ >>> from gisdata import DATA_DIR
24
+ >>> print DATA_DIR
25
+ '/usr/lib/python2.6/site-packages/gisdata/data'
26
+ >>> from gisdata import BAD_DATA
27
+ >>> print BAD_DATA
28
+ '/usr/lib/python2.6/site-packages/gisdata/data/bad'
29
+ >>> from gisdata import GOOD_DATA
30
+ >>> print GOOD_DATA
31
+ '/usr/lib/python2.6/site-packages/gisdata/data/good'
32
+
33
+ Known Issues
34
+ ============
35
+
36
+ * Vector data does not have sld files
37
+ * No xml files with metadata
38
+ * No .keywords fils for machine tags
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ README
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def read(*rnames):
10
10
author = "ingenieroariel" ,
11
11
12
12
description = "Sample data for GIS packages" ,
13
- long_description = (read ('README.rst ' )),
13
+ long_description = (read ('README' )),
14
14
# Full list of classifiers can be found at:
15
15
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
16
16
classifiers = [
You can’t perform that action at this time.
0 commit comments