Download data from omega500_2002%2Enc


Parent directory

Global attributes

NC_GLOBAL

Downloading data

In the form below you can specify desired variables and their dimensions, and have the data downloaded in different formats depending on the server configuration.

lat

:

units
degrees_north
standard_name
latitude

lon

:

units
degrees_east
standard_name
longitude

ensemble_member

:

long_name
ensemble member number

time

:

units
hours since 1-1-1 0:0:0
calendar
standard

omega500

:

:

:

:

typeOfLevel
isobaricInhPa
least_significant_digit
3
short_name
omega
level
500
standard_name
lagrangian_tendency_of_air_pressure
units
Pa s**-1

as

Downloading data with Ferret

To access this dataset with the Ferret visualization and analysis environment from PMEL:

$ ferret
yes? use "https://sgn-pub-01.nersc.gov/pydap/20C_Reanalysis_version2c_ensemble/analysis/omega500/omega500_2002.nc"
yes? show data

Downloading data with GrADS

To access this dataset with the GrADS data analysis and visualization software developed by COLA:

$ grads
ga-> sdfopen https://sgn-pub-01.nersc.gov/pydap/20C_Reanalysis_version2c_ensemble/analysis/omega500/omega500_2002.nc
ga-> query file

Downloading data with IDL

To access this dataset with the IDL data analysis and visualization package:

IDL> url = 'https://sgn-pub-01.nersc.gov/pydap/20C_Reanalysis_version2c_ensemble/analysis/omega500/omega500_2002.nc'
IDL> id = ncdf_open(url)
IDL> res = ncdf_inquire(id)
IDL> help, res

Downloading data with Pydap

To access this dataset using the Pydap Python module:

$ python
>>> from pydap.client import open_url
>>> dataset = open_url("https://sgn-pub-01.nersc.gov/pydap/20C_Reanalysis_version2c_ensemble/analysis/omega500/omega500_2002.nc")
>>> import pprint
>>> pprint.pprint( dataset.keys() )
['lat', 'lon', 'ensemble_member', 'time', 'omega500']

Downloading data with other Opendap clients

There are other Opendap clients that can access this dataset, including Matlab and several command line utilities. You should know that the URL for this dataset is https://sgn-pub-01.nersc.gov/pydap/20C_Reanalysis_version2c_ensemble/analysis/omega500/omega500_2002.nc (i.e., the .html extension should be omitted when opening this dataset on an Opendap client).


pydap/3.1.1