I have downloaded grib1
model data from GFS, I am using a Mac OS X and was able to build the wgrib2
file from NOAA but was unable to extract the data. I have not found a grib1
utility for MAC.
Then I run to this program http://www.giss.nasa.gov/tools/panoply/ that was able to read the file and can see the data but I have some issues with it.
- the values comes in other units (like K for temp and other different from mm in rainfall)
- I am able to export
CSV
but only the values not the coordinates
What I want to do is :
- extract data from grib file via the command line via latitude longitude
- extract data an move to a
MySQL
database to be able to do some data aggregation (sum, max, min) etc - be able to plot / map data (I would probably use CartoDB service)
I already can extract grib
or can download from certain region, I would like that data to be able to see on a spreadsheet for example latitude, longitude, temperature, rainfall, wind etc... then from there I can take it to a database, or sum /avg etc or manipulate data.
Sample grib
data file: https://dl.dropboxusercontent.com/u/104462/neavilag_rain_wind_pressure.grb
Based on my scenario what is the best approach to handle my needs? Can you suggest me what to do?