Skip to content

Commit f514386

Browse files
Reorg
1 parent f40245a commit f514386

File tree

4 files changed

+40
-42
lines changed

4 files changed

+40
-42
lines changed

MANIFEST.in

-2
This file was deleted.

README

-1
This file was deleted.

README

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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

README.rst

-38
This file was deleted.

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
README

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read(*rnames):
1010
author="ingenieroariel",
1111
author_email="[email protected]",
1212
description="Sample data for GIS packages",
13-
long_description=(read('README.rst')),
13+
long_description=(read('README')),
1414
# Full list of classifiers can be found at:
1515
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
1616
classifiers=[

0 commit comments

Comments
 (0)