├── .gitignore ├── Bin ├── Icons │ ├── Earth.ico │ ├── EditingPolygonTool16.png │ ├── ElementLine16.png │ ├── NewDocument.png │ ├── Open16.png │ ├── PanTool16.png │ ├── Point16.png │ ├── Save16.png │ ├── Select.png │ ├── SelectionSelect.png │ ├── SelectionUnselect.png │ ├── check01.png │ ├── check02.png │ ├── internet.ico │ ├── layers.png │ ├── lightbulb.png │ ├── lightbulb_lit.png │ └── tradi.ico └── gpc.dll ├── Dependents └── GDAL19 │ ├── SQLite3.dll │ ├── gdal19.dll │ ├── gdal_csharp.dll │ ├── gdal_wrap.dll │ ├── gdalconst_csharp.dll │ ├── gdalconst_wrap.dll │ ├── geos_c.dll │ ├── hd426m.dll │ ├── hdf5dll.dll │ ├── hm426m.dll │ ├── libeay32.dll │ ├── libiconv-2.dll │ ├── libintl-8.dll │ ├── libpq.dll │ ├── ogr_csharp.dll │ ├── ogr_wrap.dll │ ├── osr_csharp.dll │ ├── osr_wrap.dll │ ├── proj.dll │ ├── ssleay32.dll │ ├── szip.dll │ └── zlib1.dll ├── Doc ├── 依赖项和开发说明.txt └── 开发计划.txt ├── GpcWrapper ├── A.plg ├── GpcTest.cs ├── GpcTest.exe ├── GpcWrapper.cs ├── GpcWrapper.html ├── TestAppBinary │ ├── A.plg │ ├── GpcTest.exe │ └── gpc.dll ├── TestProjectVS2010 │ ├── App.xaml │ ├── App.xaml.cs │ ├── GPC-README.pdf │ ├── GpcTest.sln │ ├── GpcWrapper.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RGeos.GPCWapper.csproj │ ├── RGeos.GPCWapper.csproj.user │ ├── app.config │ └── gpc.dll ├── TestProjectVS8 │ ├── AssemblyInfo.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── GpcWrapper.cs │ ├── Program.cs │ ├── Test.csproj │ ├── Test.sln │ └── gpc.dll ├── compile.cmd ├── gpc.c ├── gpc.dll ├── gpc.h └── html │ ├── gpc_wrapper.html │ ├── gpcdll.html │ ├── gpctest.jpg │ ├── installdotnet.html │ ├── reference.html │ └── use_gpc_wrapper.html ├── LICENSE ├── ProjNet ├── BuildProcessTemplates │ ├── DefaultTemplate.11.1.xaml │ ├── DefaultTemplate.xaml │ ├── LabDefaultTemplate.11.xaml │ └── UpgradeTemplate.xaml ├── DemoApp_Silverlight │ ├── App.xaml │ ├── App.xaml.cs │ ├── Page.xaml │ ├── Page.xaml.cs │ ├── ProjNet.Silverlight.TestApplication.csproj │ ├── ProjNet.Silverlight.TestApplication.csproj.user │ ├── ProjNet.Silverlight.TestApplication.csproj.vspscc │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ └── epsg4326.jpg ├── DemoWebApp │ ├── App_Code │ │ └── SRIDReader.cs │ ├── App_Data │ │ └── SRID.csv │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Silverlight.js │ ├── SilverlightTestPage.html │ └── Web.Config ├── ExternalReferences │ ├── nunit.framework.dll │ └── nunit.framework.xml ├── ProjNET.sln ├── ProjNET.suo ├── ProjNET.vssscc ├── ProjNet.Silverlight │ ├── Extensions.cs │ ├── ProjNet.Silverlight.csproj │ ├── ProjNet.Silverlight.csproj.user │ ├── ProjNet.Silverlight.csproj.vspscc │ └── Properties │ │ └── AssemblyInfo.cs ├── ProjNet.vsmdi ├── ProjNetWinFormTest │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── ProjNetWinFormTest.csproj │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── SharpMap.CoordinateSystems.Tests │ ├── CoordinateTransformTests.cs │ ├── ProjNET.Tests.csproj │ ├── ProjNET.Tests.csproj.user │ ├── ProjNET.Tests.csproj.vspscc │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SRID.csv │ ├── SRIDReader.cs │ └── WKT │ │ └── WKTCoordSysParserTests.cs ├── SharpMap.CoordinateSystems │ ├── ClassDiagram1.cd │ ├── CoordinateSystems │ │ ├── AngularUnit.cs │ │ ├── AxisInfo.cs │ │ ├── AxisOrientationEnum.cs │ │ ├── CoordinateSystem.cs │ │ ├── CoordinateSystemFactory.cs │ │ ├── Datum.cs │ │ ├── DatumType.cs │ │ ├── Ellipsoid.cs │ │ ├── GeocentricCoordinateSystem.cs │ │ ├── GeographicCoordinateSystem.cs │ │ ├── GeographicTransform.cs │ │ ├── HorizontalCoordinateSystem.cs │ │ ├── HorizontalDatum.cs │ │ ├── IAngularUnit.cs │ │ ├── ICompoundCoordinateSystem.cs │ │ ├── ICoordinateSystem.cs │ │ ├── ICoordinateSystemFactory.cs │ │ ├── IDatum.cs │ │ ├── IEllipsoid.cs │ │ ├── IFittedCoordinateSystem.cs │ │ ├── IGeocentricCoordinateSystem.cs │ │ ├── IGeodeticSpatialReference.cs │ │ ├── IGeographicCoordinateSystem.cs │ │ ├── IGeographicTransform.cs │ │ ├── IHorizontalCoordinateSystem.cs │ │ ├── IHorizontalDatum.cs │ │ ├── IInfo.cs │ │ ├── ILinearUnit.cs │ │ ├── ILocalCoordinateSystem.cs │ │ ├── ILocalDatum.cs │ │ ├── IParameterInfo.cs │ │ ├── IPrimeMeridian.cs │ │ ├── IProjectedCoordinateSystem.cs │ │ ├── IProjection.cs │ │ ├── ISpatialReferenceFactory.cs │ │ ├── IUnit.cs │ │ ├── IVerticalCoordinateSystem.cs │ │ ├── IVerticalDatum.cs │ │ ├── Info.cs │ │ ├── LinearUnit.cs │ │ ├── Parameter.cs │ │ ├── PrimeMeridian.cs │ │ ├── ProjectedCoordinateSystem.cs │ │ ├── Projection.cs │ │ ├── ProjectionParameter.cs │ │ ├── Projections │ │ │ ├── AlbersProjection.cs │ │ │ ├── GaussKrugerProjection.cs │ │ │ ├── KrovakProjection.cs │ │ │ ├── LambertConformalConic.cs │ │ │ ├── MapProjection.cs │ │ │ ├── Mercator.cs │ │ │ └── TransverseMercator.cs │ │ ├── SREnvironment │ │ │ ├── RgSRDatumType.cs │ │ │ ├── RgSRGeoCSType.cs │ │ │ ├── RgSRProjectionType.cs │ │ │ ├── RgSRSpheroid2Type.cs │ │ │ ├── RgSRSpheroidType.cs │ │ │ └── SpatialReferenceEnvironmentClass.cs │ │ ├── Transformations │ │ │ ├── ConcatenatedTransform.cs │ │ │ ├── CoordinateTransformation.cs │ │ │ ├── CoordinateTransformationAuthorityFactory.cs │ │ │ ├── CoordinateTransformationFactory.cs │ │ │ ├── DatumTransform.cs │ │ │ ├── DomainFlags.cs │ │ │ ├── GeocentricTransform.cs │ │ │ ├── GeographicTransform.cs │ │ │ ├── ICoordinateSystemAuthorityFactory.cs │ │ │ ├── ICoordinateTransformation.cs │ │ │ ├── ICoordinateTransformationAuthorityFactory.cs │ │ │ ├── ICoordinateTransformationFactory.cs │ │ │ ├── IMathTransform.cs │ │ │ ├── IMathTransformFactory.cs │ │ │ ├── MathTransform.cs │ │ │ └── TransformType.cs │ │ ├── Unit.cs │ │ └── WGS84ConversionInfo.cs │ ├── IO │ │ └── CoordinateSystems │ │ │ ├── CoordinateSystemWktReader.cs │ │ │ ├── StreamTokenizer.cs │ │ │ ├── TokenType.cs │ │ │ └── WKTStreamTokenizer.cs │ ├── ProjNET.csproj │ ├── ProjNET.csproj.user │ ├── ProjNET.csproj.vspscc │ ├── Properties │ │ └── AssemblyInfo.cs │ └── scskey.snk ├── UnitTests │ ├── CoordinateTransformTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SRID.csv │ ├── UnitTests.csproj │ ├── UnitTests.csproj.vspscc │ └── WKT │ │ └── WKTCoordSysParserTests.cs └── localtestrun.testrunconfig ├── README.md ├── RGeos-Logo.png ├── RGeos.Carto ├── AffineTransformation2D.cs ├── ColorBlend.cs ├── FetureLayer.cs ├── GeometryTransform.cs ├── ILayer.cs ├── IMap.cs ├── ISelection.cs ├── ISnapPoint.cs ├── Layer.cs ├── Map.cs ├── MapSelection.cs ├── Properties │ └── AssemblyInfo.cs ├── RGeos.Carto.csproj ├── RasterLayer.cs ├── RgEnumShapeType.cs └── SnapPointBase.cs ├── RGeos.Controls ├── IGraphicContainer.cs ├── IMapControl2.cs ├── Properties │ └── AssemblyInfo.cs ├── RGeos.Controls.csproj ├── RgMapControl.Designer.cs ├── RgMapControl.cs ├── RgMapControl.resx ├── RgTocControl.Designer.cs ├── RgTocControl.cs └── RgTocControl.resx ├── RGeos.Core ├── HookHelper.cs ├── ICommand.cs ├── IMapControl.cs ├── ITool.cs ├── ITransformation.cs ├── Properties │ └── AssemblyInfo.cs ├── RBaseCommand.cs ├── RGeos.Core.csproj └── RgeosUnits.cs ├── RGeos.Desktop ├── ControlCommands │ ├── DrawPointTool.cs │ ├── DrawPolygonTool.cs │ ├── DrawPolylineTool.cs │ ├── IPickUpPoint.cs │ ├── PanTool.cs │ ├── PickUpPointTool.cs │ ├── SelectTool.cs │ └── UnSelectCommand.cs ├── Earth.ico ├── FrmAbout.Designer.cs ├── FrmAbout.cs ├── FrmAbout.resx ├── FrmGridLineOrPoint.Designer.cs ├── FrmGridLineOrPoint.cs ├── FrmGridLineOrPoint.resx ├── FrmImportXY.Designer.cs ├── FrmImportXY.cs ├── FrmImportXY.resx ├── FrmLayers.Designer.cs ├── FrmLayers.cs ├── IRgFileFormat.cs ├── MainFrm.Designer.cs ├── MainFrm.cs ├── MainFrm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RGeos.Desktop.csproj ├── RGeos.Desktop.csproj.user ├── SelectionRectangle.cs ├── ToolBox │ ├── Angle.cs │ ├── ExcelPointPair.cs │ ├── FrmGaussProjection.cs │ ├── FrmGaussProjection.designer.cs │ ├── FrmGaussProjection.resx │ ├── FrmSevenParams.Designer.cs │ ├── FrmSevenParams.cs │ ├── FrmSevenParams.resx │ ├── IPointPairDAL.cs │ ├── Radian.cs │ ├── RgPointPair.cs │ ├── SurveryMath.cs │ └── ZMath.cs ├── app.config ├── frmLayers.resx ├── frmNewFeatureClass.Designer.cs ├── frmNewFeatureClass.cs ├── frmNewFeatureClass.resx └── tradi.ico ├── RGeos.Display ├── IDisplayFeedback.cs ├── IDisplayTransformation.cs ├── IScreenDisplay.cs ├── ISymbol.cs ├── Properties │ └── AssemblyInfo.cs ├── RGeos.Display.csproj └── SimpleMarkerSymbol.cs ├── RGeos.Geometries ├── Basic │ ├── MathEx.cs │ ├── Matrix.cs │ └── RgMath.cs ├── BoundingBox.cs ├── Converters │ ├── WellKnownBinary │ │ ├── GeometryFromWKB.cs │ │ ├── GeometryToWKB.cs │ │ ├── WKBByteOrder.cs │ │ └── WKBGeometryType.cs │ └── WellKnownText │ │ ├── GeometryFromWKT.cs │ │ ├── GeometryToWKT.cs │ │ ├── SpatialReference.cs │ │ ├── StreamTokenizer.cs │ │ ├── TokenType.cs │ │ └── WKTStreamTokenizer.cs ├── Curve.cs ├── Geometry.cd ├── Geometry.cs ├── GeometryCollection.cs ├── GeometryType.cs ├── IGeometry.cs ├── IGeometryCollection.cs ├── ISpatialReference.cs ├── LineString.cs ├── LinearRing.cs ├── MultiCurve.cs ├── MultiLineString.cs ├── MultiPoint.cs ├── MultiPolygon.cs ├── MultiSurface.cs ├── Point.cs ├── Point3D.cs ├── Polygon.cs ├── Properties │ └── AssemblyInfo.cs ├── RGeos.Geometries.csproj ├── RGeos.Geometries.csproj.user ├── RgLine.cs ├── RgPlane.cs ├── RgSegment.cs ├── Spatial │ ├── HitUtil.cs │ ├── RgAreaMeasure.cs │ ├── RgDistanceMeasure.cs │ ├── RgSpatialAnalysis.cs │ ├── RgTopologicOperator.cs │ └── RgTopologicRelationship.cs ├── SpatialRelations.cs ├── Surface.cs └── Vector3d.cs ├── RGeos.sln └── RGeos ├── Basic ├── MathEx.cs └── RMath.cs ├── Converters ├── WellKnownBinary │ ├── GeometryFromWKB.cs │ ├── GeometryToWKB.cs │ ├── WKBByteOrder.cs │ └── WKBGeometryType.cs └── WellKnownText │ ├── GeometryFromWKT.cs │ ├── GeometryToWKT.cs │ ├── SpatialReference.cs │ ├── StreamTokenizer.cs │ ├── TokenType.cs │ └── WKTStreamTokenizer.cs ├── CoordinateSystems └── Transformations │ └── GeometryTransform.cs ├── FrmPartialRefresh.Designer.cs ├── FrmPartialRefresh.cs ├── FrmPartialRefresh.resx ├── Geometries ├── BoundingBox.cs ├── Curve.cs ├── Geometry.cd ├── Geometry.cs ├── GeometryCollection.cs ├── GeometryType.cs ├── IGeometry.cs ├── IGeometryCollection.cs ├── ISpatialReference.cs ├── LineString.cs ├── LinearRing.cs ├── MultiCurve.cs ├── MultiLineString.cs ├── MultiPoint.cs ├── MultiPolygon.cs ├── MultiSurface.cs ├── Point.cs ├── Point3D.cs ├── Polygon.cs ├── SpatialRelations.cs └── Surface.cs ├── Geometry ├── RArc.cs ├── RCircle.cs ├── REnvelope.cs ├── RGeometry.cs ├── RLine.cs ├── RPlane.cs ├── RPoint.cs ├── RPointCollection.cs ├── RPolygon.cs ├── RPolyline.cs ├── RRay.cs ├── RRing.cs ├── RSegment.cs ├── RSphere.cs ├── RTriangle.cs └── Vector3d.cs ├── Measure ├── RAreaMeasure.cs └── RDistanceMeasure.cs ├── PluginEngine ├── HookHelper.cs ├── ICommand.cs ├── IDisplayFeedback.cs ├── IDisplayTransformation.cs ├── ILayer.cs ├── IMap.cs ├── IMapControl.cs ├── IScreenDisplay.cs ├── ISelection.cs ├── ISymbol.cs ├── ITool.cs ├── Layer.cs ├── Map.cs ├── RBaseCommand.cs ├── RgeosUnits.cs ├── Transform.cs ├── UcMapControl.Designer.cs ├── UcMapControl.cs └── UcMapControl.resx ├── Plugins ├── DrawLineTool.cs ├── DrawMultiPolygonTool.cs ├── DrawPointTool.cs └── DrawPolylineTool.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── RGeos.First.csproj ├── RGeos.First.sln ├── SpatialAnalysis └── RSpatialAnalysis.cs ├── Topology ├── TopologicOperate.cs └── TopologicRelationship.cs ├── Utilities └── Transform.cs └── app.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Bin/Icons/Earth.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/Earth.ico -------------------------------------------------------------------------------- /Bin/Icons/EditingPolygonTool16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/EditingPolygonTool16.png -------------------------------------------------------------------------------- /Bin/Icons/ElementLine16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/ElementLine16.png -------------------------------------------------------------------------------- /Bin/Icons/NewDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/NewDocument.png -------------------------------------------------------------------------------- /Bin/Icons/Open16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/Open16.png -------------------------------------------------------------------------------- /Bin/Icons/PanTool16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/PanTool16.png -------------------------------------------------------------------------------- /Bin/Icons/Point16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/Point16.png -------------------------------------------------------------------------------- /Bin/Icons/Save16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/Save16.png -------------------------------------------------------------------------------- /Bin/Icons/Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/Select.png -------------------------------------------------------------------------------- /Bin/Icons/SelectionSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/SelectionSelect.png -------------------------------------------------------------------------------- /Bin/Icons/SelectionUnselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/SelectionUnselect.png -------------------------------------------------------------------------------- /Bin/Icons/check01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/check01.png -------------------------------------------------------------------------------- /Bin/Icons/check02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/check02.png -------------------------------------------------------------------------------- /Bin/Icons/internet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/internet.ico -------------------------------------------------------------------------------- /Bin/Icons/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/layers.png -------------------------------------------------------------------------------- /Bin/Icons/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/lightbulb.png -------------------------------------------------------------------------------- /Bin/Icons/lightbulb_lit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/lightbulb_lit.png -------------------------------------------------------------------------------- /Bin/Icons/tradi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/Icons/tradi.ico -------------------------------------------------------------------------------- /Bin/gpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Bin/gpc.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/SQLite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/SQLite3.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/gdal19.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/gdal19.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/gdal_csharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/gdal_csharp.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/gdal_wrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/gdal_wrap.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/gdalconst_csharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/gdalconst_csharp.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/gdalconst_wrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/gdalconst_wrap.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/geos_c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/geos_c.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/hd426m.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/hd426m.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/hdf5dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/hdf5dll.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/hm426m.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/hm426m.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/libeay32.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/libiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/libiconv-2.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/libintl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/libintl-8.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/libpq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/libpq.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/ogr_csharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/ogr_csharp.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/ogr_wrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/ogr_wrap.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/osr_csharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/osr_csharp.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/osr_wrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/osr_wrap.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/proj.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/proj.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/ssleay32.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/szip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/szip.dll -------------------------------------------------------------------------------- /Dependents/GDAL19/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Dependents/GDAL19/zlib1.dll -------------------------------------------------------------------------------- /Doc/依赖项和开发说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Doc/依赖项和开发说明.txt -------------------------------------------------------------------------------- /Doc/开发计划.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/Doc/开发计划.txt -------------------------------------------------------------------------------- /GpcWrapper/A.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/A.plg -------------------------------------------------------------------------------- /GpcWrapper/GpcTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/GpcTest.cs -------------------------------------------------------------------------------- /GpcWrapper/GpcTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/GpcTest.exe -------------------------------------------------------------------------------- /GpcWrapper/GpcWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/GpcWrapper.cs -------------------------------------------------------------------------------- /GpcWrapper/GpcWrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/GpcWrapper.html -------------------------------------------------------------------------------- /GpcWrapper/TestAppBinary/A.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestAppBinary/A.plg -------------------------------------------------------------------------------- /GpcWrapper/TestAppBinary/GpcTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestAppBinary/GpcTest.exe -------------------------------------------------------------------------------- /GpcWrapper/TestAppBinary/gpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestAppBinary/gpc.dll -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/App.xaml -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/App.xaml.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/GPC-README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/GPC-README.pdf -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/GpcTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/GpcTest.sln -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/GpcWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/GpcWrapper.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/MainWindow.xaml -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/MainWindow.xaml.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/Properties/Resources.resx -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/Properties/Settings.settings -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/RGeos.GPCWapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/RGeos.GPCWapper.csproj -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/RGeos.GPCWapper.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/RGeos.GPCWapper.csproj.user -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/app.config -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS2010/gpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS2010/gpc.dll -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS8/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS8/AssemblyInfo.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS8/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS8/Form1.Designer.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS8/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS8/Form1.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS8/GpcWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS8/GpcWrapper.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS8/Program.cs -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS8/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS8/Test.csproj -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS8/Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS8/Test.sln -------------------------------------------------------------------------------- /GpcWrapper/TestProjectVS8/gpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/TestProjectVS8/gpc.dll -------------------------------------------------------------------------------- /GpcWrapper/compile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/compile.cmd -------------------------------------------------------------------------------- /GpcWrapper/gpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/gpc.c -------------------------------------------------------------------------------- /GpcWrapper/gpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/gpc.dll -------------------------------------------------------------------------------- /GpcWrapper/gpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/gpc.h -------------------------------------------------------------------------------- /GpcWrapper/html/gpc_wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/html/gpc_wrapper.html -------------------------------------------------------------------------------- /GpcWrapper/html/gpcdll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/html/gpcdll.html -------------------------------------------------------------------------------- /GpcWrapper/html/gpctest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/html/gpctest.jpg -------------------------------------------------------------------------------- /GpcWrapper/html/installdotnet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/html/installdotnet.html -------------------------------------------------------------------------------- /GpcWrapper/html/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/html/reference.html -------------------------------------------------------------------------------- /GpcWrapper/html/use_gpc_wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/GpcWrapper/html/use_gpc_wrapper.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjNet/BuildProcessTemplates/DefaultTemplate.11.1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/BuildProcessTemplates/DefaultTemplate.11.1.xaml -------------------------------------------------------------------------------- /ProjNet/BuildProcessTemplates/DefaultTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/BuildProcessTemplates/DefaultTemplate.xaml -------------------------------------------------------------------------------- /ProjNet/BuildProcessTemplates/LabDefaultTemplate.11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/BuildProcessTemplates/LabDefaultTemplate.11.xaml -------------------------------------------------------------------------------- /ProjNet/BuildProcessTemplates/UpgradeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/BuildProcessTemplates/UpgradeTemplate.xaml -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/App.xaml -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/App.xaml.cs -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/Page.xaml -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/Page.xaml.cs -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/ProjNet.Silverlight.TestApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/ProjNet.Silverlight.TestApplication.csproj -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/ProjNet.Silverlight.TestApplication.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/ProjNet.Silverlight.TestApplication.csproj.user -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/ProjNet.Silverlight.TestApplication.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/ProjNet.Silverlight.TestApplication.csproj.vspscc -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/Properties/AppManifest.xml -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjNet/DemoApp_Silverlight/epsg4326.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoApp_Silverlight/epsg4326.jpg -------------------------------------------------------------------------------- /ProjNet/DemoWebApp/App_Code/SRIDReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoWebApp/App_Code/SRIDReader.cs -------------------------------------------------------------------------------- /ProjNet/DemoWebApp/App_Data/SRID.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoWebApp/App_Data/SRID.csv -------------------------------------------------------------------------------- /ProjNet/DemoWebApp/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoWebApp/Default.aspx -------------------------------------------------------------------------------- /ProjNet/DemoWebApp/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoWebApp/Default.aspx.cs -------------------------------------------------------------------------------- /ProjNet/DemoWebApp/Silverlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoWebApp/Silverlight.js -------------------------------------------------------------------------------- /ProjNet/DemoWebApp/SilverlightTestPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoWebApp/SilverlightTestPage.html -------------------------------------------------------------------------------- /ProjNet/DemoWebApp/Web.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/DemoWebApp/Web.Config -------------------------------------------------------------------------------- /ProjNet/ExternalReferences/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ExternalReferences/nunit.framework.dll -------------------------------------------------------------------------------- /ProjNet/ExternalReferences/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ExternalReferences/nunit.framework.xml -------------------------------------------------------------------------------- /ProjNet/ProjNET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNET.sln -------------------------------------------------------------------------------- /ProjNet/ProjNET.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNET.suo -------------------------------------------------------------------------------- /ProjNet/ProjNET.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNET.vssscc -------------------------------------------------------------------------------- /ProjNet/ProjNet.Silverlight/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNet.Silverlight/Extensions.cs -------------------------------------------------------------------------------- /ProjNet/ProjNet.Silverlight/ProjNet.Silverlight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNet.Silverlight/ProjNet.Silverlight.csproj -------------------------------------------------------------------------------- /ProjNet/ProjNet.Silverlight/ProjNet.Silverlight.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNet.Silverlight/ProjNet.Silverlight.csproj.user -------------------------------------------------------------------------------- /ProjNet/ProjNet.Silverlight/ProjNet.Silverlight.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNet.Silverlight/ProjNet.Silverlight.csproj.vspscc -------------------------------------------------------------------------------- /ProjNet/ProjNet.Silverlight/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNet.Silverlight/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjNet/ProjNet.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNet.vsmdi -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Form1.Designer.cs -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Form1.cs -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Form1.resx -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Program.cs -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/ProjNetWinFormTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/ProjNetWinFormTest.csproj -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Properties/Resources.resx -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ProjNet/ProjNetWinFormTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/ProjNetWinFormTest/Properties/Settings.settings -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems.Tests/CoordinateTransformTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems.Tests/CoordinateTransformTests.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems.Tests/ProjNET.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems.Tests/ProjNET.Tests.csproj -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems.Tests/ProjNET.Tests.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems.Tests/ProjNET.Tests.csproj.user -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems.Tests/ProjNET.Tests.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems.Tests/ProjNET.Tests.csproj.vspscc -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems.Tests/SRID.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems.Tests/SRID.csv -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems.Tests/SRIDReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems.Tests/SRIDReader.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems.Tests/WKT/WKTCoordSysParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems.Tests/WKT/WKTCoordSysParserTests.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/ClassDiagram1.cd -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/AngularUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/AngularUnit.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/AxisInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/AxisInfo.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/AxisOrientationEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/AxisOrientationEnum.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/CoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/CoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/CoordinateSystemFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/CoordinateSystemFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Datum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Datum.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/DatumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/DatumType.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Ellipsoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Ellipsoid.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/GeocentricCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/GeocentricCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/GeographicCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/GeographicCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/GeographicTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/GeographicTransform.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/HorizontalCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/HorizontalCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/HorizontalDatum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/HorizontalDatum.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IAngularUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IAngularUnit.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ICompoundCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ICompoundCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ICoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ICoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ICoordinateSystemFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ICoordinateSystemFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IDatum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IDatum.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IEllipsoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IEllipsoid.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IFittedCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IFittedCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IGeocentricCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IGeocentricCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IGeodeticSpatialReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IGeodeticSpatialReference.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IGeographicCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IGeographicCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IGeographicTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IGeographicTransform.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IHorizontalCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IHorizontalCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IHorizontalDatum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IHorizontalDatum.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IInfo.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ILinearUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ILinearUnit.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ILocalCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ILocalCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ILocalDatum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ILocalDatum.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IParameterInfo.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IPrimeMeridian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IPrimeMeridian.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IProjectedCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IProjectedCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IProjection.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ISpatialReferenceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ISpatialReferenceFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IUnit.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IVerticalCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IVerticalCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IVerticalDatum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/IVerticalDatum.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Info.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/LinearUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/LinearUnit.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Parameter.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/PrimeMeridian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/PrimeMeridian.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ProjectedCoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ProjectedCoordinateSystem.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projection.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ProjectionParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/ProjectionParameter.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/AlbersProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/AlbersProjection.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/GaussKrugerProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/GaussKrugerProjection.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/KrovakProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/KrovakProjection.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/LambertConformalConic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/LambertConformalConic.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/MapProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/MapProjection.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/Mercator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/Mercator.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/TransverseMercator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Projections/TransverseMercator.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRDatumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRDatumType.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRGeoCSType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRGeoCSType.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRProjectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRProjectionType.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRSpheroid2Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRSpheroid2Type.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRSpheroidType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/RgSRSpheroidType.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/SpatialReferenceEnvironmentClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/SREnvironment/SpatialReferenceEnvironmentClass.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ConcatenatedTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ConcatenatedTransform.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/CoordinateTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/CoordinateTransformation.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/CoordinateTransformationAuthorityFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/CoordinateTransformationAuthorityFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/CoordinateTransformationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/CoordinateTransformationFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/DatumTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/DatumTransform.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/DomainFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/DomainFlags.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/GeocentricTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/GeocentricTransform.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/GeographicTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/GeographicTransform.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ICoordinateSystemAuthorityFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ICoordinateSystemAuthorityFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ICoordinateTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ICoordinateTransformation.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ICoordinateTransformationAuthorityFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ICoordinateTransformationAuthorityFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ICoordinateTransformationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/ICoordinateTransformationFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/IMathTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/IMathTransform.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/IMathTransformFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/IMathTransformFactory.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/MathTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/MathTransform.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/TransformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Transformations/TransformType.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/Unit.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/WGS84ConversionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/CoordinateSystems/WGS84ConversionInfo.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/IO/CoordinateSystems/CoordinateSystemWktReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/IO/CoordinateSystems/CoordinateSystemWktReader.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/IO/CoordinateSystems/StreamTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/IO/CoordinateSystems/StreamTokenizer.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/IO/CoordinateSystems/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/IO/CoordinateSystems/TokenType.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/IO/CoordinateSystems/WKTStreamTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/IO/CoordinateSystems/WKTStreamTokenizer.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/ProjNET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/ProjNET.csproj -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/ProjNET.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/ProjNET.csproj.user -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/ProjNET.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/ProjNET.csproj.vspscc -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjNet/SharpMap.CoordinateSystems/scskey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/SharpMap.CoordinateSystems/scskey.snk -------------------------------------------------------------------------------- /ProjNet/UnitTests/CoordinateTransformTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/UnitTests/CoordinateTransformTests.cs -------------------------------------------------------------------------------- /ProjNet/UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjNet/UnitTests/SRID.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/UnitTests/SRID.csv -------------------------------------------------------------------------------- /ProjNet/UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /ProjNet/UnitTests/UnitTests.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/UnitTests/UnitTests.csproj.vspscc -------------------------------------------------------------------------------- /ProjNet/UnitTests/WKT/WKTCoordSysParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/UnitTests/WKT/WKTCoordSysParserTests.cs -------------------------------------------------------------------------------- /ProjNet/localtestrun.testrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/ProjNet/localtestrun.testrunconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/README.md -------------------------------------------------------------------------------- /RGeos-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos-Logo.png -------------------------------------------------------------------------------- /RGeos.Carto/AffineTransformation2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/AffineTransformation2D.cs -------------------------------------------------------------------------------- /RGeos.Carto/ColorBlend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/ColorBlend.cs -------------------------------------------------------------------------------- /RGeos.Carto/FetureLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/FetureLayer.cs -------------------------------------------------------------------------------- /RGeos.Carto/GeometryTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/GeometryTransform.cs -------------------------------------------------------------------------------- /RGeos.Carto/ILayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/ILayer.cs -------------------------------------------------------------------------------- /RGeos.Carto/IMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/IMap.cs -------------------------------------------------------------------------------- /RGeos.Carto/ISelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/ISelection.cs -------------------------------------------------------------------------------- /RGeos.Carto/ISnapPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/ISnapPoint.cs -------------------------------------------------------------------------------- /RGeos.Carto/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/Layer.cs -------------------------------------------------------------------------------- /RGeos.Carto/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/Map.cs -------------------------------------------------------------------------------- /RGeos.Carto/MapSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/MapSelection.cs -------------------------------------------------------------------------------- /RGeos.Carto/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RGeos.Carto/RGeos.Carto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/RGeos.Carto.csproj -------------------------------------------------------------------------------- /RGeos.Carto/RasterLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/RasterLayer.cs -------------------------------------------------------------------------------- /RGeos.Carto/RgEnumShapeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/RgEnumShapeType.cs -------------------------------------------------------------------------------- /RGeos.Carto/SnapPointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Carto/SnapPointBase.cs -------------------------------------------------------------------------------- /RGeos.Controls/IGraphicContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/IGraphicContainer.cs -------------------------------------------------------------------------------- /RGeos.Controls/IMapControl2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/IMapControl2.cs -------------------------------------------------------------------------------- /RGeos.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RGeos.Controls/RGeos.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/RGeos.Controls.csproj -------------------------------------------------------------------------------- /RGeos.Controls/RgMapControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/RgMapControl.Designer.cs -------------------------------------------------------------------------------- /RGeos.Controls/RgMapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/RgMapControl.cs -------------------------------------------------------------------------------- /RGeos.Controls/RgMapControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/RgMapControl.resx -------------------------------------------------------------------------------- /RGeos.Controls/RgTocControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/RgTocControl.Designer.cs -------------------------------------------------------------------------------- /RGeos.Controls/RgTocControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/RgTocControl.cs -------------------------------------------------------------------------------- /RGeos.Controls/RgTocControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Controls/RgTocControl.resx -------------------------------------------------------------------------------- /RGeos.Core/HookHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/HookHelper.cs -------------------------------------------------------------------------------- /RGeos.Core/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/ICommand.cs -------------------------------------------------------------------------------- /RGeos.Core/IMapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/IMapControl.cs -------------------------------------------------------------------------------- /RGeos.Core/ITool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/ITool.cs -------------------------------------------------------------------------------- /RGeos.Core/ITransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/ITransformation.cs -------------------------------------------------------------------------------- /RGeos.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RGeos.Core/RBaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/RBaseCommand.cs -------------------------------------------------------------------------------- /RGeos.Core/RGeos.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/RGeos.Core.csproj -------------------------------------------------------------------------------- /RGeos.Core/RgeosUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Core/RgeosUnits.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ControlCommands/DrawPointTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ControlCommands/DrawPointTool.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ControlCommands/DrawPolygonTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ControlCommands/DrawPolygonTool.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ControlCommands/DrawPolylineTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ControlCommands/DrawPolylineTool.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ControlCommands/IPickUpPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ControlCommands/IPickUpPoint.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ControlCommands/PanTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ControlCommands/PanTool.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ControlCommands/PickUpPointTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ControlCommands/PickUpPointTool.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ControlCommands/SelectTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ControlCommands/SelectTool.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ControlCommands/UnSelectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ControlCommands/UnSelectCommand.cs -------------------------------------------------------------------------------- /RGeos.Desktop/Earth.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/Earth.ico -------------------------------------------------------------------------------- /RGeos.Desktop/FrmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmAbout.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/FrmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmAbout.cs -------------------------------------------------------------------------------- /RGeos.Desktop/FrmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmAbout.resx -------------------------------------------------------------------------------- /RGeos.Desktop/FrmGridLineOrPoint.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmGridLineOrPoint.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/FrmGridLineOrPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmGridLineOrPoint.cs -------------------------------------------------------------------------------- /RGeos.Desktop/FrmGridLineOrPoint.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmGridLineOrPoint.resx -------------------------------------------------------------------------------- /RGeos.Desktop/FrmImportXY.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmImportXY.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/FrmImportXY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmImportXY.cs -------------------------------------------------------------------------------- /RGeos.Desktop/FrmImportXY.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmImportXY.resx -------------------------------------------------------------------------------- /RGeos.Desktop/FrmLayers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmLayers.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/FrmLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/FrmLayers.cs -------------------------------------------------------------------------------- /RGeos.Desktop/IRgFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/IRgFileFormat.cs -------------------------------------------------------------------------------- /RGeos.Desktop/MainFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/MainFrm.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/MainFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/MainFrm.cs -------------------------------------------------------------------------------- /RGeos.Desktop/MainFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/MainFrm.resx -------------------------------------------------------------------------------- /RGeos.Desktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/Program.cs -------------------------------------------------------------------------------- /RGeos.Desktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RGeos.Desktop/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/Properties/Resources.resx -------------------------------------------------------------------------------- /RGeos.Desktop/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/Properties/Settings.settings -------------------------------------------------------------------------------- /RGeos.Desktop/RGeos.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/RGeos.Desktop.csproj -------------------------------------------------------------------------------- /RGeos.Desktop/RGeos.Desktop.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/RGeos.Desktop.csproj.user -------------------------------------------------------------------------------- /RGeos.Desktop/SelectionRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/SelectionRectangle.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/Angle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/Angle.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/ExcelPointPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/ExcelPointPair.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/FrmGaussProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/FrmGaussProjection.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/FrmGaussProjection.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/FrmGaussProjection.designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/FrmGaussProjection.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/FrmGaussProjection.resx -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/FrmSevenParams.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/FrmSevenParams.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/FrmSevenParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/FrmSevenParams.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/FrmSevenParams.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/FrmSevenParams.resx -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/IPointPairDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/IPointPairDAL.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/Radian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/Radian.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/RgPointPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/RgPointPair.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/SurveryMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/SurveryMath.cs -------------------------------------------------------------------------------- /RGeos.Desktop/ToolBox/ZMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/ToolBox/ZMath.cs -------------------------------------------------------------------------------- /RGeos.Desktop/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/app.config -------------------------------------------------------------------------------- /RGeos.Desktop/frmLayers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/frmLayers.resx -------------------------------------------------------------------------------- /RGeos.Desktop/frmNewFeatureClass.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/frmNewFeatureClass.Designer.cs -------------------------------------------------------------------------------- /RGeos.Desktop/frmNewFeatureClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/frmNewFeatureClass.cs -------------------------------------------------------------------------------- /RGeos.Desktop/frmNewFeatureClass.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/frmNewFeatureClass.resx -------------------------------------------------------------------------------- /RGeos.Desktop/tradi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Desktop/tradi.ico -------------------------------------------------------------------------------- /RGeos.Display/IDisplayFeedback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Display/IDisplayFeedback.cs -------------------------------------------------------------------------------- /RGeos.Display/IDisplayTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Display/IDisplayTransformation.cs -------------------------------------------------------------------------------- /RGeos.Display/IScreenDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Display/IScreenDisplay.cs -------------------------------------------------------------------------------- /RGeos.Display/ISymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Display/ISymbol.cs -------------------------------------------------------------------------------- /RGeos.Display/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Display/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RGeos.Display/RGeos.Display.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Display/RGeos.Display.csproj -------------------------------------------------------------------------------- /RGeos.Display/SimpleMarkerSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Display/SimpleMarkerSymbol.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Basic/MathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Basic/MathEx.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Basic/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Basic/Matrix.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Basic/RgMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Basic/RgMath.cs -------------------------------------------------------------------------------- /RGeos.Geometries/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/BoundingBox.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownBinary/GeometryFromWKB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownBinary/GeometryFromWKB.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownBinary/GeometryToWKB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownBinary/GeometryToWKB.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownBinary/WKBByteOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownBinary/WKBByteOrder.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownBinary/WKBGeometryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownBinary/WKBGeometryType.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownText/GeometryFromWKT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownText/GeometryFromWKT.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownText/GeometryToWKT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownText/GeometryToWKT.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownText/SpatialReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownText/SpatialReference.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownText/StreamTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownText/StreamTokenizer.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownText/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownText/TokenType.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Converters/WellKnownText/WKTStreamTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Converters/WellKnownText/WKTStreamTokenizer.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Curve.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Geometry.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Geometry.cd -------------------------------------------------------------------------------- /RGeos.Geometries/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Geometry.cs -------------------------------------------------------------------------------- /RGeos.Geometries/GeometryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/GeometryCollection.cs -------------------------------------------------------------------------------- /RGeos.Geometries/GeometryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/GeometryType.cs -------------------------------------------------------------------------------- /RGeos.Geometries/IGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/IGeometry.cs -------------------------------------------------------------------------------- /RGeos.Geometries/IGeometryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/IGeometryCollection.cs -------------------------------------------------------------------------------- /RGeos.Geometries/ISpatialReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/ISpatialReference.cs -------------------------------------------------------------------------------- /RGeos.Geometries/LineString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/LineString.cs -------------------------------------------------------------------------------- /RGeos.Geometries/LinearRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/LinearRing.cs -------------------------------------------------------------------------------- /RGeos.Geometries/MultiCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/MultiCurve.cs -------------------------------------------------------------------------------- /RGeos.Geometries/MultiLineString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/MultiLineString.cs -------------------------------------------------------------------------------- /RGeos.Geometries/MultiPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/MultiPoint.cs -------------------------------------------------------------------------------- /RGeos.Geometries/MultiPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/MultiPolygon.cs -------------------------------------------------------------------------------- /RGeos.Geometries/MultiSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/MultiSurface.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Point.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Point3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Point3D.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Polygon.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RGeos.Geometries/RGeos.Geometries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/RGeos.Geometries.csproj -------------------------------------------------------------------------------- /RGeos.Geometries/RGeos.Geometries.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/RGeos.Geometries.csproj.user -------------------------------------------------------------------------------- /RGeos.Geometries/RgLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/RgLine.cs -------------------------------------------------------------------------------- /RGeos.Geometries/RgPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/RgPlane.cs -------------------------------------------------------------------------------- /RGeos.Geometries/RgSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/RgSegment.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Spatial/HitUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Spatial/HitUtil.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Spatial/RgAreaMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Spatial/RgAreaMeasure.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Spatial/RgDistanceMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Spatial/RgDistanceMeasure.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Spatial/RgSpatialAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Spatial/RgSpatialAnalysis.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Spatial/RgTopologicOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Spatial/RgTopologicOperator.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Spatial/RgTopologicRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Spatial/RgTopologicRelationship.cs -------------------------------------------------------------------------------- /RGeos.Geometries/SpatialRelations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/SpatialRelations.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Surface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Surface.cs -------------------------------------------------------------------------------- /RGeos.Geometries/Vector3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.Geometries/Vector3d.cs -------------------------------------------------------------------------------- /RGeos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos.sln -------------------------------------------------------------------------------- /RGeos/Basic/MathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Basic/MathEx.cs -------------------------------------------------------------------------------- /RGeos/Basic/RMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Basic/RMath.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownBinary/GeometryFromWKB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownBinary/GeometryFromWKB.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownBinary/GeometryToWKB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownBinary/GeometryToWKB.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownBinary/WKBByteOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownBinary/WKBByteOrder.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownBinary/WKBGeometryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownBinary/WKBGeometryType.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownText/GeometryFromWKT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownText/GeometryFromWKT.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownText/GeometryToWKT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownText/GeometryToWKT.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownText/SpatialReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownText/SpatialReference.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownText/StreamTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownText/StreamTokenizer.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownText/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownText/TokenType.cs -------------------------------------------------------------------------------- /RGeos/Converters/WellKnownText/WKTStreamTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Converters/WellKnownText/WKTStreamTokenizer.cs -------------------------------------------------------------------------------- /RGeos/CoordinateSystems/Transformations/GeometryTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/CoordinateSystems/Transformations/GeometryTransform.cs -------------------------------------------------------------------------------- /RGeos/FrmPartialRefresh.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/FrmPartialRefresh.Designer.cs -------------------------------------------------------------------------------- /RGeos/FrmPartialRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/FrmPartialRefresh.cs -------------------------------------------------------------------------------- /RGeos/FrmPartialRefresh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/FrmPartialRefresh.resx -------------------------------------------------------------------------------- /RGeos/Geometries/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/BoundingBox.cs -------------------------------------------------------------------------------- /RGeos/Geometries/Curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/Curve.cs -------------------------------------------------------------------------------- /RGeos/Geometries/Geometry.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/Geometry.cd -------------------------------------------------------------------------------- /RGeos/Geometries/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/Geometry.cs -------------------------------------------------------------------------------- /RGeos/Geometries/GeometryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/GeometryCollection.cs -------------------------------------------------------------------------------- /RGeos/Geometries/GeometryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/GeometryType.cs -------------------------------------------------------------------------------- /RGeos/Geometries/IGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/IGeometry.cs -------------------------------------------------------------------------------- /RGeos/Geometries/IGeometryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/IGeometryCollection.cs -------------------------------------------------------------------------------- /RGeos/Geometries/ISpatialReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/ISpatialReference.cs -------------------------------------------------------------------------------- /RGeos/Geometries/LineString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/LineString.cs -------------------------------------------------------------------------------- /RGeos/Geometries/LinearRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/LinearRing.cs -------------------------------------------------------------------------------- /RGeos/Geometries/MultiCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/MultiCurve.cs -------------------------------------------------------------------------------- /RGeos/Geometries/MultiLineString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/MultiLineString.cs -------------------------------------------------------------------------------- /RGeos/Geometries/MultiPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/MultiPoint.cs -------------------------------------------------------------------------------- /RGeos/Geometries/MultiPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/MultiPolygon.cs -------------------------------------------------------------------------------- /RGeos/Geometries/MultiSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/MultiSurface.cs -------------------------------------------------------------------------------- /RGeos/Geometries/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/Point.cs -------------------------------------------------------------------------------- /RGeos/Geometries/Point3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/Point3D.cs -------------------------------------------------------------------------------- /RGeos/Geometries/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/Polygon.cs -------------------------------------------------------------------------------- /RGeos/Geometries/SpatialRelations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/SpatialRelations.cs -------------------------------------------------------------------------------- /RGeos/Geometries/Surface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometries/Surface.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RArc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RArc.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RCircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RCircle.cs -------------------------------------------------------------------------------- /RGeos/Geometry/REnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/REnvelope.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RGeometry.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RLine.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RPlane.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RPoint.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RPointCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RPointCollection.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RPolygon.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RPolyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RPolyline.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RRay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RRay.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RRing.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RSegment.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RSphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RSphere.cs -------------------------------------------------------------------------------- /RGeos/Geometry/RTriangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/RTriangle.cs -------------------------------------------------------------------------------- /RGeos/Geometry/Vector3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Geometry/Vector3d.cs -------------------------------------------------------------------------------- /RGeos/Measure/RAreaMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Measure/RAreaMeasure.cs -------------------------------------------------------------------------------- /RGeos/Measure/RDistanceMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Measure/RDistanceMeasure.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/HookHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/HookHelper.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/ICommand.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/IDisplayFeedback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/IDisplayFeedback.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/IDisplayTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/IDisplayTransformation.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/ILayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/ILayer.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/IMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/IMap.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/IMapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/IMapControl.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/IScreenDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/IScreenDisplay.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/ISelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/ISelection.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/ISymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/ISymbol.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/ITool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/ITool.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/Layer.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/Map.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/RBaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/RBaseCommand.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/RgeosUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/RgeosUnits.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/Transform.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/UcMapControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/UcMapControl.Designer.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/UcMapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/UcMapControl.cs -------------------------------------------------------------------------------- /RGeos/PluginEngine/UcMapControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/PluginEngine/UcMapControl.resx -------------------------------------------------------------------------------- /RGeos/Plugins/DrawLineTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Plugins/DrawLineTool.cs -------------------------------------------------------------------------------- /RGeos/Plugins/DrawMultiPolygonTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Plugins/DrawMultiPolygonTool.cs -------------------------------------------------------------------------------- /RGeos/Plugins/DrawPointTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Plugins/DrawPointTool.cs -------------------------------------------------------------------------------- /RGeos/Plugins/DrawPolylineTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Plugins/DrawPolylineTool.cs -------------------------------------------------------------------------------- /RGeos/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Program.cs -------------------------------------------------------------------------------- /RGeos/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RGeos/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RGeos/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Properties/Resources.resx -------------------------------------------------------------------------------- /RGeos/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RGeos/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Properties/Settings.settings -------------------------------------------------------------------------------- /RGeos/RGeos.First.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/RGeos.First.csproj -------------------------------------------------------------------------------- /RGeos/RGeos.First.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/RGeos.First.sln -------------------------------------------------------------------------------- /RGeos/SpatialAnalysis/RSpatialAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/SpatialAnalysis/RSpatialAnalysis.cs -------------------------------------------------------------------------------- /RGeos/Topology/TopologicOperate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Topology/TopologicOperate.cs -------------------------------------------------------------------------------- /RGeos/Topology/TopologicRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Topology/TopologicRelationship.cs -------------------------------------------------------------------------------- /RGeos/Utilities/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/Utilities/Transform.cs -------------------------------------------------------------------------------- /RGeos/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhexie/RGEOS/HEAD/RGeos/app.config --------------------------------------------------------------------------------