Ben Hamner
Ben Hamner

Reputation: 4735

Processing GRIB-2 Data in .Net

Is there a library for reading GRIB2 data files in .NET (preferably in F#)?

If not, where is a specification that formally defines the GRIB2 data format?

Upvotes: 3

Views: 5461

Answers (2)

0x1mason
0x1mason

Reputation: 757

GribApi.NET is now available. It supports reading and writing GRIB 1 and 2 files.

Disclaimer: I am the author (of the C# wrapper, anyway)

Upvotes: 1

Mike Dinescu
Mike Dinescu

Reputation: 55730

Here's link to the GRIB2 specification.

Apparently there is GribCS, an open source library available on SourceForge that you could use to process GRIB files. The fact that is's written in C# doesn't matter as all .NET languages (including F#) can use it..

Upvotes: 2

Related Questions