嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
附和导线计算
.
├── 好例子网_附合导线近似平差(2).rar
└── 附合导线近似平差
├── Form1.Designer.cs
├── Form1.cs
├── Form1.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── bin
│ ├── Debug
│ │ ├── GeoAPI.dll
│ │ ├── GeoAPI.pdb
│ │ ├── GeoAPI.xml
│ │ ├── 附合导线近似平差.exe
│ │ ├── 附合导线近似平差.pdb
│ │ ├── 附合导线近似平差.vshost.exe
│ │ └── 附合导线近似平差.vshost.exe.manifest
│ └── Release
├── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── 附合导线近似平差.Form1.resources
│ ├── 附合导线近似平差.Properties.Resources.resources
│ ├── 附合导线近似平差.csproj.AssemblyReference.cache
│ ├── 附合导线近似平差.csproj.CopyComplete
│ ├── 附合导线近似平差.csproj.CoreCompileInputs.cache
│ ├── 附合导线近似平差.csproj.FileListAbsolute.txt
│ ├── 附合导线近似平差.csproj.GenerateResource.cache
│ ├── 附合导线近似平差.csprojResolveAssemblyReference.cache
│ ├── 附合导线近似平差.exe
│ └── 附合导线近似平差.pdb
├── packages
│ └── GeoAPI.Core.1.7.5
│ ├── GeoAPI.Core.1.7.5.nupkg
│ ├── lib
│ │ ├── net20
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ ├── net35-cf
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ ├── net35-client
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ ├── net40-client
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ ├── net403-client
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ ├── net45
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ ├── netstandard1.0
│ │ │ ├── GeoAPI.deps.json
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ ├── netstandard2.0
│ │ │ ├── GeoAPI.deps.json
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ ├── portable40-net40 sl5 win8 wp8 wpa81
│ │ │ ├── GeoAPI.dll
│ │ │ ├── GeoAPI.pdb
│ │ │ └── GeoAPI.xml
│ │ └── portable40-net403 sl5 win8 wp8 wpa81
│ │ ├── GeoAPI.dll
│ │ ├── GeoAPI.pdb
│ │ └── GeoAPI.xml
│ └── src
│ ├── Consts.cs
│ ├── DataStructures
│ │ └── Interval.cs
│ ├── Geometries
│ │ ├── Coordinate.cs
│ │ ├── Dimension.cs
│ │ ├── Envelope.cs
│ │ ├── IBoundable.cs
│ │ ├── ICoordinate.cs
│ │ ├── ICoordinateBuffer.cs
│ │ ├── ICoordinateFilter.cs
│ │ ├── ICoordinateSequence.cs
│ │ ├── ICoordinateSequenceFactory.cs
│ │ ├── ICoordinateSequenceFilter.cs
│ │ ├── ICurve.cs
│ │ ├── IEnvelope.cs
│ │ ├── IExpandable.cs
│ │ ├── IGeometry.cs
│ │ ├── IGeometryCollection.cs
│ │ ├── IGeometryComponentFilter.cs
│ │ ├── IGeometryFactory.cs
│ │ ├── IGeometryFilter.cs
│ │ ├── IIntersectable.cs
│ │ ├── ILineString.cs
│ │ ├── ILineal.cs
│ │ ├── ILinearRing.cs
│ │ ├── IMultiCurve.cs
│ │ ├── IMultiLineString.cs
│ │ ├── IMultiPoint.cs
│ │ ├── IMultiPolygon.cs
│ │ ├── IMultiSurface.cs
│ │ ├── IPoint.cs
│ │ ├── IPolygon.cs
│ │ ├── IPolygonal.cs
│ │ ├── IPrecisionModel.cs
│ │ ├── IPuntal.cs
│ │ ├── ISurface.cs
│ │ ├── IntersectionMatrix.cs
│ │ ├── Location.cs
│ │ ├── OgcGeometryType.cs
│ │ ├── Ordinate.cs
│ │ ├── Ordinates.cs
│ │ ├── OridinatesUtility.cs
│ │ └── Prepared
│ │ └── IPreparedGeometry.cs
│ ├── GeometryServiceProvider.cs
│ ├── ICloneable.cs
│ ├── IGeometryServices.cs
│ ├── IO
│ │ ├── ByteOrder.cs
│ │ ├── GeometryType.cs
│ │ ├── IGeometryReader.cs
│ │ ├── IGeometryWriter.cs
│ │ └── ParseException.cs
│ ├── Operation
│ │ └── Buffer
│ │ ├── BufferStyle.cs
│ │ ├── EndCapStyle.cs
│ │ ├── IBufferParameters.cs
│ │ └── JoinStyle.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── ValueParser.cs
├── packages.config
├── 观测文件.txt
├── 附合导线近似平差.csproj
├── 附合导线近似平差.sln
└── 附合导线近似平差.v12.suo
29 directories, 123 files