1 / 20

The NCAR Command Language (NCL) and the NetCDF Data Format

The NCAR Command Language (NCL) and the NetCDF Data Format. Research Tools Presentation Matthew Janiga 10/30/2012. Where Can I Learn More?. http://www.ncl.ucar.edu/index.shtml. Where Can I Learn More?. http://www.unidata.ucar.edu/software/netcdf/. What is NCL?.

romeo
Télécharger la présentation

The NCAR Command Language (NCL) and the NetCDF Data Format

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The NCAR Command Language (NCL) and the NetCDF Data Format Research Tools Presentation Matthew Janiga 10/30/2012

  2. Where Can I Learn More? http://www.ncl.ucar.edu/index.shtml

  3. Where Can I Learn More? http://www.unidata.ucar.edu/software/netcdf/

  4. What is NCL? • NCL is a complete language with types, variables, operators, expressions, conditional statements, loops, and functions and procedures. • NCL can read many data formats: NetCDF, HDF, GRIB, ascii and csv, binary, WRF output, and more. • With some additional work it can read GEMPAK, McIDAS AREA, and others. • NCL like MATLAB is an array based language. Arrays can be sent to functions (100s and growing) which perform computations, plotting functions (dozens and growing), or files (typically NetCDF but also ascii and binary).

  5. What is NetCDF? • NetCDF is a data format for storing arrays. Unlike ascii it also stores information describing the arrays. • Attributes: strings or numbers storing: units, source locations, references, methodology, etc…. • Dimension coordinates: Arrays which describe the dimensions: lat, lon, time, level, etc. Dimensions coordinates can have their own attributes. • NetCDF files are EASILY examined using GUIs (NCVIEW, IDV, Panopoly, etc.) or command line programs (ncdump, ncl_filedump). • NetCDF files can also be created, read, or manipulated by functions in libraries written for Fortran, C, Java, and more! • How difficult is say… compiling a Fortran program that uses NetCDF? • Just type "nc-config --libs“ on the command line and all flags will be given to you! • NetCDF is also fairly easy to read into programs other than NCL: R, MATLAB, etc. • http://www.r-project.org/

  6. NetCDF Java The NetCDF Java is a jar file opened from the web that can convert many formats to NetCDF. http://www.unidata.ucar.edu/downloads/netcdf/netcdf-java-4/index.jsp NetCDF Operator An efficient command line program for merging, splicing, and otherwise editing NetCDF files. I’ve found NCL to be much easier to use and powerful but this is another option. http://nco.sourceforge.net/

  7. NCVIEW NCVIEW is one of MANY programs that do this. http://www.unidata.ucar.edu/software/netcdf/software.html NCVIEW is a simple GUI that lets you explore a NetCDF file: examine slices, time series, animate, and more. Look at the data you’ve generated before spending time to make a plot!

  8. Advantages of NCL • Free, stable, and extremely well documented. • NCL is a fully fledged programming language not calls to compiled programs. Code yourself don’t “trick”. • NCL allows you to read in large amounts of data into memory (64-bit vars > 2GB) and perform computations there instead of constantly reading and writing to disk. • Creating your own procedures to call externally is exactly the same as writing a script (no Fortran or shell scripting necessary). • Handles many vertical and horizontal projections and conversions from one to the other. • NCL is very flexible, it can analyze any array of any dimension, type, with any coordinate description. • Store and process: trajectories, tracks, hovmollers, time series, polar orbit swaths and other non-uniform projections, radar data, geostationary satellite data, surface obs, profiler data, radiosondes, and pretty much anything you can think of.

  9. Disadvantages of NCL • NCL has a bit of a learning curve. Learning how to fully utilize it and code using arrays takes time. • For some plots (plan plots and cross-sections) GEMPAK may be able to produce a similar plot with less code (assuming data is already in GEMPAK format). • GEMPAK is still heavily used in operations. • While there are lots of mathematical functions and procedures MATLAB has more types and variants. • Similarly R has more statistical tools.

  10. NCL Eye Candy

  11. And more…..

  12. What’s Else can NCL Do? NCL for EMACS • OPeNDAP: The ability to grab what you want out of datasets directly from a server. Makes some local storage of data obsolete. • Available for many datasets and reanalyses. • system and systemfunc • avail_files = systemfunc("ls -1") • time = systemfunc("date +'%s'") • system(“convert img.ps img.png &”) • Use WRAPIT to send information to and from pre-compiled user-created or commercial Fortran or C programs • http://www.ncl.ucar.edu/Document/Tools/WRAPIT.shtml http://www.ncl.ucar.edu/Applications/editor.shtml

  13. More Features… • ParNCL- Parallel version of NCL for analyzing large datasets. • Earth System Modeling Framework (ESMF) regriddingsoftware. • NetCDF 4 – Ability to store and read groups “object-orientated variables”. • MJO CLIVAR Diagnostics – MATLAB still more flexible.

  14. The Example Page Documentation! The NCL webpage has 100s of examples each containing a picture of the plot and the code required to make it. http://www.ncl.ucar.edu/Applications/

  15. Function Documentation Every function has an exhaustive documentation page showing how to use it, describing how the calculation is performed, and providing examples.

  16. The Example Code Libraries: NCLs and your own. Read data Perform the calculation

  17. A Simple Plot

  18. Code to make this plot

More Related