• 最后更新 2022-07-21
  • 销量/好评 0条评论
  • 交易规则(重要)

GribParser:解码Grib格式数据
本站优惠价
(查看会员价格)
4.90
3.5折 原价:¥14.00

安装服务

付费安装

开发语言

C#

源码大小

47.50M

服务由"源代码分享"发货,并提供售后服务。

    担保交易,安全保证,有问题不解决可申请退款。标价只是源码价格,不包括安装费。购买前请询问清楚卖家,以卖家承诺为准! 自动发货商品,随时可以购买,付款后在订单详情下载,零等待。 不同会员等级尊享不同购买折扣。



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

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

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



【实例简介】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                            
  • 商品评价
  • 交易规则


  • 发货方式


  • 自动:在特色服务中标有自动发货的商品,拍下后,源码类 软件类 商品会在订单详情页显示来自卖家的商品下载链接,点卡类 商品会在订单详情直接显示卡号密码。

    手动:未标有自动发货的的商品,付款后,商品卖家会收到平台的手机短信、邮件提醒,卖家会尽快为您发货,如卖家长时间未发货,买家也可通过订单上的QQ或电话主动联系卖家。


  • 退款说明


  • 1、源码类:商品详情(含标题)与实际源码不一致的(例:描述PHP实际为ASP、描述的功能实际缺少、功能不能正常使用等)!有演示站时,与实际源码不一致的(但描述中有"不保证完全一样、可能有少许偏差"类似显著公告的除外);

  • 2、营销推广:未达到卖家描述标准的;

    3、点卡软件所售点卡软件无法使用的;

  • 3、发货:手动发货商品,在卖家未发货前就申请了退款的;

    4、服务:卖家不提供承诺的售后服务的;(双方提前有商定和描述中有显著声明的除外)

    5、其他:如商品或服务有质量方面的硬性常规问题的。未符合详情及卖家承诺的。

  • 注:符合上述任一情况的,均支持退款,但卖家予以积极解决问题则除外。交易中的商品,卖家无法修改描述!


  • 注意事项


  • 1、在付款前,双方在QQ上所商定的内容,也是纠纷评判依据(商定与商品描述冲突时,以商定为准);

    2、源码商品,同时有网站演示与商品详情图片演示,且网站演示与商品详情图片演示不一致的,默认按商品详情图片演示作为纠纷评判依据(卖家有特别声明或有额外商定的除外);

  • 3、点卡软件商品,默认按商品详情作为纠纷评判依据(特别声明或有商定除外);

  • 4、营销推广商品,默认按商品详情作为纠纷评判依据(特别声明或有商定除外);

    5、在有"正当退款原因和依据"的前提下,写有"一旦售出,概不支持退款"等类似的声明,视为无效声明;

    6、虽然交易产生纠纷的几率很小,卖家也肯定会给买家最完善的服务!但请买卖双方尽量保留如聊天记录这样的重要信息,以防产生纠纷时便于送码网快速介入处理。


  • 送码声明


  • 1、送码网作为第三方中介平台,依据双方交易合同(商品描述、交易前商定的内容)来保障交易的安全及买卖双方的权益;

  • 2、非平台线上交易的项目,出现任何后果均与送码网无关;无论卖家以何理由要求线下交易的(如:要求买家支付宝转账付款的,微信转账付款的等),请联系管理举报,本平台将清退卖家处理。


阿里云服务器
浏览记录
手机二维码手机访问领取大礼包
返回顶部