├── .gitattributes ├── .gitignore ├── LICENSE ├── ShapefileSharp Tests ├── BoundingBoxTests.cs ├── Data │ ├── lnd-stations.cpg │ ├── lnd-stations.dbf │ ├── lnd-stations.prj │ ├── lnd-stations.qpj │ ├── lnd-stations.shp │ ├── lnd-stations.shx │ ├── multipatch.dbf │ ├── multipatch.shp │ ├── multipatch.shx │ ├── multipoint.dbf │ ├── multipoint.prj │ ├── multipoint.shp │ ├── multipoint.shx │ ├── multipointm.dbf │ ├── multipointm.shp │ ├── multipointm.shx │ ├── multipointz.dbf │ ├── multipointz.shp │ ├── multipointz.shx │ ├── ne_10m_admin_0_countries.README.html │ ├── ne_10m_admin_0_countries.VERSION.txt │ ├── ne_10m_admin_0_countries.cpg │ ├── ne_10m_admin_0_countries.dbf │ ├── ne_10m_admin_0_countries.prj │ ├── ne_10m_admin_0_countries.shp │ ├── ne_10m_admin_0_countries.shx │ ├── ne_10m_populated_places_simple.README.html │ ├── ne_10m_populated_places_simple.VERSION.txt │ ├── ne_10m_populated_places_simple.dbf │ ├── ne_10m_populated_places_simple.prj │ ├── ne_10m_populated_places_simple.shp │ ├── ne_10m_populated_places_simple.shx │ ├── pointm.dbf │ ├── pointm.shp │ ├── pointm.shx │ ├── pointz.dbf │ ├── pointz.shp │ ├── pointz.shx │ ├── polygonm.dbf │ ├── polygonm.shp │ ├── polygonm.shx │ ├── polygonz.dbf │ ├── polygonz.shp │ ├── polygonz.shx │ ├── polylinem.dbf │ ├── polylinem.shp │ ├── polylinem.shx │ ├── polylinez.dbf │ ├── polylinez.shp │ ├── polylinez.shx │ ├── railways.cpg │ ├── railways.dbf │ ├── railways.prj │ ├── railways.shp │ └── railways.shx ├── Properties │ └── AssemblyInfo.cs ├── ReadWriteTests.cs ├── ShapefileSharp Tests.csproj ├── Shapefiles │ ├── MultiPatchShpFile.cs │ ├── MultiPointMShpFile.cs │ ├── MultiPointShpFile.cs │ ├── MultiPointZShpFile.cs │ ├── PointMShpFile.cs │ ├── PointShpFile.cs │ ├── PointZShpFile.cs │ ├── PolyLineMShpFile.cs │ ├── PolyLineZShpFile.cs │ ├── PolygonMShpFile.cs │ ├── PolygonShpFile.cs │ ├── PolygonZShpFile.cs │ └── PolylineShpFile.cs └── WordCountTests.cs ├── ShapefileSharp.sln └── ShapefileSharp ├── BoundingBox.cs ├── Extensions.cs ├── FileReaderBase.cs ├── IBoundingBox.cs ├── IMultiPartGeometry.cs ├── IMultiPatchShape.cs ├── IMultiPointGeometry.cs ├── IMultiPointShape.cs ├── IPatch.cs ├── IPoint.cs ├── IPointM.cs ├── IPointShape.cs ├── IPointZ.cs ├── IPolyLineShape.cs ├── IPolygonShape.cs ├── IShape.cs ├── IShapefile.cs ├── IShapefileHeader.cs ├── IShapefileRecord.cs ├── IShpFile.cs ├── IShpRecord.cs ├── IShpRecordHeader.cs ├── IShxFile.cs ├── IShxRecord.cs ├── MultiPartGeometry.cs ├── MultiPatchShape.cs ├── MultiPointGeometry.cs ├── MultiPointMShape.cs ├── MultiPointShape.cs ├── MultiPointZShape.cs ├── NullShape.cs ├── PartType.cs ├── PatchZ.cs ├── Point.cs ├── PointM.cs ├── PointMShape.cs ├── PointShape.cs ├── PointZ.cs ├── PointZShape.cs ├── PolyLineMShape.cs ├── PolyLineShape.cs ├── PolyLineZShape.cs ├── PolygonMShape.cs ├── PolygonShape.cs ├── PolygonZShape.cs ├── Properties └── AssemblyInfo.cs ├── Shape.cs ├── ShapeMainFileFactory.cs ├── ShapeType.cs ├── ShapeTypeMap.cs ├── Shapefile.cs ├── ShapefileHeader.cs ├── ShapefileRecord.cs ├── ShapefileSharp.csproj ├── ShapefileWriter.cs ├── ShpFile.cs ├── ShpReader.cs ├── ShpRecord.cs ├── ShpRecordHeader.cs ├── ShxFile.cs ├── ShxReader.cs ├── ShxRecord.cs ├── Spec ├── BoundingBox2dField.cs ├── DoubleField.cs ├── Endianness.cs ├── Field.cs ├── FixedField.cs ├── IntField.cs ├── MultiPartGeometryField.cs ├── MultiPartGeometryMField.cs ├── MultiPartGeometryZField.cs ├── MultiPatchShapeField.cs ├── MultiPointMShapeField.cs ├── MultiPointShapeField.cs ├── MultiPointZShapeField.cs ├── PartTypeField.cs ├── PointField.cs ├── PointMField.cs ├── PointMShapeField.cs ├── PointShapeField.cs ├── PointZField.cs ├── PointZShapeField.cs ├── PolyLineMShapeField.cs ├── PolyLineShapeField.cs ├── PolyLineZShapeField.cs ├── PolygonMShapeField.cs ├── PolygonShapeField.cs ├── PolygonZShapeField.cs ├── ShapeField.cs ├── ShapeTypeField.cs ├── ShapefileHeaderField.cs ├── ShpRecordField.cs ├── ShpRecordHeaderField.cs ├── ShxRecordField.cs └── WordCountField.cs └── WordCount.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /ShapefileSharp Tests/BoundingBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/BoundingBoxTests.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/lnd-stations.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/lnd-stations.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/lnd-stations.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/lnd-stations.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/lnd-stations.prj -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/lnd-stations.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/lnd-stations.qpj -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/lnd-stations.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/lnd-stations.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/lnd-stations.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/lnd-stations.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipatch.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipatch.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipatch.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipatch.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipatch.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipatch.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipoint.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipoint.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipoint.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipoint.prj -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipoint.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipoint.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipoint.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipoint.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipointm.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipointm.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipointm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipointm.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipointm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipointm.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipointz.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipointz.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipointz.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipointz.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/multipointz.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/multipointz.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_admin_0_countries.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_admin_0_countries.README.html -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_admin_0_countries.VERSION.txt: -------------------------------------------------------------------------------- 1 | 3.1.0 -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_admin_0_countries.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_admin_0_countries.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_admin_0_countries.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_admin_0_countries.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_admin_0_countries.prj -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_admin_0_countries.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_admin_0_countries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_admin_0_countries.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_populated_places_simple.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_populated_places_simple.README.html -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_populated_places_simple.VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.0.0 -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_populated_places_simple.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_populated_places_simple.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_populated_places_simple.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_populated_places_simple.prj -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_populated_places_simple.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_populated_places_simple.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/ne_10m_populated_places_simple.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/ne_10m_populated_places_simple.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/pointm.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/pointm.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/pointm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/pointm.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/pointm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/pointm.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/pointz.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/pointz.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/pointz.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/pointz.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/pointz.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/pointz.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polygonm.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polygonm.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polygonm.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polygonm.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polygonm.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polygonm.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polygonz.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polygonz.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polygonz.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polygonz.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polygonz.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polygonz.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polylinem.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polylinem.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polylinem.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polylinem.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polylinem.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polylinem.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polylinez.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polylinez.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polylinez.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polylinez.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/polylinez.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/polylinez.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/railways.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 2 | -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/railways.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/railways.dbf -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/railways.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/railways.prj -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/railways.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/railways.shp -------------------------------------------------------------------------------- /ShapefileSharp Tests/Data/railways.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Data/railways.shx -------------------------------------------------------------------------------- /ShapefileSharp Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/ReadWriteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/ReadWriteTests.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/ShapefileSharp Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/ShapefileSharp Tests.csproj -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/MultiPatchShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/MultiPatchShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/MultiPointMShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/MultiPointMShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/MultiPointShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/MultiPointShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/MultiPointZShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/MultiPointZShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PointMShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PointMShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PointShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PointShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PointZShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PointZShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PolyLineMShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PolyLineMShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PolyLineZShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PolyLineZShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PolygonMShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PolygonMShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PolygonShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PolygonShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PolygonZShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PolygonZShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/Shapefiles/PolylineShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/Shapefiles/PolylineShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp Tests/WordCountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp Tests/WordCountTests.cs -------------------------------------------------------------------------------- /ShapefileSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp.sln -------------------------------------------------------------------------------- /ShapefileSharp/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/BoundingBox.cs -------------------------------------------------------------------------------- /ShapefileSharp/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Extensions.cs -------------------------------------------------------------------------------- /ShapefileSharp/FileReaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/FileReaderBase.cs -------------------------------------------------------------------------------- /ShapefileSharp/IBoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IBoundingBox.cs -------------------------------------------------------------------------------- /ShapefileSharp/IMultiPartGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IMultiPartGeometry.cs -------------------------------------------------------------------------------- /ShapefileSharp/IMultiPatchShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IMultiPatchShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/IMultiPointGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IMultiPointGeometry.cs -------------------------------------------------------------------------------- /ShapefileSharp/IMultiPointShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IMultiPointShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/IPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IPatch.cs -------------------------------------------------------------------------------- /ShapefileSharp/IPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IPoint.cs -------------------------------------------------------------------------------- /ShapefileSharp/IPointM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IPointM.cs -------------------------------------------------------------------------------- /ShapefileSharp/IPointShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IPointShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/IPointZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IPointZ.cs -------------------------------------------------------------------------------- /ShapefileSharp/IPolyLineShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IPolyLineShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/IPolygonShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IPolygonShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShapefile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShapefile.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShapefileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShapefileHeader.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShapefileRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShapefileRecord.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShpRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShpRecord.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShpRecordHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShpRecordHeader.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShxFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShxFile.cs -------------------------------------------------------------------------------- /ShapefileSharp/IShxRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/IShxRecord.cs -------------------------------------------------------------------------------- /ShapefileSharp/MultiPartGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/MultiPartGeometry.cs -------------------------------------------------------------------------------- /ShapefileSharp/MultiPatchShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/MultiPatchShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/MultiPointGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/MultiPointGeometry.cs -------------------------------------------------------------------------------- /ShapefileSharp/MultiPointMShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/MultiPointMShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/MultiPointShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/MultiPointShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/MultiPointZShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/MultiPointZShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/NullShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/NullShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PartType.cs -------------------------------------------------------------------------------- /ShapefileSharp/PatchZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PatchZ.cs -------------------------------------------------------------------------------- /ShapefileSharp/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Point.cs -------------------------------------------------------------------------------- /ShapefileSharp/PointM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PointM.cs -------------------------------------------------------------------------------- /ShapefileSharp/PointMShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PointMShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PointShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PointShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PointZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PointZ.cs -------------------------------------------------------------------------------- /ShapefileSharp/PointZShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PointZShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PolyLineMShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PolyLineMShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PolyLineShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PolyLineShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PolyLineZShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PolyLineZShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PolygonMShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PolygonMShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PolygonShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PolygonShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/PolygonZShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/PolygonZShape.cs -------------------------------------------------------------------------------- /ShapefileSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShapefileSharp/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Shape.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShapeMainFileFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShapeMainFileFactory.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShapeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShapeType.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShapeTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShapeTypeMap.cs -------------------------------------------------------------------------------- /ShapefileSharp/Shapefile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Shapefile.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShapefileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShapefileHeader.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShapefileRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShapefileRecord.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShapefileSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShapefileSharp.csproj -------------------------------------------------------------------------------- /ShapefileSharp/ShapefileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShapefileWriter.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShpFile.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShpReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShpReader.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShpRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShpRecord.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShpRecordHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShpRecordHeader.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShxFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShxFile.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShxReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShxReader.cs -------------------------------------------------------------------------------- /ShapefileSharp/ShxRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/ShxRecord.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/BoundingBox2dField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/BoundingBox2dField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/DoubleField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/DoubleField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/Endianness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/Endianness.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/Field.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/FixedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/FixedField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/IntField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/IntField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/MultiPartGeometryField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/MultiPartGeometryField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/MultiPartGeometryMField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/MultiPartGeometryMField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/MultiPartGeometryZField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/MultiPartGeometryZField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/MultiPatchShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/MultiPatchShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/MultiPointMShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/MultiPointMShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/MultiPointShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/MultiPointShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/MultiPointZShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/MultiPointZShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PartTypeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PartTypeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PointField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PointField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PointMField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PointMField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PointMShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PointMShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PointShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PointShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PointZField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PointZField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PointZShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PointZShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PolyLineMShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PolyLineMShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PolyLineShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PolyLineShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PolyLineZShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PolyLineZShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PolygonMShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PolygonMShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PolygonShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PolygonShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/PolygonZShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/PolygonZShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/ShapeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/ShapeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/ShapeTypeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/ShapeTypeField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/ShapefileHeaderField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/ShapefileHeaderField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/ShpRecordField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/ShpRecordField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/ShpRecordHeaderField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/ShpRecordHeaderField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/ShxRecordField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/ShxRecordField.cs -------------------------------------------------------------------------------- /ShapefileSharp/Spec/WordCountField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/Spec/WordCountField.cs -------------------------------------------------------------------------------- /ShapefileSharp/WordCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattGerg/ShapefileSharp/HEAD/ShapefileSharp/WordCount.cs --------------------------------------------------------------------------------