Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anybody here doing meteorological or earth-sciences work? I am trying to work with GRIB2 format data files. There are libraries available, in particular the Unidata GRIB Java Decoder. And I can see exactly how to extract data in a big linear array, but what I want to do is access values by lat/long. Can't find any simple example on how to do that. Suggestions?

TIA!

share|improve this question

3 Answers

up vote 1 down vote accepted

You will need to get the projection type along with parameters, then use that to map the coordinates from lat/long to grid x/y (see f.e. the class CoordinateReferenceSystem from the geotools website).

share|improve this answer
Thanks! I guess if I have to build that, I'm going to use hackier solutions (like just using wgrib2 repeatedly!). I strive for elegance, but "working quickly" has an elegance all its own... – Rick Wayne Sep 12 '11 at 15:18

You can use the DEGRIB tool to probe data at a specified lat/long. See here http://www.weather.gov/mdl/degrib/txtview.php?file=degrib.txt&dir=base A windows example would be 'degrib.exe myfile.grib -P -pnt 40.0,-10.0 -Interp 2'. If you need DEGRIB.EXE you can find it in the installation directory of a program called VRTOOL http://www.tecepe.com.br/nav/vrtool/

share|improve this answer

The wgrib2 program allows you to extract a time series at a chosen lat/lon location using the -lon option, for example:

wgrib2.exe input_file.grb2 -lon 360 90 > output_file.txt

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.