此为资源整理价格,不提供任何技术支持不包安装。新手不要买!

源码仅供研究学习代码使用,严禁用于非法和商业用途!如需商业用途请去购买官方正版源码!

只适用于老手和技术大神!发货后谢绝退款行为!



【实例简介】GribParser:解码Grib格式数据【实例截图】
.├── GribParser-master│   ├── Readme.md│   ├── Resources│   │   └── gfs.t06z.gtg.0p25.f003.grib2│   ├── Skyhop.GribParser│   │   ├── Extensions.cs│   │   ├── FileReader.cs│   │   ├── GribFile.cs│   │   ├── GridDefinitionTemplateAttribute.cs│   │   ├── GridTemplate│   │   │   ├── LatitudeLongitude.cs│   │   │   └── StretchedLatitudeLongitude.cs│   │   ├── Parsers.cs│   │   ├── Properties│   │   │   └── PublishProfiles│   │   │       ├── FolderProfile.pubxml│   │   │       └── FolderProfile.pubxml.user│   │   ├── Record.cs│   │   ├── Sections│   │   │   ├── BitMap.cs│   │   │   ├── Data.cs│   │   │   ├── DataRepresentation.cs│   │   │   ├── End.cs│   │   │   ├── GridDefinition.cs│   │   │   ├── Identification.cs│   │   │   ├── Indicator.cs│   │   │   ├── LocalUse.cs│   │   │   └── ProductDefinition.cs│   │   ├── Skyhop.GribParser.csproj│   │   ├── Skyhop.GribParser.csproj.user│   │   ├── TableValue.cs│   │   ├── Tables│   │   │   ├── DataType.cs│   │   │   ├── Disciplines.cs│   │   │   ├── ProductionStatus.cs│   │   │   ├── ReferenceTimeSignificance.cs│   │   │   └── ShapeReferenceSystem.cs│   │   ├── bin│   │   │   ├── Debug│   │   │   │   └── netstandard2.0│   │   │   │       ├── Skyhop.GribParser.deps.json│   │   │   │       ├── Skyhop.GribParser.dll│   │   │   │       └── Skyhop.GribParser.pdb│   │   │   └── Release│   │   │       └── netstandard2.0│   │   │           ├── Skyhop.GribParser.deps.json│   │   │           ├── Skyhop.GribParser.dll│   │   │           └── Skyhop.GribParser.pdb│   │   └── obj│   │       ├── Debug│   │       │   └── netstandard2.0│   │       │       ├── Skyhop.GribParser.AssemblyInfo.cs│   │       │       ├── Skyhop.GribParser.AssemblyInfoInputs.cache│   │       │       ├── Skyhop.GribParser.GeneratedMSBuildEditorConfig.editorconfig│   │       │       ├── Skyhop.GribParser.assets.cache│   │       │       ├── Skyhop.GribParser.csproj.AssemblyReference.cache│   │       │       ├── Skyhop.GribParser.csproj.CoreCompileInputs.cache│   │       │       ├── Skyhop.GribParser.csproj.FileListAbsolute.txt│   │       │       ├── Skyhop.GribParser.dll│   │       │       └── Skyhop.GribParser.pdb│   │       ├── Release│   │       │   ├── Skyhop.GribParser.1.0.0.nuspec│   │       │   └── netstandard2.0│   │       │       ├── Skyhop.GribParser.AssemblyInfo.cs│   │       │       ├── Skyhop.GribParser.AssemblyInfoInputs.cache│   │       │       ├── Skyhop.GribParser.GeneratedMSBuildEditorConfig.editorconfig│   │       │       ├── Skyhop.GribParser.assets.cache│   │       │       ├── Skyhop.GribParser.csproj.AssemblyReference.cache│   │       │       ├── Skyhop.GribParser.csproj.CoreCompileInputs.cache│   │       │       ├── Skyhop.GribParser.csproj.FileListAbsolute.txt│   │       │       ├── Skyhop.GribParser.dll│   │       │       └── Skyhop.GribParser.pdb│   │       ├── Skyhop.GribParser.csproj.nuget.dgspec.json│   │       ├── Skyhop.GribParser.csproj.nuget.g.props│   │       ├── Skyhop.GribParser.csproj.nuget.g.targets│   │       ├── project.assets.json│   │       └── project.nuget.cache│   ├── Skyhop.GribParser.Test│   │   ├── Common.cs│   │   ├── ParserTests.cs│   │   ├── Skyhop.GribParser.Test.csproj│   │   ├── bin│   │   │   ├── Debug│   │   │   │   └── netcoreapp3.1│   │   │   │       ├── Microsoft.TestPlatform.CommunicationUtilities.dll│   │   │   │       ├── Microsoft.TestPlatform.CoreUtilities.dll│   │   │   │       ├── Microsoft.TestPlatform.CrossPlatEngine.dll│   │   │   │       ├── Microsoft.TestPlatform.PlatformAbstractions.dll│   │   │   │       ├── Microsoft.TestPlatform.Utilities.dll│   │   │   │       ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll│   │   │   │       ├── Microsoft.VisualStudio.TestPlatform.Common.dll│   │   │   │       ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll│   │   │   │       ├── Newtonsoft.Json.dll│   │   │   │       ├── NuGet.Frameworks.dll│   │   │   │       ├── Skyhop.GribParser.Test.deps.json│   │   │   │       ├── Skyhop.GribParser.Test.dll│   │   │   │       ├── Skyhop.GribParser.Test.pdb│   │   │   │       ├── Skyhop.GribParser.Test.runtimeconfig.dev.json│   │   │   │       ├── Skyhop.GribParser.Test.runtimeconfig.json│   │   │   │       ├── Skyhop.GribParser.dll│   │   │   │       ├── Skyhop.GribParser.pdb│   │   │   │       ├── cs│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── de│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── es│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── fr│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── it│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── ja│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── ko│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── pl│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── pt-BR│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── ru│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── testhost.dll│   │   │   │       ├── tr│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       ├── xunit.abstractions.dll│   │   │   │       ├── xunit.assert.dll│   │   │   │       ├── xunit.core.dll│   │   │   │       ├── xunit.execution.dotnet.dll│   │   │   │       ├── xunit.runner.reporters.netcoreapp10.dll│   │   │   │       ├── xunit.runner.utility.netcoreapp10.dll│   │   │   │       ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll│   │   │   │       ├── zh-Hans│   │   │   │       │   ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │       │   ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │       │   ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │       │   └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   │       └── zh-Hant│   │   │   │           ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll│   │   │   │           ├── Microsoft.TestPlatform.CoreUtilities.resources.dll│   │   │   │           ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll│   │   │   │           ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll│   │   │   │           └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll│   │   │   └── Release│   │   │       └── netcoreapp3.1│   │   └── obj│   │       ├── Debug│   │       │   └── netcoreapp3.1│   │       │       ├── Skyhop.GribParser.Test.AssemblyInfo.cs│   │       │       ├── Skyhop.GribParser.Test.AssemblyInfoInputs.cache│   │       │       ├── Skyhop.GribParser.Test.GeneratedMSBuildEditorConfig.editorconfig│   │       │       ├── Skyhop.GribParser.Test.assets.cache│   │       │       ├── Skyhop.GribParser.Test.csproj.AssemblyReference.cache│   │       │       ├── Skyhop.GribParser.Test.csproj.CopyComplete│   │       │       ├── Skyhop.GribParser.Test.csproj.CoreCompileInputs.cache│   │       │       ├── Skyhop.GribParser.Test.csproj.FileListAbsolute.txt│   │       │       ├── Skyhop.GribParser.Test.dll│   │       │       ├── Skyhop.GribParser.Test.genruntimeconfig.cache│   │       │       └── Skyhop.GribParser.Test.pdb│   │       ├── Release│   │       │   └── netcoreapp3.1│   │       │       ├── Skyhop.GribParser.Test.AssemblyInfo.cs│   │       │       ├── Skyhop.GribParser.Test.AssemblyInfoInputs.cache│   │       │       ├── Skyhop.GribParser.Test.GeneratedMSBuildEditorConfig.editorconfig│   │       │       ├── Skyhop.GribParser.Test.assets.cache│   │       │       └── Skyhop.GribParser.Test.csproj.AssemblyReference.cache│   │       ├── Skyhop.GribParser.Test.csproj.nuget.dgspec.json│   │       ├── Skyhop.GribParser.Test.csproj.nuget.g.props│   │       ├── Skyhop.GribParser.Test.csproj.nuget.g.targets│   │       ├── project.assets.json│   │       └── project.nuget.cache│   └── Skyhop.GribParser.sln└── 好例子网_GribParser.zip42 directories, 175 files                            
阿里云服务器
浏览记录