├── 01-空间数据探索性分析 └── 误差椭圆、空间权重矩阵、常用空间自相关指数的含义.md ├── 02-遥感图像空间前方交会计算 ├── Part2-ch02(课本例程:空间前方交会,有错误) │ ├── .DS_Store │ ├── SpaceFowardIntersection │ │ ├── .DS_Store │ │ ├── 双像空间前方交会.sln │ │ ├── 双像空间前方交会.suo │ │ └── 双像空间前方交会 │ │ │ ├── .DS_Store │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── bin │ │ │ ├── .DS_Store │ │ │ └── Debug │ │ │ │ ├── 双像空间前方交会.exe │ │ │ │ ├── 双像空间前方交会.pdb │ │ │ │ ├── 双像空间前方交会.vshost.exe │ │ │ │ └── 双像空间前方交会.vshost.exe.manifest │ │ │ ├── obj │ │ │ └── x86 │ │ │ │ └── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── GenerateResource.read.1.tlog │ │ │ │ ├── GenerateResource.write.1.tlog │ │ │ │ ├── ResolveAssemblyReference.cache │ │ │ │ ├── 双像空间前方交会.Form1.resources │ │ │ │ ├── 双像空间前方交会.Properties.Resources.resources │ │ │ │ ├── 双像空间前方交会.csproj.FileListAbsolute.txt │ │ │ │ ├── 双像空间前方交会.csproj.GenerateResource.Cache │ │ │ │ ├── 双像空间前方交会.exe │ │ │ │ └── 双像空间前方交会.pdb │ │ │ └── 双像空间前方交会.csproj │ └── 测试数据(放到D盘根目录) │ │ ├── SpaceFowardIntersection.exe │ │ ├── bhl1.txt │ │ └── 测试数据说明.txt ├── QianFangJiaoHui(罗宏昆) │ ├── .vs │ │ └── QianFangJiaoHui │ │ │ └── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── QianFangJiaoHui.sln │ └── QianFangJiaoHui │ │ ├── Algorithm.cs │ │ ├── App.config │ │ ├── DataCenter.cs │ │ ├── FileCenter.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── QianFangJiaoHui.csproj │ │ ├── bin │ │ └── Debug │ │ │ ├── QianFangJiaoHui.exe │ │ │ ├── QianFangJiaoHui.exe.config │ │ │ └── QianFangJiaoHui.pdb │ │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── QianFangJiaoHui.Form1.resources │ │ ├── QianFangJiaoHui.Properties.Resources.resources │ │ ├── QianFangJiaoHui.csproj.CoreCompileInputs.cache │ │ ├── QianFangJiaoHui.csproj.FileListAbsolute.txt │ │ ├── QianFangJiaoHui.csproj.GenerateResource.cache │ │ ├── QianFangJiaoHui.exe │ │ ├── QianFangJiaoHui.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── 空间前方交会.pdf └── 空间前方交会测试数据.txt ├── 03-GNSS空间大气改正计算 ├── Part1-ch10(课本例程-电离层改正计算) │ ├── Iono │ │ ├── .vs │ │ │ └── Iono │ │ │ │ └── v15 │ │ │ │ ├── .suo │ │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ ├── Algo.cs │ │ ├── App.config │ │ ├── C.cs │ │ ├── DataEntity.cs │ │ ├── DayTime.cs │ │ ├── EllipsoidModel.cs │ │ ├── FileHelper.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Iono.csproj │ │ ├── Iono.sln │ │ ├── IonoModel.cs │ │ ├── MiscMath.cs │ │ ├── Point.cs │ │ ├── Position.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Time.cs │ │ ├── TimeSystem.cs │ │ ├── Triple.cs │ │ ├── WGS84Ellipsoid.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── Iono.exe │ │ │ │ ├── Iono.exe.config │ │ │ │ ├── Iono.pdb │ │ │ │ ├── Iono.vshost.exe │ │ │ │ ├── Iono.vshost.exe.config │ │ │ │ ├── Iono.vshost.exe.manifest │ │ │ │ └── 卫星轨道数据.txt │ │ │ └── Release │ │ │ │ ├── Iono.exe │ │ │ │ ├── Iono.exe.config │ │ │ │ ├── Iono.pdb │ │ │ │ ├── Iono.vshost.exe │ │ │ │ ├── Iono.vshost.exe.config │ │ │ │ ├── Iono.vshost.exe.manifest │ │ │ │ └── 卫星轨道数据.txt │ │ ├── obj │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── Iono.Form1.resources │ │ │ │ ├── Iono.Properties.Resources.resources │ │ │ │ ├── Iono.csproj.CoreCompileInputs.cache │ │ │ │ ├── Iono.csproj.FileListAbsolute.txt │ │ │ │ ├── Iono.csproj.GenerateResource.cache │ │ │ │ ├── Iono.csprojAssemblyReference.cache │ │ │ │ ├── Iono.exe │ │ │ │ ├── Iono.pdb │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── Iono.Form1.resources │ │ │ │ ├── Iono.Properties.Resources.resources │ │ │ │ ├── Iono.csproj.FileListAbsolute.txt │ │ │ │ ├── Iono.csproj.GenerateResource.Cache │ │ │ │ ├── Iono.csprojResolveAssemblyReference.cache │ │ │ │ ├── Iono.exe │ │ │ │ ├── Iono.pdb │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ └── sun_32px.ico │ └── 运行程序与数据 │ │ ├── Iono.exe │ │ ├── 卫星轨道数据.txt │ │ └── 计算成果.txt ├── Part1-ch11(课本例程-对流层改正计算) │ ├── .DS_Store │ ├── Trop │ │ ├── .vs │ │ │ └── Trop │ │ │ │ └── v15 │ │ │ │ ├── .suo │ │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ ├── 20150324124913200_easyicon_net_128.ico │ │ ├── Algo.cs │ │ ├── App.config │ │ ├── C.cs │ │ ├── DataEntity.cs │ │ ├── DayTime.cs │ │ ├── EllipsoidModel.cs │ │ ├── FileHelper.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── MiscMath.cs │ │ ├── Point.cs │ │ ├── Position.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Time.cs │ │ ├── TimeSystem.cs │ │ ├── Triple.cs │ │ ├── Trop.csproj │ │ ├── Trop.sln │ │ ├── TropModel.cs │ │ ├── WGS84Ellipsoid.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── Trop.exe │ │ │ │ ├── Trop.exe.config │ │ │ │ ├── Trop.pdb │ │ │ │ ├── Trop.vshost.exe │ │ │ │ ├── Trop.vshost.exe.config │ │ │ │ ├── Trop.vshost.exe.manifest │ │ │ │ └── 坐标信息.txt │ │ │ └── Release │ │ │ │ ├── Trop.exe │ │ │ │ ├── Trop.exe.config │ │ │ │ ├── Trop.pdb │ │ │ │ ├── Trop.vshost.exe │ │ │ │ ├── Trop.vshost.exe.config │ │ │ │ └── Trop.vshost.exe.manifest │ │ └── obj │ │ │ ├── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── Trop.Form1.resources │ │ │ ├── Trop.Properties.Resources.resources │ │ │ ├── Trop.csproj.CoreCompileInputs.cache │ │ │ ├── Trop.csproj.FileListAbsolute.txt │ │ │ ├── Trop.csproj.GenerateResource.cache │ │ │ ├── Trop.csprojAssemblyReference.cache │ │ │ ├── Trop.exe │ │ │ └── Trop.pdb │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── Trop.Form1.resources │ │ │ ├── Trop.Properties.Resources.resources │ │ │ ├── Trop.csproj.FileListAbsolute.txt │ │ │ ├── Trop.csproj.GenerateResource.Cache │ │ │ ├── Trop.csprojResolveAssemblyReference.cache │ │ │ ├── Trop.exe │ │ │ └── Trop.pdb │ └── 运行程序和数据 │ │ ├── Trop.exe │ │ └── 坐标信息.txt ├── 对流层改正计算.pdf ├── 对流层计算数据_坐标信息.txt ├── 电离层改正计算.pdf └── 电离层计算数据_卫星轨道数据.txt ├── 04-纵横断面计算 ├── DuanMian(罗宏昆) │ ├── .vs │ │ └── DuanMian │ │ │ ├── FileContentIndex │ │ │ ├── 110cb694-430b-4951-bd92-a4a509b0c9e2.vsidx │ │ │ └── read.lock │ │ │ ├── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ │ └── v17 │ │ │ └── .suo │ ├── DuanMian.sln │ └── DuanMian │ │ ├── Algorithm.cs │ │ ├── App.config │ │ ├── DataCenter.cs │ │ ├── DuanMian.csproj │ │ ├── FileCenter.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── DuanMian.exe │ │ │ ├── DuanMian.exe.config │ │ │ └── DuanMian.pdb │ │ └── obj │ │ └── Debug │ │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── DuanMian.Form1.resources │ │ ├── DuanMian.Properties.Resources.resources │ │ ├── DuanMian.csproj.AssemblyReference.cache │ │ ├── DuanMian.csproj.CoreCompileInputs.cache │ │ ├── DuanMian.csproj.FileListAbsolute.txt │ │ ├── DuanMian.csproj.GenerateResource.cache │ │ ├── DuanMian.csproj.SuggestedBindingRedirects.cache │ │ ├── DuanMian.exe │ │ ├── DuanMian.pdb │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Part3-ch09(课本例程:纵横断面,有错误,而且是VB) │ ├── .DS_Store │ ├── VB源码 │ │ ├── .DS_Store │ │ ├── Form1.frm │ │ ├── MSSCCPRJ.SCC │ │ ├── Module1.bas │ │ ├── 工程1.suo │ │ ├── 工程1.vbp │ │ └── 工程1.vbw │ └── 可执行文件 │ │ ├── .DS_Store │ │ ├── data.txt │ │ ├── help.pdf │ │ ├── 以M0为中间点内插的平面坐标和高程.txt │ │ ├── 以M1为中间点内插的平面坐标和高程.txt │ │ ├── 内插K1点高程.txt │ │ ├── 坐标方位角计算报告.txt │ │ ├── 工程1.exe │ │ ├── 梯形面积.txt │ │ ├── 横断面中心点坐标.txt │ │ ├── 纵断面的总长度.txt │ │ └── 纵断面计算报告.txt ├── 纵横断面.pdf └── 纵横断面测试数据.txt ├── 05-大地线长度计算 ├── Part2-ch08(课本例程:大地线长度计算) │ ├── .DS_Store │ ├── GeodeticLine │ │ ├── .vs │ │ │ └── geodetic line │ │ │ │ └── v14 │ │ │ │ └── .suo │ │ ├── App.config │ │ ├── Caculate.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── My_Founctions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Report.Designer.cs │ │ ├── Report.cs │ │ ├── Report.resx │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── geodetic line.exe │ │ │ │ ├── geodetic line.exe.config │ │ │ │ ├── geodetic line.pdb │ │ │ │ ├── geodetic line.vshost.exe │ │ │ │ ├── geodetic line.vshost.exe.config │ │ │ │ └── geodetic line.vshost.exe.manifest │ │ ├── geodetic line.csproj │ │ └── obj │ │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── geodetic line.csproj.FileListAbsolute.txt │ │ │ ├── geodetic line.csproj.GenerateResource.Cache │ │ │ ├── geodetic line.csprojResolveAssemblyReference.cache │ │ │ ├── geodetic line.exe │ │ │ ├── geodetic line.pdb │ │ │ ├── geodetic_line.Form1.resources │ │ │ ├── geodetic_line.Properties.Resources.resources │ │ │ └── geodetic_line.Report.resources │ ├── geodetic line.sln │ └── 运行程序与数据 │ │ ├── geodeticline.exe │ │ ├── 测试.txt │ │ └── 输出计算报告.txt ├── 大地线长度计算.pdf └── 大地线长度计算测试数据.txt ├── 06-曲线拟合 ├── Part3-ch16(课本例程:五点法曲线拟合) │ ├── .DS_Store │ ├── CurveFit │ │ ├── .vs │ │ │ └── CurveFit │ │ │ │ └── v15 │ │ │ │ ├── .suo │ │ │ │ └── Server │ │ │ │ └── sqlite3 │ │ │ │ ├── db.lock │ │ │ │ ├── storage.ide │ │ │ │ ├── storage.ide-shm │ │ │ │ └── storage.ide-wal │ │ ├── CurveFit.sln │ │ └── CurveFit │ │ │ ├── App.config │ │ │ ├── CurveFit.csproj │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── MyCurve.cs │ │ │ ├── MyPoint.cs │ │ │ ├── PointToCurve.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── bin │ │ │ ├── Debug │ │ │ │ ├── CurveFit.exe.config │ │ │ │ ├── CurveFit.pdb │ │ │ │ └── curvefit.exe │ │ │ └── Release │ │ │ │ ├── CurveFit.exe │ │ │ │ ├── CurveFit.exe.config │ │ │ │ └── CurveFit.pdb │ │ │ └── obj │ │ │ ├── Debug │ │ │ ├── CurveFit.Form1.resources │ │ │ ├── CurveFit.Properties.Resources.resources │ │ │ ├── CurveFit.csproj.CoreCompileInputs.cache │ │ │ ├── CurveFit.csproj.FileListAbsolute.txt │ │ │ ├── CurveFit.csproj.GenerateResource.cache │ │ │ ├── CurveFit.csprojAssemblyReference.cache │ │ │ ├── CurveFit.pdb │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── curvefit.exe │ │ │ └── Release │ │ │ ├── CurveFit.Form1.resources │ │ │ ├── CurveFit.Properties.Resources.resources │ │ │ ├── CurveFit.csproj.CoreCompileInputs.cache │ │ │ ├── CurveFit.csproj.FileListAbsolute.txt │ │ │ ├── CurveFit.csproj.GenerateResource.cache │ │ │ ├── CurveFit.csprojAssemblyReference.cache │ │ │ ├── CurveFit.exe │ │ │ ├── CurveFit.pdb │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── 数据与可执行程序 │ │ ├── CurveFit.exe │ │ └── 测试数据.txt ├── 五点法曲线拟合.pdf └── 五点法曲线拟合测试数据.txt ├── 2022国赛李贵程-李郑骁-纵横断面(国一) ├── P2022 │ ├── result.txt │ ├── 可执行文件 │ │ ├── 纵横断面.exe │ │ ├── 纵横断面.exe.config │ │ ├── 纵横断面.pdb │ │ ├── 纵横断面.vshost.exe │ │ ├── 纵横断面.vshost.exe.config │ │ └── 纵横断面.vshost.exe.manifest │ ├── 开发文档.pdf │ ├── 成果图形.jpg │ ├── 源码文件 │ │ └── 纵横断面 │ │ │ ├── .vs │ │ │ └── 纵横断面 │ │ │ │ └── v14 │ │ │ │ └── .suo │ │ │ ├── 纵横断面.sln │ │ │ └── 纵横断面 │ │ │ ├── Algorithm.cs │ │ │ ├── App.config │ │ │ ├── Bitmap1.bmp │ │ │ ├── Bitmap2.bmp │ │ │ ├── Bitmap3.bmp │ │ │ ├── Bitmap4.bmp │ │ │ ├── ClassDiagram1.cd │ │ │ ├── DataCenter.cs │ │ │ ├── Draw.cs │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Icon1.ico │ │ │ ├── Point.cs │ │ │ ├── PrioFile.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── 纵横断面.exe │ │ │ │ ├── 纵横断面.exe.config │ │ │ │ ├── 纵横断面.pdb │ │ │ │ ├── 纵横断面.vshost.exe │ │ │ │ ├── 纵横断面.vshost.exe.config │ │ │ │ └── 纵横断面.vshost.exe.manifest │ │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── 纵横断面.Form1.resources │ │ │ │ ├── 纵横断面.Properties.Resources.resources │ │ │ │ ├── 纵横断面.csproj.FileListAbsolute.txt │ │ │ │ ├── 纵横断面.csproj.GenerateResource.Cache │ │ │ │ ├── 纵横断面.csprojResolveAssemblyReference.cache │ │ │ │ ├── 纵横断面.exe │ │ │ │ └── 纵横断面.pdb │ │ │ └── 纵横断面.csproj │ └── 程序正确性【模板】.xls └── 国赛题目.rar ├── 2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二) ├── 利用构建不规则三角网(TIN)进行体积计算 │ ├── .vs │ │ └── 利用构建不规则三角网(TIN)进行体积计算 │ │ │ ├── FileContentIndex │ │ │ ├── a6eaaffa-2842-455e-a158-b8c3772e1362.vsidx │ │ │ └── read.lock │ │ │ ├── v14 │ │ │ └── .suo │ │ │ └── v17 │ │ │ └── .suo │ ├── 利用构建不规则三角网(TIN)进行体积计算.sln │ └── 利用构建不规则三角网(TIN)进行体积计算 │ │ ├── App.config │ │ ├── Convex.cs │ │ ├── CreatTin.cs │ │ ├── Datacenter.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── PointF.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.exe │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.exe.config │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.pdb │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.vshost.exe │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.vshost.exe.config │ │ │ └── 利用构建不规则三角网(TIN)进行体积计算.vshost.exe.manifest │ │ ├── obj │ │ └── Debug │ │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── 利用构建不规则三角网_TIN_进行体积计算.Form1.resources │ │ │ ├── 利用构建不规则三角网_TIN_进行体积计算.Properties.Resources.resources │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.csproj.AssemblyReference.cache │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.csproj.CoreCompileInputs.cache │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.csproj.FileListAbsolute.txt │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.csproj.GenerateResource.cache │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.csprojResolveAssemblyReference.cache │ │ │ ├── 利用构建不规则三角网(TIN)进行体积计算.exe │ │ │ └── 利用构建不规则三角网(TIN)进行体积计算.pdb │ │ └── 利用构建不规则三角网(TIN)进行体积计算.csproj ├── 开发文档.pdf └── 计算结果.txt ├── 2023国赛李郑骁-激光点云数据的平面分割(没拿奖) ├── P2023 │ ├── result.txt │ ├── 可执行文件 │ │ └── 点云处理.exe │ └── 源码文件 │ │ └── 点云处理 │ │ ├── .vs │ │ └── 点云处理 │ │ │ └── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ ├── 点云处理.sln │ │ └── 点云处理 │ │ ├── .vs │ │ └── 点云处理 │ │ │ └── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ ├── App.config │ │ ├── Cal.cs │ │ ├── DataCenter.cs │ │ ├── FileHelper.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── 点云处理.exe │ │ │ ├── 点云处理.exe.config │ │ │ └── 点云处理.pdb │ │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── 点云处理.Form1.resources │ │ │ ├── 点云处理.Properties.Resources.resources │ │ │ ├── 点云处理.csproj.CoreCompileInputs.cache │ │ │ ├── 点云处理.csproj.FileListAbsolute.txt │ │ │ ├── 点云处理.csproj.GenerateResource.cache │ │ │ ├── 点云处理.csprojAssemblyReference.cache │ │ │ ├── 点云处理.exe │ │ │ └── 点云处理.pdb │ │ ├── 点云处理.csproj │ │ ├── 点云处理.sln │ │ └── 点云处理 │ │ ├── App.config │ │ ├── Cal.cs │ │ ├── DataCenter.cs │ │ ├── FileHelper.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── 点云处理.exe │ │ │ ├── 点云处理.exe.config │ │ │ └── 点云处理.pdb │ │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── 点云处理.Form1.resources │ │ │ ├── 点云处理.Properties.Resources.resources │ │ │ ├── 点云处理.csproj.CoreCompileInputs.cache │ │ │ ├── 点云处理.csproj.FileListAbsolute.txt │ │ │ ├── 点云处理.csproj.GenerateResource.cache │ │ │ ├── 点云处理.csprojAssemblyReference.cache │ │ │ ├── 点云处理.exe │ │ │ └── 点云处理.pdb │ │ └── 点云处理.csproj ├── 正式数据.txt └── 激光点云数据的平面分割.pdf ├── 2024年全国大学生测绘学科创新创业智能大赛一号通知附件.pdf ├── 2024年全国大学生测绘学科创新创业智能大赛一号通知附件(6,10-12).docx ├── 2024年程序设计比赛选题及说明.png ├── README.md ├── 李英冰讲解PPT(23年).pptx └── 赛前日程安排.png /01-空间数据探索性分析/误差椭圆、空间权重矩阵、常用空间自相关指数的含义.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/01-空间数据探索性分析/误差椭圆、空间权重矩阵、常用空间自相关指数的含义.md -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/.DS_Store -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/.DS_Store -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "双像空间前方交会", "双像空间前方交会\双像空间前方交会.csproj", "{04D7979E-8A66-46FF-A5E5-B81252F43D92}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {04D7979E-8A66-46FF-A5E5-B81252F43D92}.Debug|x86.ActiveCfg = Debug|x86 13 | {04D7979E-8A66-46FF-A5E5-B81252F43D92}.Debug|x86.Build.0 = Debug|x86 14 | {04D7979E-8A66-46FF-A5E5-B81252F43D92}.Release|x86.ActiveCfg = Release|x86 15 | {04D7979E-8A66-46FF-A5E5-B81252F43D92}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会.suo -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/.DS_Store -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace 双像空间前方交会 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// 应用程序的主入口点。 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("双像空间前方交会")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("双像空间前方交会")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("3ad83d02-78b3-4d93-bb65-d1929081fe49")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/.DS_Store -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/Debug/双像空间前方交会.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/Debug/双像空间前方交会.exe -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/Debug/双像空间前方交会.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/Debug/双像空间前方交会.pdb -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/Debug/双像空间前方交会.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/Debug/双像空间前方交会.vshost.exe -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/bin/Debug/双像空间前方交会.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.Form1.resources -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.Properties.Resources.resources -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.exe -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/SpaceFowardIntersection/双像空间前方交会/obj/x86/Debug/双像空间前方交会.pdb -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/测试数据(放到D盘根目录)/SpaceFowardIntersection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/测试数据(放到D盘根目录)/SpaceFowardIntersection.exe -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/测试数据(放到D盘根目录)/bhl1.txt: -------------------------------------------------------------------------------- 1 | -6911.427876 2 | 4181.15686125969 3 | 157.7731874 4 | 0.348309888 5 | -0.309135767 6 | 0.081363007 7 | -2.9949326 8 | 98.313214 9 | -165.370335 10 | -6922.011458 11 | 4203.665077 12 | 151.6220453 13 | 0.382310345 14 | -0.335320345 15 | 0.082770169 16 | 115.30009 17 | 106.807568 18 | -165.370335 -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/测试数据(放到D盘根目录)/测试数据说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/Part2-ch02(课本例程:空间前方交会,有错误)/测试数据(放到D盘根目录)/测试数据说明.txt -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/.suo -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/.vs/QianFangJiaoHui/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.33529.398 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QianFangJiaoHui", "QianFangJiaoHui\QianFangJiaoHui.csproj", "{3492BFEA-EEDA-45B8-93E1-5A09F62DE091}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3492BFEA-EEDA-45B8-93E1-5A09F62DE091}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3492BFEA-EEDA-45B8-93E1-5A09F62DE091}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3492BFEA-EEDA-45B8-93E1-5A09F62DE091}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3492BFEA-EEDA-45B8-93E1-5A09F62DE091}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D38BE44D-C771-4711-AC80-9FFBA958B220} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/DataCenter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace QianFangJiaoHui 8 | { 9 | class DataCenter 10 | { 11 | 12 | public List f = new List(); 13 | public List x = new List(); 14 | public List y = new List(); 15 | public List Xs = new List(); 16 | public List Ys = new List(); 17 | public List Zs = new List(); 18 | public List phi = new List(); 19 | public List omega = new List(); 20 | public List k = new List(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace QianFangJiaoHui 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("QianFangJiaoHui")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("QianFangJiaoHui")] 13 | [assembly: AssemblyCopyright("Copyright © 2023")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("3492bfea-eeda-45b8-93e1-5a09f62de091")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace QianFangJiaoHui.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/bin/Debug/QianFangJiaoHui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/bin/Debug/QianFangJiaoHui.exe -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/bin/Debug/QianFangJiaoHui.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/bin/Debug/QianFangJiaoHui.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/bin/Debug/QianFangJiaoHui.pdb -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.Form1.resources -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.Properties.Resources.resources -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 26359bd92a5bb4ef91ec0a181466f06295cfd828 2 | -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.exe -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/QianFangJiaoHui.pdb -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/QianFangJiaoHui(罗宏昆)/QianFangJiaoHui/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/空间前方交会.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/02-遥感图像空间前方交会计算/空间前方交会.pdf -------------------------------------------------------------------------------- /02-遥感图像空间前方交会计算/空间前方交会测试数据.txt: -------------------------------------------------------------------------------- 1 | -6911.427876 2 | 4181.15686125969 3 | 157.7731874 4 | 0.348309888 5 | -0.309135767 6 | 0.081363007 7 | -2.9949326 8 | 98.313214 9 | -165.370335 10 | -6922.011458 11 | 4203.665077 12 | 151.6220453 13 | 0.382310345 14 | -0.335320345 15 | 0.082770169 16 | 115.30009 17 | 106.807568 18 | -165.370335 -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/.vs/Iono/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/.vs/Iono/v15/.suo -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/.vs/Iono/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/.vs/Iono/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/.vs/Iono/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/.vs/Iono/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/.vs/Iono/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/.vs/Iono/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/DataEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Iono 8 | { 9 | class DataEntity 10 | { 11 | public Time Time; 12 | public List Data; 13 | 14 | public DataEntity() 15 | { 16 | Time=new Time(2017,7,26); 17 | Data=new List(); 18 | } 19 | 20 | public override string ToString() 21 | { 22 | string line = Time.ToYmdHmsString()+"\r\n"; 23 | foreach (var d in Data) 24 | { 25 | line += d.ToString() + "\r\n"; 26 | } 27 | return line; 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/DayTime.cs: -------------------------------------------------------------------------------- 1 | namespace Iono 2 | { 3 | public class DayTime 4 | { 5 | enum TimeType 6 | { 7 | MJD, 8 | ANSITime, 9 | CivilTime, 10 | Epoch, 11 | SystemTime, 12 | UnixTime, 13 | YDSTime, 14 | JulianDate, 15 | GPSZcount, 16 | Week, 17 | GPSWeek, 18 | WeekSecond, 19 | BDSWeekSecond, 20 | GALWeekSecond, 21 | GPSWeekSecond, 22 | QZSWeekSecond 23 | } 24 | double _values; 25 | TimeSystem System { get; set; } 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/Iono.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2036 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Iono", "Iono.csproj", "{03BBD586-B837-41BA-9AB6-225E8C8DD9E3}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {03BBD586-B837-41BA-9AB6-225E8C8DD9E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {03BBD586-B837-41BA-9AB6-225E8C8DD9E3}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {03BBD586-B837-41BA-9AB6-225E8C8DD9E3}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {03BBD586-B837-41BA-9AB6-225E8C8DD9E3}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {DB58022A-9268-41DF-8AEF-D686BA16B846} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/Point.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Iono 8 | { 9 | class Point 10 | { 11 | public string Id; 12 | public double X; 13 | public double Y; 14 | public double Z; 15 | 16 | //卫星标识(第1-3列)、x-坐标(第4-17列,以km为单位)、 17 | //y-坐标(第18-31列,以km为单位)、z-坐标(第32-45列,以km为单位)。 18 | public void Parse(string line) 19 | { 20 | Id = line.Substring(0, 3); 21 | X = Convert.ToDouble(line.Substring(3, 14)) * 1000; 22 | Y = Convert.ToDouble(line.Substring(17, 14)) * 1000; 23 | Z = Convert.ToDouble(line.Substring(31, 14)) * 1000; 24 | } 25 | 26 | public override string ToString() 27 | { 28 | string line = $"{Id},{X},{Y},{Z}"; 29 | return line; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace Iono 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("Iono")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Iono")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | //将 ComVisible 设置为 false 将使此程序集中的类型 18 | //对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("03bbd586-b837-41ba-9ab6-225e8c8dd9e3")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Iono.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.pdb -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.vshost.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Debug/Iono.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.pdb -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.vshost.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/bin/Release/Iono.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.Form1.resources -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.Properties.Resources.resources -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5093249bc021e81dd575608a76a4477286f87f80 2 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/Iono.pdb -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.Form1.resources -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.Properties.Resources.resources -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\PGM\PGM2017\BookCode\Iono\bin\Release\Iono.exe.config 2 | D:\PGM\PGM2017\BookCode\Iono\bin\Release\Iono.exe 3 | D:\PGM\PGM2017\BookCode\Iono\bin\Release\Iono.pdb 4 | D:\PGM\PGM2017\BookCode\Iono\obj\Release\Iono.Form1.resources 5 | D:\PGM\PGM2017\BookCode\Iono\obj\Release\Iono.Properties.Resources.resources 6 | D:\PGM\PGM2017\BookCode\Iono\obj\Release\Iono.csproj.GenerateResource.Cache 7 | D:\PGM\PGM2017\BookCode\Iono\obj\Release\Iono.exe 8 | D:\PGM\PGM2017\BookCode\Iono\obj\Release\Iono.pdb 9 | D:\PGM\PGM2017\BookCode\Iono\obj\Release\Iono.csprojResolveAssemblyReference.cache 10 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/Iono.pdb -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/sun_32px.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/Iono/sun_32px.ico -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/运行程序与数据/Iono.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch10(课本例程-电离层改正计算)/运行程序与数据/Iono.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/.DS_Store -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/.vs/Trop/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/.vs/Trop/v15/.suo -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/.vs/Trop/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/.vs/Trop/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/.vs/Trop/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/.vs/Trop/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/.vs/Trop/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/.vs/Trop/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/20150324124913200_easyicon_net_128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/20150324124913200_easyicon_net_128.ico -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/DataEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Trop 8 | { 9 | class DataEntity 10 | { 11 | public List Data; 12 | 13 | public DataEntity() 14 | { 15 | Data=new List(); 16 | } 17 | public DataEntity(List data) 18 | { 19 | Data = data; 20 | } 21 | 22 | public void Add(Point pt ) 23 | { 24 | Data.Add(pt); 25 | } 26 | 27 | public override string ToString() 28 | { 29 | string line = "测站,年,年积日, 经度(°),纬度(°),大地高(m),,高度角(°)\n"; 30 | foreach (var d in Data) 31 | { 32 | line += d.ToString() + "\n"; 33 | } 34 | return line; 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/DayTime.cs: -------------------------------------------------------------------------------- 1 | namespace Trop 2 | { 3 | public class DayTime 4 | { 5 | enum TimeType 6 | { 7 | MJD, 8 | ANSITime, 9 | CivilTime, 10 | Epoch, 11 | SystemTime, 12 | UnixTime, 13 | YDSTime, 14 | JulianDate, 15 | GPSZcount, 16 | Week, 17 | GPSWeek, 18 | WeekSecond, 19 | BDSWeekSecond, 20 | GALWeekSecond, 21 | GPSWeekSecond, 22 | QZSWeekSecond 23 | } 24 | double _values; 25 | TimeSystem System { get; set; } 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace Trop 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("Trop")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Trop")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | //将 ComVisible 设置为 false 将使此程序集中的类型 18 | //对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("1a491605-adc3-408a-b5c9-90b590898f10")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Trop.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/Trop.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2050 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Trop", "Trop.csproj", "{1A491605-ADC3-408A-B5C9-90B590898F10}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {1A491605-ADC3-408A-B5C9-90B590898F10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {1A491605-ADC3-408A-B5C9-90B590898F10}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {1A491605-ADC3-408A-B5C9-90B590898F10}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {1A491605-ADC3-408A-B5C9-90B590898F10}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {3CF15122-8219-42EE-8510-5E92810859F0} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.pdb -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.vshost.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/Trop.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/坐标信息.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Debug/坐标信息.txt -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.pdb -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.vshost.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/bin/Release/Trop.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.Form1.resources -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.Properties.Resources.resources -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 57cb14f1ea4be147836be44f76efae3f9a25f9be 2 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\PGM\PGM2017\BookCode\Trop\bin\Debug\Trop.exe.config 2 | D:\PGM\PGM2017\BookCode\Trop\obj\Debug\Trop.Form1.resources 3 | D:\PGM\PGM2017\BookCode\Trop\obj\Debug\Trop.Properties.Resources.resources 4 | D:\PGM\PGM2017\BookCode\Trop\obj\Debug\Trop.csproj.GenerateResource.Cache 5 | D:\PGM\PGM2017\BookCode\Trop\bin\Debug\Trop.exe 6 | D:\PGM\PGM2017\BookCode\Trop\bin\Debug\Trop.pdb 7 | D:\PGM\PGM2017\BookCode\Trop\obj\Debug\Trop.exe 8 | D:\PGM\PGM2017\BookCode\Trop\obj\Debug\Trop.pdb 9 | Y:\Home\PGM\PGM2019\Trop\bin\Debug\Trop.exe.config 10 | Y:\Home\PGM\PGM2019\Trop\bin\Debug\Trop.exe 11 | Y:\Home\PGM\PGM2019\Trop\bin\Debug\Trop.pdb 12 | Y:\Home\PGM\PGM2019\Trop\obj\Debug\Trop.csprojAssemblyReference.cache 13 | Y:\Home\PGM\PGM2019\Trop\obj\Debug\Trop.Form1.resources 14 | Y:\Home\PGM\PGM2019\Trop\obj\Debug\Trop.Properties.Resources.resources 15 | Y:\Home\PGM\PGM2019\Trop\obj\Debug\Trop.csproj.GenerateResource.cache 16 | Y:\Home\PGM\PGM2019\Trop\obj\Debug\Trop.csproj.CoreCompileInputs.cache 17 | Y:\Home\PGM\PGM2019\Trop\obj\Debug\Trop.exe 18 | Y:\Home\PGM\PGM2019\Trop\obj\Debug\Trop.pdb 19 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Debug/Trop.pdb -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.Form1.resources -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.Properties.Resources.resources -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\PGM\PGM2017\BookCode\Trop\bin\Release\Trop.exe.config 2 | D:\PGM\PGM2017\BookCode\Trop\bin\Release\Trop.exe 3 | D:\PGM\PGM2017\BookCode\Trop\bin\Release\Trop.pdb 4 | D:\PGM\PGM2017\BookCode\Trop\obj\Release\Trop.csprojResolveAssemblyReference.cache 5 | D:\PGM\PGM2017\BookCode\Trop\obj\Release\Trop.Form1.resources 6 | D:\PGM\PGM2017\BookCode\Trop\obj\Release\Trop.Properties.Resources.resources 7 | D:\PGM\PGM2017\BookCode\Trop\obj\Release\Trop.csproj.GenerateResource.Cache 8 | D:\PGM\PGM2017\BookCode\Trop\obj\Release\Trop.exe 9 | D:\PGM\PGM2017\BookCode\Trop\obj\Release\Trop.pdb 10 | -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/Trop/obj/Release/Trop.pdb -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/运行程序和数据/Trop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/运行程序和数据/Trop.exe -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/运行程序和数据/坐标信息.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/Part1-ch11(课本例程-对流层改正计算)/运行程序和数据/坐标信息.txt -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/对流层改正计算.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/对流层改正计算.pdf -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/对流层计算数据_坐标信息.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/对流层计算数据_坐标信息.txt -------------------------------------------------------------------------------- /03-GNSS空间大气改正计算/电离层改正计算.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/03-GNSS空间大气改正计算/电离层改正计算.pdf -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/FileContentIndex/110cb694-430b-4951-bd92-a4a509b0c9e2.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/FileContentIndex/110cb694-430b-4951-bd92-a4a509b0c9e2.vsidx -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/FileContentIndex/read.lock -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/.suo -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/.vs/DuanMian/v17/.suo -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.33529.398 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DuanMian", "DuanMian\DuanMian.csproj", "{8D24104A-73D2-46B8-BC17-1EA074D81C3E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8D24104A-73D2-46B8-BC17-1EA074D81C3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8D24104A-73D2-46B8-BC17-1EA074D81C3E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8D24104A-73D2-46B8-BC17-1EA074D81C3E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8D24104A-73D2-46B8-BC17-1EA074D81C3E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {33BC5AAC-904B-4460-9CFF-5B04AB4918FD} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/DataCenter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace DuanMian 8 | { 9 | class DataCenter 10 | { 11 | public double H0; 12 | public List pointName = new List(); 13 | public List x = new List(); 14 | public List y = new List(); 15 | public List z = new List(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace DuanMian 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("DuanMian")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DuanMian")] 13 | [assembly: AssemblyCopyright("Copyright © 2023")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("8d24104a-73d2-46b8-bc17-1ea074d81c3e")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace DuanMian.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.5.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/bin/Debug/DuanMian.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/bin/Debug/DuanMian.exe -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/bin/Debug/DuanMian.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/bin/Debug/DuanMian.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/bin/Debug/DuanMian.pdb -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] 5 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.Form1.resources -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.Properties.Resources.resources -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0fbb84554c3640e95cf766be1a00aaa4dba058f7 2 | -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.exe -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/DuanMian.pdb -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/DuanMian(罗宏昆)/DuanMian/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/.DS_Store -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/.DS_Store -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/Form1.frm -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/Module1.bas -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/工程1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/工程1.suo -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/工程1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/工程1.vbp -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/VB源码/工程1.vbw: -------------------------------------------------------------------------------- 1 | Form1 = 78, 78, 1064, 390, , 26, 26, 594, 453, C 2 | Module1 = 78, 206, 1012, 616, Z 3 | -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/.DS_Store -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/help.pdf -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/以M0为中间点内插的平面坐标和高程.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/以M0为中间点内插的平面坐标和高程.txt -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/以M1为中间点内插的平面坐标和高程.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/以M1为中间点内插的平面坐标和高程.txt -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/内插K1点高程.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/内插K1点高程.txt -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/坐标方位角计算报告.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/坐标方位角计算报告.txt -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/工程1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/工程1.exe -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/梯形面积.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/梯形面积.txt -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/横断面中心点坐标.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/横断面中心点坐标.txt -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/纵断面的总长度.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/纵断面的总长度.txt -------------------------------------------------------------------------------- /04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/纵断面计算报告.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/Part3-ch09(课本例程:纵横断面,有错误,而且是VB)/可执行文件/纵断面计算报告.txt -------------------------------------------------------------------------------- /04-纵横断面计算/纵横断面.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/04-纵横断面计算/纵横断面.pdf -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/.DS_Store -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/.vs/geodetic line/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/.vs/geodetic line/v14/.suo -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace geodetic_line 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("geodetic line")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("geodetic line")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | //将 ComVisible 设置为 false 将使此程序集中的类型 18 | //对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("607ca7e1-6b3d-4b6f-9bd8-ecae1f029301")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace geodetic_line.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/Report.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace geodetic_line 12 | { 13 | public partial class Report : Form 14 | { 15 | public Report() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void Report_Load(object sender, EventArgs e) 21 | { 22 | richTextBox1.Text = Form1.report; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.exe -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.pdb -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.vshost.exe -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/bin/Debug/geodetic line.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\bin\Debug\geodetic line.exe.config 2 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\bin\Debug\geodetic line.exe 3 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\bin\Debug\geodetic line.pdb 4 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\obj\Debug\geodetic line.csprojResolveAssemblyReference.cache 5 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\obj\Debug\geodetic_line.Form1.resources 6 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\obj\Debug\geodetic_line.Properties.Resources.resources 7 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\obj\Debug\geodetic_line.Report.resources 8 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\obj\Debug\geodetic line.csproj.GenerateResource.Cache 9 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\obj\Debug\geodetic line.exe 10 | C:\Users\Administrator\Desktop\坐标与大地线\geodetic line\geodetic line\obj\Debug\geodetic line.pdb 11 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.exe -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic line.pdb -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic_line.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic_line.Form1.resources -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic_line.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic_line.Properties.Resources.resources -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic_line.Report.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/GeodeticLine/obj/Debug/geodetic_line.Report.resources -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/geodetic line.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "geodetic line", "geodetic line\geodetic line.csproj", "{607CA7E1-6B3D-4B6F-9BD8-ECAE1F029301}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {607CA7E1-6B3D-4B6F-9BD8-ECAE1F029301}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {607CA7E1-6B3D-4B6F-9BD8-ECAE1F029301}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {607CA7E1-6B3D-4B6F-9BD8-ECAE1F029301}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {607CA7E1-6B3D-4B6F-9BD8-ECAE1F029301}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/运行程序与数据/geodeticline.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/运行程序与数据/geodeticline.exe -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/运行程序与数据/测试.txt: -------------------------------------------------------------------------------- 1 | 53.03490680 89.50573360 2 | 54.12173880 89.26522960 -------------------------------------------------------------------------------- /05-大地线长度计算/Part2-ch08(课本例程:大地线长度计算)/运行程序与数据/输出计算报告.txt: -------------------------------------------------------------------------------- 1 | 计算报告 2 | 克拉索夫斯基椭球 3 | P1点坐标(°):35 90 B/L 4 | P2点坐标(°):-30 216 B/L 5 | -------------------------结果----------------------------- 6 | 大地线长(m):14982158.4674 7 | 8 | -------------------------------------------------------------------------------- /05-大地线长度计算/大地线长度计算.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/05-大地线长度计算/大地线长度计算.pdf -------------------------------------------------------------------------------- /05-大地线长度计算/大地线长度计算测试数据.txt: -------------------------------------------------------------------------------- 1 | 53.03490680 89.50573360 2 | 54.12173880 89.26522960 -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/.DS_Store -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/.suo -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/.vs/CurveFit/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2026 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CurveFit", "CurveFit\CurveFit.csproj", "{EED5D56D-F88C-4D14-AB58-BCB0629DB53E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {EED5D56D-F88C-4D14-AB58-BCB0629DB53E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {EED5D56D-F88C-4D14-AB58-BCB0629DB53E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {EED5D56D-F88C-4D14-AB58-BCB0629DB53E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {EED5D56D-F88C-4D14-AB58-BCB0629DB53E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D4D31388-3F4B-4AE6-B6FF-B48FC7D77506} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/MyCurve.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CurveFit 8 | { 9 | public class MyCurve 10 | { 11 | #region 12 | //曲线表示方法说明 13 | //x=p0+p1*z+p2*z*z+p3*z*z*z 14 | //y=q0+q1*z+q2*z*z+q3*z*z*z 15 | //其中z为两点之间的弦长变量[0,1] 16 | #endregion 17 | 18 | public double p0, p1, p2, p3; 19 | public double q0, q1, q2, q3; 20 | public MyPoint mypoint_start; 21 | public MyPoint mypoint_end; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/MyPoint.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace CurveFit 8 | { 9 | public class MyPoint 10 | { 11 | public string ID; 12 | public double x; 13 | public double y; 14 | 15 | public MyPoint () 16 | { 17 | 18 | } 19 | 20 | public MyPoint(string id,double x,double y) 21 | { 22 | this.ID = id; 23 | this.x = x; 24 | this.y = y; 25 | } 26 | 27 | public double distance(MyPoint po) 28 | { 29 | double result = (po.x - x) * (po.x - x) + (po.y - y) * (po.y - y); 30 | result = Math.Sqrt(result); 31 | return result; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace CurveFit 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("CurveFit")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("CurveFit")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("eed5d56d-f88c-4d14-ab58-bcb0629db53e")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace CurveFit.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Debug/CurveFit.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Debug/CurveFit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Debug/CurveFit.pdb -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Debug/curvefit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Debug/curvefit.exe -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Release/CurveFit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Release/CurveFit.exe -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Release/CurveFit.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Release/CurveFit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/bin/Release/CurveFit.pdb -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.Form1.resources -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.Properties.Resources.resources -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ba7dc98bd34e9dec7b73dd17c98149f678ab73de 2 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\bin\Debug\CurveFit.exe.config 2 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\bin\Debug\CurveFit.exe 3 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\bin\Debug\CurveFit.pdb 4 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Debug\CurveFit.csprojAssemblyReference.cache 5 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Debug\CurveFit.Form1.resources 6 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Debug\CurveFit.Properties.Resources.resources 7 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Debug\CurveFit.csproj.GenerateResource.cache 8 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Debug\CurveFit.csproj.CoreCompileInputs.cache 9 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Debug\CurveFit.exe 10 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Debug\CurveFit.pdb 11 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/CurveFit.pdb -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/curvefit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Debug/curvefit.exe -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.Form1.resources -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.Properties.Resources.resources -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ba7dc98bd34e9dec7b73dd17c98149f678ab73de 2 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\bin\Release\CurveFit.exe.config 2 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\bin\Release\CurveFit.exe 3 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\bin\Release\CurveFit.pdb 4 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Release\CurveFit.csprojAssemblyReference.cache 5 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Release\CurveFit.Form1.resources 6 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Release\CurveFit.Properties.Resources.resources 7 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Release\CurveFit.csproj.GenerateResource.cache 8 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Release\CurveFit.csproj.CoreCompileInputs.cache 9 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Release\CurveFit.exe 10 | \\Mac\Home\Desktop\项目\测量程序设计_曲线拟合\CurveFit\CurveFit\obj\Release\CurveFit.pdb 11 | -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.exe -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/CurveFit.pdb -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/CurveFit/CurveFit/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/数据与可执行程序/CurveFit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/数据与可执行程序/CurveFit.exe -------------------------------------------------------------------------------- /06-曲线拟合/Part3-ch16(课本例程:五点法曲线拟合)/数据与可执行程序/测试数据.txt: -------------------------------------------------------------------------------- 1 | 0,1,1 2 | 1,1.841071976,-1.724307355 3 | 2,3.96379461,-4.037030357 4 | 3,7.152611963,-5.227522169 5 | 4,10.7240874,-3.824442533 6 | 5,12.72241294,-1.273388651 7 | 6,13.06255346,2.553192172 8 | 7,15.99626542,5.486904137 9 | 8,19.73781112,7.527747243 10 | 9,17.2292748,11.18425781 11 | 10,13.19010615,10.88663485 12 | 11,8.938349681,10.16383625 13 | 12,3.538618963,8.122993149 14 | 13,1.242670469,4.423965019 -------------------------------------------------------------------------------- /06-曲线拟合/五点法曲线拟合.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/06-曲线拟合/五点法曲线拟合.pdf -------------------------------------------------------------------------------- /06-曲线拟合/五点法曲线拟合测试数据.txt: -------------------------------------------------------------------------------- 1 | 0,1,1 2 | 1,1.841071976,-1.724307355 3 | 2,3.96379461,-4.037030357 4 | 3,7.152611963,-5.227522169 5 | 4,10.7240874,-3.824442533 6 | 5,12.72241294,-1.273388651 7 | 6,13.06255346,2.553192172 8 | 7,15.99626542,5.486904137 9 | 8,19.73781112,7.527747243 10 | 9,17.2292748,11.18425781 11 | 10,13.19010615,10.88663485 12 | 11,8.938349681,10.16383625 13 | 12,3.538618963,8.122993149 14 | 13,1.242670469,4.423965019 -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/result.txt -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.exe -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.pdb -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.vshost.exe -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/可执行文件/纵横断面.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/开发文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/开发文档.pdf -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/成果图形.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/成果图形.jpg -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/.vs/纵横断面/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/.vs/纵横断面/v14/.suo -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "纵横断面", "纵横断面\纵横断面.csproj", "{079AEA50-6CA9-4825-959F-B335CC72D5B1}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {079AEA50-6CA9-4825-959F-B335CC72D5B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {079AEA50-6CA9-4825-959F-B335CC72D5B1}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {079AEA50-6CA9-4825-959F-B335CC72D5B1}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {079AEA50-6CA9-4825-959F-B335CC72D5B1}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Bitmap1.bmp -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Bitmap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Bitmap2.bmp -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Bitmap3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Bitmap3.bmp -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Bitmap4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Bitmap4.bmp -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | AABAAAAAAAAAAAAAAAAAAAQAAAAAAABAAAAAAEAAYAA= 7 | Point.cs 8 | 9 | 10 | 11 | 12 | 13 | AAIAQAAKAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAA= 14 | PrioFile.cs 15 | 16 | 17 | 18 | 19 | 20 | AgAAAAAAAAAQQAEAAAAAIAIAAAAAAAEIAAAAAAAAAAA= 21 | DataCenter.cs 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/DataCenter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace 纵横断面 8 | { 9 | class DataCenter 10 | { 11 | public List DatumPoints; //已知的K点 12 | public List OriPoints; //所有点包括K点 13 | public List test; //测试点 14 | public List sanPoint; //散点 15 | public List cenPoint; //中心点 16 | 17 | 18 | 19 | public PrioFile Vertical;//纵断面 20 | public List Hozs;//横断面 21 | 22 | public double RDH; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Icon1.ico -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Point.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace 纵横断面 8 | { 9 | class Point 10 | { 11 | public string Name; //点名 12 | public double X; //X坐标值 13 | public double Y; //Y坐标值 14 | public double H; //H坐标值 15 | 16 | public double Distance; //距离 17 | public bool IsDatum; //判断是否为K点 18 | 19 | public Point() 20 | { 21 | IsDatum = false; 22 | } 23 | public Point(double x, double y) 24 | { 25 | this.Name = ""; 26 | this.X = x; 27 | this.Y = y; 28 | } 29 | public Point(string name,double x,double y) 30 | { 31 | Name = name; 32 | X = x; 33 | Y = y; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/PrioFile.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace 纵横断面 8 | { 9 | class PrioFile 10 | { 11 | public Point start; 12 | public Point end; 13 | public double angle; 14 | 15 | 16 | public List totalPoints; //面上所有的点 17 | public Point MiddlePoint;//面上所有的点 18 | 19 | 20 | public double sumS;//断面面积 21 | 22 | public double sumD; //断面的投影长度 23 | 24 | public PrioFile() 25 | { 26 | start = new Point(); 27 | end = new Point(); 28 | totalPoints = new List(); 29 | MiddlePoint = new Point(); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace 纵横断面 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("纵横断面")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("纵横断面")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | //将 ComVisible 设置为 false 将使此程序集中的类型 18 | //对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("079aea50-6ca9-4825-959f-b335cc72d5b1")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace 纵横断面.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.exe -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.pdb -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.vshost.exe -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/bin/Debug/纵横断面.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.Form1.resources -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.Properties.Resources.resources -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\bin\Debug\纵横断面.exe.config 2 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\bin\Debug\纵横断面.exe 3 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\bin\Debug\纵横断面.pdb 4 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\obj\Debug\纵横断面.csprojResolveAssemblyReference.cache 5 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\obj\Debug\纵横断面.Form1.resources 6 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\obj\Debug\纵横断面.Properties.Resources.resources 7 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\obj\Debug\纵横断面.csproj.GenerateResource.Cache 8 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\obj\Debug\纵横断面.exe 9 | d:\backup\documents\visual studio 2015\Projects\纵横断面\纵横断面\obj\Debug\纵横断面.pdb 10 | G:\源码文件\纵横断面\纵横断面\bin\Debug\纵横断面.exe.config 11 | G:\源码文件\纵横断面\纵横断面\obj\Debug\纵横断面.exe 12 | G:\源码文件\纵横断面\纵横断面\obj\Debug\纵横断面.pdb 13 | -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.exe -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/源码文件/纵横断面/纵横断面/obj/Debug/纵横断面.pdb -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/程序正确性【模板】.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/P2022/程序正确性【模板】.xls -------------------------------------------------------------------------------- /2022国赛李贵程-李郑骁-纵横断面(国一)/国赛题目.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022国赛李贵程-李郑骁-纵横断面(国一)/国赛题目.rar -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/.vs/利用构建不规则三角网(TIN)进行体积计算/FileContentIndex/a6eaaffa-2842-455e-a158-b8c3772e1362.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/.vs/利用构建不规则三角网(TIN)进行体积计算/FileContentIndex/a6eaaffa-2842-455e-a158-b8c3772e1362.vsidx -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/.vs/利用构建不规则三角网(TIN)进行体积计算/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/.vs/利用构建不规则三角网(TIN)进行体积计算/FileContentIndex/read.lock -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/.vs/利用构建不规则三角网(TIN)进行体积计算/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/.vs/利用构建不规则三角网(TIN)进行体积计算/v14/.suo -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/.vs/利用构建不规则三角网(TIN)进行体积计算/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/.vs/利用构建不规则三角网(TIN)进行体积计算/v17/.suo -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "利用构建不规则三角网(TIN)进行体积计算", "利用构建不规则三角网(TIN)进行体积计算\利用构建不规则三角网(TIN)进行体积计算.csproj", "{537CA9CB-A6D3-49AE-B0B7-1C79FDD148CB}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {537CA9CB-A6D3-49AE-B0B7-1C79FDD148CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {537CA9CB-A6D3-49AE-B0B7-1C79FDD148CB}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {537CA9CB-A6D3-49AE-B0B7-1C79FDD148CB}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {537CA9CB-A6D3-49AE-B0B7-1C79FDD148CB}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/Datacenter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace 利用构建不规则三角网_TIN_进行体积计算 7 | { 8 | class Datacenter 9 | { 10 | public struct Side 11 | { 12 | public List SP; 13 | } 14 | public struct Triangle 15 | { 16 | public List TP; 17 | public List TS; 18 | } 19 | public List GivenPoints = new List(); 20 | public List FourPeaks = new List(); 21 | public List Convex_Hull = new List(); 22 | public List NoneConvexPoints = new List(); 23 | public List ALLT = new List(); 24 | public double HeightDatum; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/PointF.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace 利用构建不规则三角网_TIN_进行体积计算 7 | { 8 | public class PointF 9 | { 10 | public string Name; 11 | public double X; 12 | public double Y; 13 | public double H; 14 | public PointF() 15 | { 16 | 17 | } 18 | public PointF(String name, double x, double y, double h) 19 | { 20 | this.Name = name; 21 | this.X = x; 22 | this.Y = y; 23 | this.H = h; 24 | } 25 | public PointF(double x,double y) 26 | { 27 | this.X = x; 28 | this.Y = y; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace 利用构建不规则三角网_TIN_进行体积计算 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("利用构建不规则三角网(TIN)进行体积计算")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("利用构建不规则三角网(TIN)进行体积计算")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | //将 ComVisible 设置为 false 将使此程序集中的类型 18 | //对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("537ca9cb-a6d3-49ae-b0b7-1c79fdd148cb")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace 利用构建不规则三角网_TIN_进行体积计算.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.exe -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.pdb -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.vshost.exe -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/bin/Debug/利用构建不规则三角网(TIN)进行体积计算.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网_TIN_进行体积计算.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网_TIN_进行体积计算.Form1.resources -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网_TIN_进行体积计算.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网_TIN_进行体积计算.Properties.Resources.resources -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 825a8f6bc2ec637d4928f0bae455bd628a80a91a 2 | -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.exe -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/利用构建不规则三角网(TIN)进行体积计算/利用构建不规则三角网(TIN)进行体积计算/obj/Debug/利用构建不规则三角网(TIN)进行体积计算.pdb -------------------------------------------------------------------------------- /2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/开发文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2022省赛李贵程-李郑骁-利用构建不规则三角网(TIN)进行体积计算(省二)/开发文档.pdf -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/可执行文件/点云处理.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/可执行文件/点云处理.exe -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/.suo -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.33801.198 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "点云处理", "点云处理\点云处理.csproj", "{F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {AD059B82-1C22-481C-AE4A-CCDFCD52E18D} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/.suo -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/.vs/点云处理/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace 点云处理 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("点云处理")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("点云处理")] 13 | [assembly: AssemblyCopyright("Copyright © 2023")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("f1dd0aa1-2db6-4d74-9951-ae9d901ceb83")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace 点云处理.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/bin/Debug/点云处理.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/bin/Debug/点云处理.exe -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/bin/Debug/点云处理.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/bin/Debug/点云处理.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/bin/Debug/点云处理.pdb -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.Form1.resources -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.Properties.Resources.resources -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | daa0d9a926b0b7a17d1a5be1df5c8d3429152149 2 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\bin\Debug\点云处理.exe.config 2 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\bin\Debug\点云处理.exe 3 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\bin\Debug\点云处理.pdb 4 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.csprojAssemblyReference.cache 5 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.Form1.resources 6 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.Properties.Resources.resources 7 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.csproj.GenerateResource.cache 8 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.csproj.CoreCompileInputs.cache 9 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.exe 10 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.pdb 11 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.exe -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/obj/Debug/点云处理.pdb -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.33801.198 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "点云处理", "点云处理\点云处理.csproj", "{F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F1DD0AA1-2DB6-4D74-9951-AE9D901CEB83}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {AD059B82-1C22-481C-AE4A-CCDFCD52E18D} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace 点云处理 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("点云处理")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("点云处理")] 13 | [assembly: AssemblyCopyright("Copyright © 2023")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("f1dd0aa1-2db6-4d74-9951-ae9d901ceb83")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace 点云处理.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/bin/Debug/点云处理.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/bin/Debug/点云处理.exe -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/bin/Debug/点云处理.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/bin/Debug/点云处理.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/bin/Debug/点云处理.pdb -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.Form1.resources -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.Properties.Resources.resources -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | daa0d9a926b0b7a17d1a5be1df5c8d3429152149 2 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\bin\Debug\点云处理.exe.config 2 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\bin\Debug\点云处理.exe 3 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\bin\Debug\点云处理.pdb 4 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.csprojAssemblyReference.cache 5 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.Form1.resources 6 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.Properties.Resources.resources 7 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.csproj.GenerateResource.cache 8 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.csproj.CoreCompileInputs.cache 9 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.exe 10 | C:\Users\李郑骁的spin5\Documents\Visual Studio 2017\Projects\点云处理\点云处理\obj\Debug\点云处理.pdb 11 | -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.exe -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/P2023/源码文件/点云处理/点云处理/点云处理/obj/Debug/点云处理.pdb -------------------------------------------------------------------------------- /2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/激光点云数据的平面分割.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2023国赛李郑骁-激光点云数据的平面分割(没拿奖)/激光点云数据的平面分割.pdf -------------------------------------------------------------------------------- /2024年全国大学生测绘学科创新创业智能大赛一号通知附件.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2024年全国大学生测绘学科创新创业智能大赛一号通知附件.pdf -------------------------------------------------------------------------------- /2024年全国大学生测绘学科创新创业智能大赛一号通知附件(6,10-12).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2024年全国大学生测绘学科创新创业智能大赛一号通知附件(6,10-12).docx -------------------------------------------------------------------------------- /2024年程序设计比赛选题及说明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/2024年程序设计比赛选题及说明.png -------------------------------------------------------------------------------- /李英冰讲解PPT(23年).pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/李英冰讲解PPT(23年).pptx -------------------------------------------------------------------------------- /赛前日程安排.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casterbn/Geomatics-Program/b7755e58ee3dbdc03296c1aea10f68e507f8ab71/赛前日程安排.png --------------------------------------------------------------------------------