Recipe: Visualize OPeNDAP data using Panoply: Difference between revisions
Jump to navigation
Jump to search
Created page with "Back to G5NR Data Access Guide. == Problem == By accessing the collection <code>inst01hr_3d_T_Cv</code> via the OPeNDAP server http://opendap.nccs.nasa.gov/dods/OSSE/G5..." |
|||
Line 6: | Line 6: | ||
http://opendap.nccs.nasa.gov/dods/OSSE/G5NR/Ganymed/7km | http://opendap.nccs.nasa.gov/dods/OSSE/G5NR/Ganymed/7km | ||
we want to | we want to plot the air temperature data at the surface for 2006/Sep/18, 9z. | ||
== Solution == | == Solution == |
Revision as of 13:19, 20 November 2014
Back to G5NR Data Access Guide.
Problem
By accessing the collection inst01hr_3d_T_Cv
via the OPeNDAP server
http://opendap.nccs.nasa.gov/dods/OSSE/G5NR/Ganymed/7km
we want to plot the air temperature data at the surface for 2006/Sep/18, 9z.
Solution
IDL version 8.2 and later has native openDAP support. The following code has been tested with IDL version 8.3.
The metadata for the collection inst01hr_3d_T_Cv
is available at
http://opendap.nccs.nasa.gov/dods/OSSE/G5NR/Ganymed/7km/0.5000_deg/inst/inst01hr_3d_T_Cv.info
Code
This code accesses the collection inst01hr_3d_T_Cv
from the OPeNDAP server and reads a subset of the temperature data (all levels inside the bounding box specified above) and computes its max/min. It then plots the data at the surface (level=72).
Discussion
See Also
- File Spec: File:G5NR-Ganymed-7km FileSpec-ON6-V1.0.pdf
- Recipe: Fortran program to read data from downloaded file