├── .gitattributes ├── .gitignore ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST ├── MANIFEST.in ├── README.md ├── README.txt ├── createNewFile.py ├── data ├── cities.geojson ├── line.cpg ├── line.dbf ├── line.prj ├── line.sbn ├── line.sbx ├── line.shp ├── line.shx ├── point.cpg ├── point.dbf ├── point.prj ├── point.shp ├── point.shx ├── point2.dbf ├── point2.prj ├── point2.qpj ├── point2.shp ├── point2.shx ├── polygon.cpg ├── polygon.dbf ├── polygon.prj ├── polygon.sbn ├── polygon.sbx ├── polygon.shp ├── polygon.shx ├── polygon2.dbf ├── polygon2.prj ├── polygon2.shp └── polygon2.shx ├── docs ├── Makefile ├── Reference Guide.md ├── conf.py ├── index.md └── make.bat ├── morps.py ├── output ├── line_centroid.dbf ├── line_centroid.prj ├── line_centroid.shp ├── line_centroid.shx ├── line_simp.dbf ├── line_simp.prj ├── line_simp.shp ├── line_simp.shx ├── point2.dbf ├── point2.prj ├── point2.shp ├── point2.shx ├── point3.dbf ├── point3.prj ├── point3.shp ├── point3.shx ├── polygon3.dbf ├── polygon3.prj ├── polygon3.shp ├── polygon3.shx ├── polygon_centroid.dbf ├── polygon_centroid.prj ├── polygon_centroid.shp └── polygon_centroid.shx ├── setup.py └── standalone scripts ├── append.py ├── buffer.py ├── centroid.py ├── contains.py ├── difference.py ├── disjoint.py ├── distance.py ├── equals.py ├── getenvelope.py ├── getfields.py ├── intersect.py ├── layerExtent.py ├── simplify.py ├── symmetricDifference.py ├── uniqueValues.py └── within.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- 1 | v0.1.0, July 25, 2015 -- Initial Release -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU General Public License v3.0 -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/README.txt -------------------------------------------------------------------------------- /createNewFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/createNewFile.py -------------------------------------------------------------------------------- /data/cities.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/cities.geojson -------------------------------------------------------------------------------- /data/line.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/line.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/line.dbf -------------------------------------------------------------------------------- /data/line.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/line.prj -------------------------------------------------------------------------------- /data/line.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/line.sbn -------------------------------------------------------------------------------- /data/line.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/line.sbx -------------------------------------------------------------------------------- /data/line.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/line.shp -------------------------------------------------------------------------------- /data/line.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/line.shx -------------------------------------------------------------------------------- /data/point.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/point.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point.dbf -------------------------------------------------------------------------------- /data/point.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point.prj -------------------------------------------------------------------------------- /data/point.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point.shp -------------------------------------------------------------------------------- /data/point.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point.shx -------------------------------------------------------------------------------- /data/point2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point2.dbf -------------------------------------------------------------------------------- /data/point2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point2.prj -------------------------------------------------------------------------------- /data/point2.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point2.qpj -------------------------------------------------------------------------------- /data/point2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point2.shp -------------------------------------------------------------------------------- /data/point2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/point2.shx -------------------------------------------------------------------------------- /data/polygon.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/polygon.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon.dbf -------------------------------------------------------------------------------- /data/polygon.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon.prj -------------------------------------------------------------------------------- /data/polygon.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon.sbn -------------------------------------------------------------------------------- /data/polygon.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon.sbx -------------------------------------------------------------------------------- /data/polygon.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon.shp -------------------------------------------------------------------------------- /data/polygon.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon.shx -------------------------------------------------------------------------------- /data/polygon2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon2.dbf -------------------------------------------------------------------------------- /data/polygon2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon2.prj -------------------------------------------------------------------------------- /data/polygon2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon2.shp -------------------------------------------------------------------------------- /data/polygon2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/data/polygon2.shx -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Reference Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/docs/Reference Guide.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/docs/make.bat -------------------------------------------------------------------------------- /morps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/morps.py -------------------------------------------------------------------------------- /output/line_centroid.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/line_centroid.dbf -------------------------------------------------------------------------------- /output/line_centroid.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/line_centroid.prj -------------------------------------------------------------------------------- /output/line_centroid.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/line_centroid.shp -------------------------------------------------------------------------------- /output/line_centroid.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/line_centroid.shx -------------------------------------------------------------------------------- /output/line_simp.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/line_simp.dbf -------------------------------------------------------------------------------- /output/line_simp.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/line_simp.prj -------------------------------------------------------------------------------- /output/line_simp.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/line_simp.shp -------------------------------------------------------------------------------- /output/line_simp.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/line_simp.shx -------------------------------------------------------------------------------- /output/point2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/point2.dbf -------------------------------------------------------------------------------- /output/point2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/point2.prj -------------------------------------------------------------------------------- /output/point2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/point2.shp -------------------------------------------------------------------------------- /output/point2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/point2.shx -------------------------------------------------------------------------------- /output/point3.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/point3.dbf -------------------------------------------------------------------------------- /output/point3.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/point3.prj -------------------------------------------------------------------------------- /output/point3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/point3.shp -------------------------------------------------------------------------------- /output/point3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/point3.shx -------------------------------------------------------------------------------- /output/polygon3.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/polygon3.dbf -------------------------------------------------------------------------------- /output/polygon3.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/polygon3.prj -------------------------------------------------------------------------------- /output/polygon3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/polygon3.shp -------------------------------------------------------------------------------- /output/polygon3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/polygon3.shx -------------------------------------------------------------------------------- /output/polygon_centroid.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/polygon_centroid.dbf -------------------------------------------------------------------------------- /output/polygon_centroid.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/polygon_centroid.prj -------------------------------------------------------------------------------- /output/polygon_centroid.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/polygon_centroid.shp -------------------------------------------------------------------------------- /output/polygon_centroid.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/output/polygon_centroid.shx -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/setup.py -------------------------------------------------------------------------------- /standalone scripts/append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/append.py -------------------------------------------------------------------------------- /standalone scripts/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/buffer.py -------------------------------------------------------------------------------- /standalone scripts/centroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/centroid.py -------------------------------------------------------------------------------- /standalone scripts/contains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/contains.py -------------------------------------------------------------------------------- /standalone scripts/difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/difference.py -------------------------------------------------------------------------------- /standalone scripts/disjoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/disjoint.py -------------------------------------------------------------------------------- /standalone scripts/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/distance.py -------------------------------------------------------------------------------- /standalone scripts/equals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/equals.py -------------------------------------------------------------------------------- /standalone scripts/getenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/getenvelope.py -------------------------------------------------------------------------------- /standalone scripts/getfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/getfields.py -------------------------------------------------------------------------------- /standalone scripts/intersect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/intersect.py -------------------------------------------------------------------------------- /standalone scripts/layerExtent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/layerExtent.py -------------------------------------------------------------------------------- /standalone scripts/simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/simplify.py -------------------------------------------------------------------------------- /standalone scripts/symmetricDifference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/symmetricDifference.py -------------------------------------------------------------------------------- /standalone scripts/uniqueValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/uniqueValues.py -------------------------------------------------------------------------------- /standalone scripts/within.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanbot5000/Morps/HEAD/standalone scripts/within.py --------------------------------------------------------------------------------