嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
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.zip
42 directories, 175 files