General Dataset Utilities#
Authors: Tom Vo & Stephen Po-Chedley
Updated: 04/16/24 [xcdat v0.6.1]
Overview#
This notebook demonstrates the use of general utility methods available in xcdat, including the reorientation of the longitude axis, centering of time coordinates using time bounds, and adding and getting bounds.
The data used in this example is pulled directly from the Earth System Grid Federation (ESGF).
Notebook Kernel Setup#
Users can install their own instance of xcdat and follow these examples using their own environment (e.g., with VS Code, Jupyter, Spyder, iPython) or enable xcdat with existing JupyterHub instances.
First, create the conda environment:
conda create -n xcdat_notebook_0.7.0 -c conda-forge xcdat=0.7.0 xesmf matplotlib ipython ipykernel cartopy nc-time-axis gsw-xarray jupyter
Then install the kernel from the xcdat_notebook_0.7.0 environment using ipykernel and name the kernel with the display name (e.g., xcdat_notebook_0.7.0):
python -m ipykernel install --user --name xcdat_notebook_0.7.0 --display-name xcdat_notebook_0.7.0
Then to select the kernel xcdat_notebook_0.7.0 in Jupyter to use this kernel.
[1]:
import xcdat as xc
Open a dataset#
Datasets can be opened and read using open_dataset() or open_mfdataset() (multi-file).
Related APIs: xcdat.open_dataset() & xcdat.open_mfdataset()
[2]:
# data used in this tutorial
dataset_links = [
"https://esgf-data2.llnl.gov/thredds/dodsC/user_pub_work/E3SM/1_0/amip_1850_aeroF/1deg_atm_60-30km_ocean/atmos/180x360/time-series/mon/ens2/v3/TS_187001_189412.nc",
"https://esgf-data2.llnl.gov/thredds/dodsC/user_pub_work/E3SM/1_0/amip_1850_aeroF/1deg_atm_60-30km_ocean/atmos/180x360/time-series/mon/ens2/v3/TS_189501_191912.nc",
]
[3]:
# NOTE: Opening a multi-file dataset will result in data variables to be dask
# arrays.
ds = xc.open_mfdataset(dataset_links)
# print dataset
ds
[3]:
<xarray.Dataset> Size: 156MB
Dimensions: (lat: 180, lon: 360, nbnd: 2, time: 600)
Coordinates:
* lat (lat) float64 1kB -89.5 -88.5 -87.5 -86.5 ... 86.5 87.5 88.5 89.5
* lon (lon) float64 3kB 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5
* time (time) object 5kB 1870-02-01 00:00:00 ... 1920-01-01 00:00:00
Dimensions without coordinates: nbnd
Data variables:
lat_bnds (lat, nbnd) float64 3kB dask.array<chunksize=(180, 2), meta=np.ndarray>
lon_bnds (lon, nbnd) float64 6kB dask.array<chunksize=(360, 2), meta=np.ndarray>
gw (lat) float64 1kB dask.array<chunksize=(180,), meta=np.ndarray>
time_bnds (time, nbnd) object 10kB dask.array<chunksize=(300, 2), meta=np.ndarray>
area (lat, lon) float64 518kB dask.array<chunksize=(180, 360), meta=np.ndarray>
TS (time, lat, lon) float32 156MB dask.array<chunksize=(300, 180, 360), meta=np.ndarray>
Attributes: (12/21)
ne: 30
np: 4
Conventions: CF-1.0
source: CAM
case: 20180622.DECKv1b_A2_1850aeroF.ne30_oEC.e...
title: UNSET
... ...
remap_script: ncremap
remap_hostname: acme1
remap_version: 4.9.6
map_file: /export/zender1/data/maps/map_ne30np4_to...
input_file: /p/user_pub/e3sm/baldwin32/workshop/amip...
DODS_EXTRA.Unlimited_Dimension: time- lat: 180
- lon: 360
- nbnd: 2
- time: 600
- lat(lat)float64-89.5 -88.5 -87.5 ... 88.5 89.5
- long_name :
- Latitude of Grid Cell Centers
- standard_name :
- latitude
- units :
- degrees_north
- axis :
- Y
- valid_min :
- -90.0
- valid_max :
- 90.0
- bounds :
- lat_bnds
array([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, -79.5, -78.5, -77.5, -76.5, -75.5, -74.5, -73.5, -72.5, -71.5, -70.5, -69.5, -68.5, -67.5, -66.5, -65.5, -64.5, -63.5, -62.5, -61.5, -60.5, -59.5, -58.5, -57.5, -56.5, -55.5, -54.5, -53.5, -52.5, -51.5, -50.5, -49.5, -48.5, -47.5, -46.5, -45.5, -44.5, -43.5, -42.5, -41.5, -40.5, -39.5, -38.5, -37.5, -36.5, -35.5, -34.5, -33.5, -32.5, -31.5, -30.5, -29.5, -28.5, -27.5, -26.5, -25.5, -24.5, -23.5, -22.5, -21.5, -20.5, -19.5, -18.5, -17.5, -16.5, -15.5, -14.5, -13.5, -12.5, -11.5, -10.5, -9.5, -8.5, -7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5]) - lon(lon)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- long_name :
- Longitude of Grid Cell Centers
- standard_name :
- longitude
- units :
- degrees_east
- axis :
- X
- valid_min :
- 0.0
- valid_max :
- 360.0
- bounds :
- lon_bnds
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- time(time)object1870-02-01 00:00:00 ... 1920-01-...
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
array([cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)], dtype=object)
- lat_bnds(lat, nbnd)float64dask.array<chunksize=(180, 2), meta=np.ndarray>
- long_name :
- Gridcell latitude interfaces
Array Chunk Bytes 2.81 kiB 2.81 kiB Shape (180, 2) (180, 2) Dask graph 1 chunks in 5 graph layers Data type float64 numpy.ndarray - lon_bnds(lon, nbnd)float64dask.array<chunksize=(360, 2), meta=np.ndarray>
- long_name :
- Gridcell longitude interfaces
Array Chunk Bytes 5.62 kiB 5.62 kiB Shape (360, 2) (360, 2) Dask graph 1 chunks in 5 graph layers Data type float64 numpy.ndarray - gw(lat)float64dask.array<chunksize=(180,), meta=np.ndarray>
- long_name :
- Latitude quadrature weights (normalized to sum to 2.0 on global grids)
Array Chunk Bytes 1.41 kiB 1.41 kiB Shape (180,) (180,) Dask graph 1 chunks in 5 graph layers Data type float64 numpy.ndarray - time_bnds(time, nbnd)objectdask.array<chunksize=(300, 2), meta=np.ndarray>
- long_name :
- time interval endpoints
- cell_methods :
- time: mean
Array Chunk Bytes 9.38 kiB 4.69 kiB Shape (600, 2) (300, 2) Dask graph 2 chunks in 7 graph layers Data type object numpy.ndarray - area(lat, lon)float64dask.array<chunksize=(180, 360), meta=np.ndarray>
- long_name :
- Solid angle subtended by gridcell
- standard_name :
- solid_angle
- units :
- steradian
- cell_mathods :
- lat, lon: sum
Array Chunk Bytes 506.25 kiB 506.25 kiB Shape (180, 360) (180, 360) Dask graph 1 chunks in 5 graph layers Data type float64 numpy.ndarray - TS(time, lat, lon)float32dask.array<chunksize=(300, 180, 360), meta=np.ndarray>
- units :
- K
- long_name :
- Surface temperature (radiative)
- cell_methods :
- time: mean
- cell_measures :
- area: area
Array Chunk Bytes 148.32 MiB 74.16 MiB Shape (600, 180, 360) (300, 180, 360) Dask graph 2 chunks in 5 graph layers Data type float32 numpy.ndarray
- latPandasIndex
PandasIndex(Index([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, ... 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5], dtype='float64', name='lat', length=180)) - lonPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='lon', length=360)) - timePandasIndex
PandasIndex(CFTimeIndex([1870-02-01 00:00:00, 1870-03-01 00:00:00, 1870-04-01 00:00:00, 1870-05-01 00:00:00, 1870-06-01 00:00:00, 1870-07-01 00:00:00, 1870-08-01 00:00:00, 1870-09-01 00:00:00, 1870-10-01 00:00:00, 1870-11-01 00:00:00, ... 1919-04-01 00:00:00, 1919-05-01 00:00:00, 1919-06-01 00:00:00, 1919-07-01 00:00:00, 1919-08-01 00:00:00, 1919-09-01 00:00:00, 1919-10-01 00:00:00, 1919-11-01 00:00:00, 1919-12-01 00:00:00, 1920-01-01 00:00:00], dtype='object', length=600, calendar='noleap', freq='MS'))
- ne :
- 30
- np :
- 4
- Conventions :
- CF-1.0
- source :
- CAM
- case :
- 20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison
- title :
- UNSET
- logname :
- tang30
- host :
- edison02
- Version :
- $Name$
- revision_Id :
- $Id$
- initial_file :
- 20180220.DECKv1b_H2.ne30_oEC.edison.cam.i.1870-01-01-00000.nc
- topography_file :
- /project/projectdirs/acme/inputdata/atm/cam/topo/USGS-gtopo30_ne30np4_16xdel2-PFC-consistentSGH.nc
- time_period_freq :
- month_1
- history :
- Wed Dec 16 15:59:05 2020: ncks -O -t 1 --no_tmp_fl --hdr_pad=10000 --no_tmp_fl --hdr_pad=10000 --gaa remap_script=ncremap --gaa remap_hostname=acme1 --gaa remap_version=4.9.6 --rgr lat_nm_out=lat --rgr lon_nm_out=lon --rgr no_stagger --map_fl=/export/zender1/data/maps/map_ne30np4_to_cmip6_180x360_aave.20181001.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/180x360/25yr/atm/TS_187001_189412.nc Wed Dec 16 15:50:56 2020: ncrcat -O -v TS --no_tmp_fl --hdr_pad=10000 /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc
- NCO :
- netCDF Operators version 4.9.6 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco)
- remap_script :
- ncremap
- remap_hostname :
- acme1
- remap_version :
- 4.9.6
- map_file :
- /export/zender1/data/maps/map_ne30np4_to_cmip6_180x360_aave.20181001.nc
- input_file :
- /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc
- DODS_EXTRA.Unlimited_Dimension :
- time
Reorient the longitude axis#
Longitude can be represented from 0 to 360 E or as 180 W to 180 E. xcdat allows you to convert between these axes systems.
Related API: xcdat.swap_lon_axis()
Alternative solution:
xcdat.open_mfdataset(dataset_links, lon_orient=(-180, 180))
[4]:
ds.lon
[4]:
<xarray.DataArray 'lon' (lon: 360)> Size: 3kB
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
Coordinates:
* lon (lon) float64 3kB 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5
Attributes:
long_name: Longitude of Grid Cell Centers
standard_name: longitude
units: degrees_east
axis: X
valid_min: 0.0
valid_max: 360.0
bounds: lon_bnds- lon: 360
- 0.5 1.5 2.5 3.5 4.5 5.5 6.5 ... 354.5 355.5 356.5 357.5 358.5 359.5
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- lon(lon)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- long_name :
- Longitude of Grid Cell Centers
- standard_name :
- longitude
- units :
- degrees_east
- axis :
- X
- valid_min :
- 0.0
- valid_max :
- 360.0
- bounds :
- lon_bnds
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- lonPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='lon', length=360))
- long_name :
- Longitude of Grid Cell Centers
- standard_name :
- longitude
- units :
- degrees_east
- axis :
- X
- valid_min :
- 0.0
- valid_max :
- 360.0
- bounds :
- lon_bnds
[5]:
ds2 = xc.swap_lon_axis(ds, to=(-180, 180))
[6]:
ds2.lon
[6]:
<xarray.DataArray 'lon' (lon: 360)> Size: 3kB
array([-179.5, -178.5, -177.5, ..., 177.5, 178.5, 179.5])
Coordinates:
* lon (lon) float64 3kB -179.5 -178.5 -177.5 -176.5 ... 177.5 178.5 179.5
Attributes:
long_name: Longitude of Grid Cell Centers
standard_name: longitude
units: degrees_east
axis: X
valid_min: 0.0
valid_max: 360.0
bounds: lon_bnds- lon: 360
- -179.5 -178.5 -177.5 -176.5 -175.5 ... 175.5 176.5 177.5 178.5 179.5
array([-179.5, -178.5, -177.5, ..., 177.5, 178.5, 179.5])
- lon(lon)float64-179.5 -178.5 ... 178.5 179.5
- long_name :
- Longitude of Grid Cell Centers
- standard_name :
- longitude
- units :
- degrees_east
- axis :
- X
- valid_min :
- 0.0
- valid_max :
- 360.0
- bounds :
- lon_bnds
array([-179.5, -178.5, -177.5, ..., 177.5, 178.5, 179.5])
- lonPandasIndex
PandasIndex(Index([-179.5, -178.5, -177.5, -176.5, -175.5, -174.5, -173.5, -172.5, -171.5, -170.5, ... 170.5, 171.5, 172.5, 173.5, 174.5, 175.5, 176.5, 177.5, 178.5, 179.5], dtype='float64', name='lon', length=360))
- long_name :
- Longitude of Grid Cell Centers
- standard_name :
- longitude
- units :
- degrees_east
- axis :
- X
- valid_min :
- 0.0
- valid_max :
- 360.0
- bounds :
- lon_bnds
Center the time coordinates#
A given point of time often represents some time period (e.g., a monthly average). In this situation, data providers sometimes record the time as the beginning, middle, or end of the period. center_times() places the time coordinate in the center of the time interval (using time bounds to determine the center of the period).
Related API: xcdat.center_times()
Alternative solution:
xcdat.open_mfdataset(dataset_links, center_times=True)
The time bounds used for centering time coordinates:
[7]:
# We access the values with .values because it is a dask array.
ds.time_bnds.values
[7]:
array([[cftime.DatetimeNoLeap(1870, 1, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True)],
...,
[cftime.DatetimeNoLeap(1919, 10, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)]],
dtype=object)
Before centering time coordinates:
[8]:
ds.time
[8]:
<xarray.DataArray 'time' (time: 600)> Size: 5kB
array([cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True), ...,
cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)],
dtype=object)
Coordinates:
* time (time) object 5kB 1870-02-01 00:00:00 ... 1920-01-01 00:00:00
Attributes:
long_name: time
bounds: time_bnds
cell_methods: time: mean- time: 600
- 1870-02-01 00:00:00 1870-03-01 00:00:00 ... 1920-01-01 00:00:00
array([cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)], dtype=object) - time(time)object1870-02-01 00:00:00 ... 1920-01-...
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
array([cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)], dtype=object)
- timePandasIndex
PandasIndex(CFTimeIndex([1870-02-01 00:00:00, 1870-03-01 00:00:00, 1870-04-01 00:00:00, 1870-05-01 00:00:00, 1870-06-01 00:00:00, 1870-07-01 00:00:00, 1870-08-01 00:00:00, 1870-09-01 00:00:00, 1870-10-01 00:00:00, 1870-11-01 00:00:00, ... 1919-04-01 00:00:00, 1919-05-01 00:00:00, 1919-06-01 00:00:00, 1919-07-01 00:00:00, 1919-08-01 00:00:00, 1919-09-01 00:00:00, 1919-10-01 00:00:00, 1919-11-01 00:00:00, 1919-12-01 00:00:00, 1920-01-01 00:00:00], dtype='object', length=600, calendar='noleap', freq='MS'))
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
Now center the time coordinates:
[9]:
ds3 = xc.center_times(ds)
After centering time coordinates:
[10]:
ds3.time
[10]:
<xarray.DataArray 'time' (time: 600)> Size: 5kB
array([cftime.DatetimeNoLeap(1870, 1, 16, 12, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 2, 15, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 3, 16, 12, 0, 0, 0, has_year_zero=True),
...,
cftime.DatetimeNoLeap(1919, 10, 16, 12, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 11, 16, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 12, 16, 12, 0, 0, 0, has_year_zero=True)],
dtype=object)
Coordinates:
* time (time) object 5kB 1870-01-16 12:00:00 ... 1919-12-16 12:00:00
Attributes:
long_name: time
bounds: time_bnds
cell_methods: time: mean- time: 600
- 1870-01-16 12:00:00 1870-02-15 00:00:00 ... 1919-12-16 12:00:00
array([cftime.DatetimeNoLeap(1870, 1, 16, 12, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 2, 15, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 16, 12, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 10, 16, 12, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 11, 16, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 16, 12, 0, 0, 0, has_year_zero=True)], dtype=object) - time(time)object1870-01-16 12:00:00 ... 1919-12-...
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
array([cftime.DatetimeNoLeap(1870, 1, 16, 12, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 2, 15, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 16, 12, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 10, 16, 12, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 11, 16, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 16, 12, 0, 0, 0, has_year_zero=True)], dtype=object)
- timePandasIndex
PandasIndex(CFTimeIndex([1870-01-16 12:00:00, 1870-02-15 00:00:00, 1870-03-16 12:00:00, 1870-04-16 00:00:00, 1870-05-16 12:00:00, 1870-06-16 00:00:00, 1870-07-16 12:00:00, 1870-08-16 12:00:00, 1870-09-16 00:00:00, 1870-10-16 12:00:00, ... 1919-03-16 12:00:00, 1919-04-16 00:00:00, 1919-05-16 12:00:00, 1919-06-16 00:00:00, 1919-07-16 12:00:00, 1919-08-16 12:00:00, 1919-09-16 00:00:00, 1919-10-16 12:00:00, 1919-11-16 00:00:00, 1919-12-16 12:00:00], dtype='object', length=600, calendar='noleap', freq=None))
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
Add bounds#
Bounds are critical to many xcdat operations. For example, they are used in determining the weights in spatial or temporal averages and in regridding operations. add_bounds() will attempt to produce bounds if they do not exist in the original dataset.
Related API: xarray.Dataset.bounds.add_bounds()
Alternative solution:
xcdat.open_mfdataset(dataset_links, add_bounds=["X", "Y", "T"])(Assuming the file doesn’t already have bounds for your desired axis/axes)
[11]:
# We are dropping the existing bounds to demonstrate adding bounds.
# we are starting with the dataset with centered time points
ds4 = ds3.drop_vars("time_bnds")
[12]:
try:
ds4.bounds.get_bounds("T")
except KeyError as e:
print(e)
"No bounds data variables were found for the 'T' axis. Make sure the dataset has bound data vars and their names match the 'bounds' attributes found on their related time coordinate variables. Alternatively, you can add bounds with `ds.bounds.add_missing_bounds()` or `ds.bounds.add_bounds()`."
There are two options for adding time bounds. The midpoint method places bounds at the midpoints between time bounds and the frequency method creates bounds based on the time stamp of each time point and the frequency of the data. This is the midpoint method:
[13]:
# midpoint method
ds4 = ds4.bounds.add_time_bounds(method="midpoint")
# print results
ds4.bounds.get_bounds("T")
[13]:
<xarray.DataArray 'time_bnds' (time: 600, bnds: 2)> Size: 10kB
array([[cftime.DatetimeNoLeap(1870, 1, 1, 18, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 1, 31, 6, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1870, 1, 31, 6, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 3, 1, 18, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1870, 3, 1, 18, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 3, 31, 18, 0, 0, 0, has_year_zero=True)],
...,
[cftime.DatetimeNoLeap(1919, 10, 1, 6, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 10, 31, 18, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1919, 10, 31, 18, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 12, 1, 6, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1919, 12, 1, 6, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 12, 31, 18, 0, 0, 0, has_year_zero=True)]],
dtype=object)
Coordinates:
* time (time) object 5kB 1870-01-16 12:00:00 ... 1919-12-16 12:00:00
Dimensions without coordinates: bnds
Attributes:
xcdat_bounds: True- time: 600
- bnds: 2
- 1870-01-01 18:00:00 1870-01-31 06:00:00 ... 1919-12-31 18:00:00
array([[cftime.DatetimeNoLeap(1870, 1, 1, 18, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 1, 31, 6, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1870, 1, 31, 6, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 1, 18, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1870, 3, 1, 18, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 31, 18, 0, 0, 0, has_year_zero=True)], ..., [cftime.DatetimeNoLeap(1919, 10, 1, 6, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 10, 31, 18, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1919, 10, 31, 18, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 1, 6, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1919, 12, 1, 6, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 31, 18, 0, 0, 0, has_year_zero=True)]], dtype=object) - time(time)object1870-01-16 12:00:00 ... 1919-12-...
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
array([cftime.DatetimeNoLeap(1870, 1, 16, 12, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 2, 15, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 16, 12, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 10, 16, 12, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 11, 16, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 16, 12, 0, 0, 0, has_year_zero=True)], dtype=object)
- timePandasIndex
PandasIndex(CFTimeIndex([1870-01-16 12:00:00, 1870-02-15 00:00:00, 1870-03-16 12:00:00, 1870-04-16 00:00:00, 1870-05-16 12:00:00, 1870-06-16 00:00:00, 1870-07-16 12:00:00, 1870-08-16 12:00:00, 1870-09-16 00:00:00, 1870-10-16 12:00:00, ... 1919-03-16 12:00:00, 1919-04-16 00:00:00, 1919-05-16 12:00:00, 1919-06-16 00:00:00, 1919-07-16 12:00:00, 1919-08-16 12:00:00, 1919-09-16 00:00:00, 1919-10-16 12:00:00, 1919-11-16 00:00:00, 1919-12-16 12:00:00], dtype='object', length=600, calendar='noleap', freq=None))
- xcdat_bounds :
- True
Notice that the midpoint method does not place the bounds between the last moment of month n and the first moment of month n+1. The frequency method was meant to try to infer the correct bounds by taking into account the time stamps and the frequency of the data. The frequency method (below) is what is used when add_bounds=["T"] is specified in open_dataset or open_mfdataset.
[14]:
# drop time bounds again
ds5 = ds4.drop_vars("time_bnds")
# timestamp / frequency method
ds5 = ds5.bounds.add_time_bounds(method="freq")
# print results
ds5.bounds.get_bounds("T")
[14]:
<xarray.DataArray 'time_bnds' (time: 600, bnds: 2)> Size: 10kB
array([[cftime.DatetimeNoLeap(1870, 1, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True)],
...,
[cftime.DatetimeNoLeap(1919, 10, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True)],
[cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True),
cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)]],
dtype=object)
Coordinates:
* time (time) object 5kB 1870-01-16 12:00:00 ... 1919-12-16 12:00:00
Dimensions without coordinates: bnds
Attributes:
xcdat_bounds: True- time: 600
- bnds: 2
- 1870-01-01 00:00:00 1870-02-01 00:00:00 ... 1920-01-01 00:00:00
array([[cftime.DatetimeNoLeap(1870, 1, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True)], ..., [cftime.DatetimeNoLeap(1919, 10, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)]], dtype=object) - time(time)object1870-01-16 12:00:00 ... 1919-12-...
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
array([cftime.DatetimeNoLeap(1870, 1, 16, 12, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 2, 15, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 16, 12, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 10, 16, 12, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 11, 16, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 16, 12, 0, 0, 0, has_year_zero=True)], dtype=object)
- timePandasIndex
PandasIndex(CFTimeIndex([1870-01-16 12:00:00, 1870-02-15 00:00:00, 1870-03-16 12:00:00, 1870-04-16 00:00:00, 1870-05-16 12:00:00, 1870-06-16 00:00:00, 1870-07-16 12:00:00, 1870-08-16 12:00:00, 1870-09-16 00:00:00, 1870-10-16 12:00:00, ... 1919-03-16 12:00:00, 1919-04-16 00:00:00, 1919-05-16 12:00:00, 1919-06-16 00:00:00, 1919-07-16 12:00:00, 1919-08-16 12:00:00, 1919-09-16 00:00:00, 1919-10-16 12:00:00, 1919-11-16 00:00:00, 1919-12-16 12:00:00], dtype='object', length=600, calendar='noleap', freq=None))
- xcdat_bounds :
- True
Note that ds.bounds.add_time_bounds(method="midpoint") is the same as ds.bounds.add_bounds("T"). The latter method can be used to add bounds to other axes (e.g., latitude) as show below.
[15]:
ds6 = ds.drop_vars("lat_bnds")
ds6 = ds6.bounds.add_bounds("Y")
ds6.lat_bnds
[15]:
<xarray.DataArray 'lat_bnds' (lat: 180, bnds: 2)> Size: 3kB
array([[-90., -89.],
[-89., -88.],
[-88., -87.],
[-87., -86.],
[-86., -85.],
[-85., -84.],
[-84., -83.],
[-83., -82.],
[-82., -81.],
[-81., -80.],
[-80., -79.],
[-79., -78.],
[-78., -77.],
[-77., -76.],
[-76., -75.],
[-75., -74.],
[-74., -73.],
[-73., -72.],
[-72., -71.],
[-71., -70.],
...
[ 70., 71.],
[ 71., 72.],
[ 72., 73.],
[ 73., 74.],
[ 74., 75.],
[ 75., 76.],
[ 76., 77.],
[ 77., 78.],
[ 78., 79.],
[ 79., 80.],
[ 80., 81.],
[ 81., 82.],
[ 82., 83.],
[ 83., 84.],
[ 84., 85.],
[ 85., 86.],
[ 86., 87.],
[ 87., 88.],
[ 88., 89.],
[ 89., 90.]])
Coordinates:
* lat (lat) float64 1kB -89.5 -88.5 -87.5 -86.5 ... 86.5 87.5 88.5 89.5
Dimensions without coordinates: bnds
Attributes:
xcdat_bounds: True- lat: 180
- bnds: 2
- -90.0 -89.0 -89.0 -88.0 -88.0 -87.0 ... 87.0 88.0 88.0 89.0 89.0 90.0
array([[-90., -89.], [-89., -88.], [-88., -87.], [-87., -86.], [-86., -85.], [-85., -84.], [-84., -83.], [-83., -82.], [-82., -81.], [-81., -80.], [-80., -79.], [-79., -78.], [-78., -77.], [-77., -76.], [-76., -75.], [-75., -74.], [-74., -73.], [-73., -72.], [-72., -71.], [-71., -70.], ... [ 70., 71.], [ 71., 72.], [ 72., 73.], [ 73., 74.], [ 74., 75.], [ 75., 76.], [ 76., 77.], [ 77., 78.], [ 78., 79.], [ 79., 80.], [ 80., 81.], [ 81., 82.], [ 82., 83.], [ 83., 84.], [ 84., 85.], [ 85., 86.], [ 86., 87.], [ 87., 88.], [ 88., 89.], [ 89., 90.]]) - lat(lat)float64-89.5 -88.5 -87.5 ... 88.5 89.5
- long_name :
- Latitude of Grid Cell Centers
- standard_name :
- latitude
- units :
- degrees_north
- axis :
- Y
- valid_min :
- -90.0
- valid_max :
- 90.0
- bounds :
- lat_bnds
array([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, -79.5, -78.5, -77.5, -76.5, -75.5, -74.5, -73.5, -72.5, -71.5, -70.5, -69.5, -68.5, -67.5, -66.5, -65.5, -64.5, -63.5, -62.5, -61.5, -60.5, -59.5, -58.5, -57.5, -56.5, -55.5, -54.5, -53.5, -52.5, -51.5, -50.5, -49.5, -48.5, -47.5, -46.5, -45.5, -44.5, -43.5, -42.5, -41.5, -40.5, -39.5, -38.5, -37.5, -36.5, -35.5, -34.5, -33.5, -32.5, -31.5, -30.5, -29.5, -28.5, -27.5, -26.5, -25.5, -24.5, -23.5, -22.5, -21.5, -20.5, -19.5, -18.5, -17.5, -16.5, -15.5, -14.5, -13.5, -12.5, -11.5, -10.5, -9.5, -8.5, -7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5])
- latPandasIndex
PandasIndex(Index([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, ... 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5], dtype='float64', name='lat', length=180))
- xcdat_bounds :
- True
Add missing bounds for all axes supported by xcdat (X, Y, T, Z)#
Related API: xarray.Dataset.bounds.add_missing_bounds()
[16]:
# We drop the dataset axes bounds to demonstrate generating missing bounds.
ds7 = ds.drop_vars(["time_bnds", "lat_bnds", "lon_bnds"])
[17]:
ds7
[17]:
<xarray.Dataset> Size: 156MB
Dimensions: (lat: 180, lon: 360, time: 600)
Coordinates:
* lat (lat) float64 1kB -89.5 -88.5 -87.5 -86.5 ... 86.5 87.5 88.5 89.5
* lon (lon) float64 3kB 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5
* time (time) object 5kB 1870-02-01 00:00:00 ... 1920-01-01 00:00:00
Data variables:
gw (lat) float64 1kB dask.array<chunksize=(180,), meta=np.ndarray>
area (lat, lon) float64 518kB dask.array<chunksize=(180, 360), meta=np.ndarray>
TS (time, lat, lon) float32 156MB dask.array<chunksize=(300, 180, 360), meta=np.ndarray>
Attributes: (12/21)
ne: 30
np: 4
Conventions: CF-1.0
source: CAM
case: 20180622.DECKv1b_A2_1850aeroF.ne30_oEC.e...
title: UNSET
... ...
remap_script: ncremap
remap_hostname: acme1
remap_version: 4.9.6
map_file: /export/zender1/data/maps/map_ne30np4_to...
input_file: /p/user_pub/e3sm/baldwin32/workshop/amip...
DODS_EXTRA.Unlimited_Dimension: time- lat: 180
- lon: 360
- time: 600
- lat(lat)float64-89.5 -88.5 -87.5 ... 88.5 89.5
- long_name :
- Latitude of Grid Cell Centers
- standard_name :
- latitude
- units :
- degrees_north
- axis :
- Y
- valid_min :
- -90.0
- valid_max :
- 90.0
- bounds :
- lat_bnds
array([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, -79.5, -78.5, -77.5, -76.5, -75.5, -74.5, -73.5, -72.5, -71.5, -70.5, -69.5, -68.5, -67.5, -66.5, -65.5, -64.5, -63.5, -62.5, -61.5, -60.5, -59.5, -58.5, -57.5, -56.5, -55.5, -54.5, -53.5, -52.5, -51.5, -50.5, -49.5, -48.5, -47.5, -46.5, -45.5, -44.5, -43.5, -42.5, -41.5, -40.5, -39.5, -38.5, -37.5, -36.5, -35.5, -34.5, -33.5, -32.5, -31.5, -30.5, -29.5, -28.5, -27.5, -26.5, -25.5, -24.5, -23.5, -22.5, -21.5, -20.5, -19.5, -18.5, -17.5, -16.5, -15.5, -14.5, -13.5, -12.5, -11.5, -10.5, -9.5, -8.5, -7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5]) - lon(lon)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- long_name :
- Longitude of Grid Cell Centers
- standard_name :
- longitude
- units :
- degrees_east
- axis :
- X
- valid_min :
- 0.0
- valid_max :
- 360.0
- bounds :
- lon_bnds
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- time(time)object1870-02-01 00:00:00 ... 1920-01-...
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
array([cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)], dtype=object)
- gw(lat)float64dask.array<chunksize=(180,), meta=np.ndarray>
- long_name :
- Latitude quadrature weights (normalized to sum to 2.0 on global grids)
Array Chunk Bytes 1.41 kiB 1.41 kiB Shape (180,) (180,) Dask graph 1 chunks in 5 graph layers Data type float64 numpy.ndarray - area(lat, lon)float64dask.array<chunksize=(180, 360), meta=np.ndarray>
- long_name :
- Solid angle subtended by gridcell
- standard_name :
- solid_angle
- units :
- steradian
- cell_mathods :
- lat, lon: sum
Array Chunk Bytes 506.25 kiB 506.25 kiB Shape (180, 360) (180, 360) Dask graph 1 chunks in 5 graph layers Data type float64 numpy.ndarray - TS(time, lat, lon)float32dask.array<chunksize=(300, 180, 360), meta=np.ndarray>
- units :
- K
- long_name :
- Surface temperature (radiative)
- cell_methods :
- time: mean
- cell_measures :
- area: area
Array Chunk Bytes 148.32 MiB 74.16 MiB Shape (600, 180, 360) (300, 180, 360) Dask graph 2 chunks in 5 graph layers Data type float32 numpy.ndarray
- latPandasIndex
PandasIndex(Index([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, ... 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5], dtype='float64', name='lat', length=180)) - lonPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='lon', length=360)) - timePandasIndex
PandasIndex(CFTimeIndex([1870-02-01 00:00:00, 1870-03-01 00:00:00, 1870-04-01 00:00:00, 1870-05-01 00:00:00, 1870-06-01 00:00:00, 1870-07-01 00:00:00, 1870-08-01 00:00:00, 1870-09-01 00:00:00, 1870-10-01 00:00:00, 1870-11-01 00:00:00, ... 1919-04-01 00:00:00, 1919-05-01 00:00:00, 1919-06-01 00:00:00, 1919-07-01 00:00:00, 1919-08-01 00:00:00, 1919-09-01 00:00:00, 1919-10-01 00:00:00, 1919-11-01 00:00:00, 1919-12-01 00:00:00, 1920-01-01 00:00:00], dtype='object', length=600, calendar='noleap', freq='MS'))
- ne :
- 30
- np :
- 4
- Conventions :
- CF-1.0
- source :
- CAM
- case :
- 20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison
- title :
- UNSET
- logname :
- tang30
- host :
- edison02
- Version :
- $Name$
- revision_Id :
- $Id$
- initial_file :
- 20180220.DECKv1b_H2.ne30_oEC.edison.cam.i.1870-01-01-00000.nc
- topography_file :
- /project/projectdirs/acme/inputdata/atm/cam/topo/USGS-gtopo30_ne30np4_16xdel2-PFC-consistentSGH.nc
- time_period_freq :
- month_1
- history :
- Wed Dec 16 15:59:05 2020: ncks -O -t 1 --no_tmp_fl --hdr_pad=10000 --no_tmp_fl --hdr_pad=10000 --gaa remap_script=ncremap --gaa remap_hostname=acme1 --gaa remap_version=4.9.6 --rgr lat_nm_out=lat --rgr lon_nm_out=lon --rgr no_stagger --map_fl=/export/zender1/data/maps/map_ne30np4_to_cmip6_180x360_aave.20181001.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/180x360/25yr/atm/TS_187001_189412.nc Wed Dec 16 15:50:56 2020: ncrcat -O -v TS --no_tmp_fl --hdr_pad=10000 /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc
- NCO :
- netCDF Operators version 4.9.6 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco)
- remap_script :
- ncremap
- remap_hostname :
- acme1
- remap_version :
- 4.9.6
- map_file :
- /export/zender1/data/maps/map_ne30np4_to_cmip6_180x360_aave.20181001.nc
- input_file :
- /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc
- DODS_EXTRA.Unlimited_Dimension :
- time
[18]:
# add now-missing bounds
ds7 = ds7.bounds.add_missing_bounds(["X", "Y", "T"])
# print dataset
ds7
[18]:
<xarray.Dataset> Size: 156MB
Dimensions: (lat: 180, lon: 360, time: 600, bnds: 2)
Coordinates:
* lat (lat) float64 1kB -89.5 -88.5 -87.5 -86.5 ... 86.5 87.5 88.5 89.5
* lon (lon) float64 3kB 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5
* time (time) object 5kB 1870-02-01 00:00:00 ... 1920-01-01 00:00:00
Dimensions without coordinates: bnds
Data variables:
gw (lat) float64 1kB dask.array<chunksize=(180,), meta=np.ndarray>
area (lat, lon) float64 518kB dask.array<chunksize=(180, 360), meta=np.ndarray>
TS (time, lat, lon) float32 156MB dask.array<chunksize=(300, 180, 360), meta=np.ndarray>
lon_bnds (lon, bnds) float64 6kB 0.0 1.0 1.0 2.0 ... 359.0 359.0 360.0
lat_bnds (lat, bnds) float64 3kB -90.0 -89.0 -89.0 ... 89.0 89.0 90.0
time_bnds (time, bnds) object 10kB 1870-02-01 00:00:00 ... 1920-02-01 00...
Attributes: (12/21)
ne: 30
np: 4
Conventions: CF-1.0
source: CAM
case: 20180622.DECKv1b_A2_1850aeroF.ne30_oEC.e...
title: UNSET
... ...
remap_script: ncremap
remap_hostname: acme1
remap_version: 4.9.6
map_file: /export/zender1/data/maps/map_ne30np4_to...
input_file: /p/user_pub/e3sm/baldwin32/workshop/amip...
DODS_EXTRA.Unlimited_Dimension: time- lat: 180
- lon: 360
- time: 600
- bnds: 2
- lat(lat)float64-89.5 -88.5 -87.5 ... 88.5 89.5
- long_name :
- Latitude of Grid Cell Centers
- standard_name :
- latitude
- units :
- degrees_north
- axis :
- Y
- valid_min :
- -90.0
- valid_max :
- 90.0
- bounds :
- lat_bnds
array([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, -79.5, -78.5, -77.5, -76.5, -75.5, -74.5, -73.5, -72.5, -71.5, -70.5, -69.5, -68.5, -67.5, -66.5, -65.5, -64.5, -63.5, -62.5, -61.5, -60.5, -59.5, -58.5, -57.5, -56.5, -55.5, -54.5, -53.5, -52.5, -51.5, -50.5, -49.5, -48.5, -47.5, -46.5, -45.5, -44.5, -43.5, -42.5, -41.5, -40.5, -39.5, -38.5, -37.5, -36.5, -35.5, -34.5, -33.5, -32.5, -31.5, -30.5, -29.5, -28.5, -27.5, -26.5, -25.5, -24.5, -23.5, -22.5, -21.5, -20.5, -19.5, -18.5, -17.5, -16.5, -15.5, -14.5, -13.5, -12.5, -11.5, -10.5, -9.5, -8.5, -7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5]) - lon(lon)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- long_name :
- Longitude of Grid Cell Centers
- standard_name :
- longitude
- units :
- degrees_east
- axis :
- X
- valid_min :
- 0.0
- valid_max :
- 360.0
- bounds :
- lon_bnds
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- time(time)object1870-02-01 00:00:00 ... 1920-01-...
- long_name :
- time
- bounds :
- time_bnds
- cell_methods :
- time: mean
array([cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True), ..., cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)], dtype=object)
- gw(lat)float64dask.array<chunksize=(180,), meta=np.ndarray>
- long_name :
- Latitude quadrature weights (normalized to sum to 2.0 on global grids)
Array Chunk Bytes 1.41 kiB 1.41 kiB Shape (180,) (180,) Dask graph 1 chunks in 5 graph layers Data type float64 numpy.ndarray - area(lat, lon)float64dask.array<chunksize=(180, 360), meta=np.ndarray>
- long_name :
- Solid angle subtended by gridcell
- standard_name :
- solid_angle
- units :
- steradian
- cell_mathods :
- lat, lon: sum
Array Chunk Bytes 506.25 kiB 506.25 kiB Shape (180, 360) (180, 360) Dask graph 1 chunks in 5 graph layers Data type float64 numpy.ndarray - TS(time, lat, lon)float32dask.array<chunksize=(300, 180, 360), meta=np.ndarray>
- units :
- K
- long_name :
- Surface temperature (radiative)
- cell_methods :
- time: mean
- cell_measures :
- area: area
Array Chunk Bytes 148.32 MiB 74.16 MiB Shape (600, 180, 360) (300, 180, 360) Dask graph 2 chunks in 5 graph layers Data type float32 numpy.ndarray - lon_bnds(lon, bnds)float640.0 1.0 1.0 ... 359.0 359.0 360.0
- xcdat_bounds :
- True
array([[ 0., 1.], [ 1., 2.], [ 2., 3.], [ 3., 4.], [ 4., 5.], [ 5., 6.], [ 6., 7.], [ 7., 8.], [ 8., 9.], [ 9., 10.], [ 10., 11.], [ 11., 12.], [ 12., 13.], [ 13., 14.], [ 14., 15.], [ 15., 16.], [ 16., 17.], [ 17., 18.], [ 18., 19.], [ 19., 20.], ... [340., 341.], [341., 342.], [342., 343.], [343., 344.], [344., 345.], [345., 346.], [346., 347.], [347., 348.], [348., 349.], [349., 350.], [350., 351.], [351., 352.], [352., 353.], [353., 354.], [354., 355.], [355., 356.], [356., 357.], [357., 358.], [358., 359.], [359., 360.]]) - lat_bnds(lat, bnds)float64-90.0 -89.0 -89.0 ... 89.0 90.0
- xcdat_bounds :
- True
array([[-90., -89.], [-89., -88.], [-88., -87.], [-87., -86.], [-86., -85.], [-85., -84.], [-84., -83.], [-83., -82.], [-82., -81.], [-81., -80.], [-80., -79.], [-79., -78.], [-78., -77.], [-77., -76.], [-76., -75.], [-75., -74.], [-74., -73.], [-73., -72.], [-72., -71.], [-71., -70.], ... [ 70., 71.], [ 71., 72.], [ 72., 73.], [ 73., 74.], [ 74., 75.], [ 75., 76.], [ 76., 77.], [ 77., 78.], [ 78., 79.], [ 79., 80.], [ 80., 81.], [ 81., 82.], [ 82., 83.], [ 83., 84.], [ 84., 85.], [ 85., 86.], [ 86., 87.], [ 87., 88.], [ 88., 89.], [ 89., 90.]]) - time_bnds(time, bnds)object1870-02-01 00:00:00 ... 1920-02-...
- xcdat_bounds :
- True
array([[cftime.DatetimeNoLeap(1870, 2, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1870, 3, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1870, 4, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1870, 5, 1, 0, 0, 0, 0, has_year_zero=True)], ..., [cftime.DatetimeNoLeap(1919, 11, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1919, 12, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True)], [cftime.DatetimeNoLeap(1920, 1, 1, 0, 0, 0, 0, has_year_zero=True), cftime.DatetimeNoLeap(1920, 2, 1, 0, 0, 0, 0, has_year_zero=True)]], dtype=object)
- latPandasIndex
PandasIndex(Index([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, ... 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5], dtype='float64', name='lat', length=180)) - lonPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='lon', length=360)) - timePandasIndex
PandasIndex(CFTimeIndex([1870-02-01 00:00:00, 1870-03-01 00:00:00, 1870-04-01 00:00:00, 1870-05-01 00:00:00, 1870-06-01 00:00:00, 1870-07-01 00:00:00, 1870-08-01 00:00:00, 1870-09-01 00:00:00, 1870-10-01 00:00:00, 1870-11-01 00:00:00, ... 1919-04-01 00:00:00, 1919-05-01 00:00:00, 1919-06-01 00:00:00, 1919-07-01 00:00:00, 1919-08-01 00:00:00, 1919-09-01 00:00:00, 1919-10-01 00:00:00, 1919-11-01 00:00:00, 1919-12-01 00:00:00, 1920-01-01 00:00:00], dtype='object', length=600, calendar='noleap', freq='MS'))
- ne :
- 30
- np :
- 4
- Conventions :
- CF-1.0
- source :
- CAM
- case :
- 20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison
- title :
- UNSET
- logname :
- tang30
- host :
- edison02
- Version :
- $Name$
- revision_Id :
- $Id$
- initial_file :
- 20180220.DECKv1b_H2.ne30_oEC.edison.cam.i.1870-01-01-00000.nc
- topography_file :
- /project/projectdirs/acme/inputdata/atm/cam/topo/USGS-gtopo30_ne30np4_16xdel2-PFC-consistentSGH.nc
- time_period_freq :
- month_1
- history :
- Wed Dec 16 15:59:05 2020: ncks -O -t 1 --no_tmp_fl --hdr_pad=10000 --no_tmp_fl --hdr_pad=10000 --gaa remap_script=ncremap --gaa remap_hostname=acme1 --gaa remap_version=4.9.6 --rgr lat_nm_out=lat --rgr lon_nm_out=lon --rgr no_stagger --map_fl=/export/zender1/data/maps/map_ne30np4_to_cmip6_180x360_aave.20181001.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/180x360/25yr/atm/TS_187001_189412.nc Wed Dec 16 15:50:56 2020: ncrcat -O -v TS --no_tmp_fl --hdr_pad=10000 /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1870-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1871-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1872-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1873-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1874-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1875-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1876-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1877-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1878-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1879-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1880-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1881-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1882-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1883-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1884-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1885-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1886-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1887-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1888-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1889-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1890-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1891-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1892-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1893-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-01.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-02.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-03.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-04.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-05.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-06.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-07.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-08.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-09.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-10.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-11.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/temp/ens2/timeseries_atm/1870_1894/20180622.DECKv1b_A2_1850aeroF.ne30_oEC.edison.cam.h0.1894-12.nc /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc
- NCO :
- netCDF Operators version 4.9.6 (Homepage = http://nco.sf.net, Code = http://github.com/nco/nco)
- remap_script :
- ncremap
- remap_hostname :
- acme1
- remap_version :
- 4.9.6
- map_file :
- /export/zender1/data/maps/map_ne30np4_to_cmip6_180x360_aave.20181001.nc
- input_file :
- /p/user_pub/e3sm/baldwin32/workshop/amip_aeroF/output/pp/ts/ens2/ne30/25yr/atm/TS_187001_189412.nc
- DODS_EXTRA.Unlimited_Dimension :
- time
Note that ds.bounds.add_missing_bounds uses ds.bounds.add_bounds for the latitude and longitude axes and defaults to the frequency method and add_time_bounds for the time axis. If you click on the database symbol for time_bnds above, the bounds are slightly mis-aligned because the time axis was not centered before adding the time axis. In this case, the user should call xcdat.center_times and then ds.bounds.add_missing_bounds (as shown earlier).
Get the dimension coordinates for an axis.#
In xarray, you can get a dimension coordinates by directly referencing its name (e.g., ds.lat). xcdat provides an alternative way to get dimension coordinates agnostically by simply passing the CF axis key to applicable APIs.
Related API: xcdat.get_dim_coords() & xcdat.get_dim_keys()
Helpful knowledge:
This API uses
cf_xarrayto interpret CF axis names and coordinate names in the xarray object attributes. Refer to Metadata Interpretation for more information.
Xarray documentation on coordinates (source):
There are two types of coordinates in xarray:
dimension coordinates are one dimensional coordinates with a name equal to their sole dimension (marked by * when printing a dataset or data array). They are used for label based indexing and alignment, like the index found on a pandas DataFrame or Series. Indeed, these “dimension” coordinates use a pandas.Index internally to store their values.
non-dimension coordinates are variables that contain coordinate data, but are not a dimension coordinate. They can be multidimensional (see Working with Multidimensional Coordinates), and there is no relationship between the name of a non-dimension coordinate and the name(s) of its dimension(s). Non-dimension coordinates can be useful for indexing or plotting; otherwise, xarray does not make any direct use of the values associated with them. They are not used for alignment or automatic indexing, nor are they required to match when doing arithmetic (see Coordinates).
Xarray’s terminology differs from the CF terminology, where the “dimension coordinates” are called “coordinate variables”, and the “non-dimension coordinates” are called “auxiliary coordinate variables” (see GH1295 for more details).
1. axis attr#
[19]:
ds.lat.attrs["axis"]
[19]:
'Y'
2. standard_name attr#
[20]:
ds.lat.attrs["standard_name"]
[20]:
'latitude'
[21]:
"lat" in ds.dims
[21]:
True
Utilities to get the coordinate axis and coordinate axis key#
[22]:
xc.get_dim_coords(ds, axis="Y")
[22]:
<xarray.DataArray 'lat' (lat: 180)> Size: 1kB
array([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5,
-79.5, -78.5, -77.5, -76.5, -75.5, -74.5, -73.5, -72.5, -71.5, -70.5,
-69.5, -68.5, -67.5, -66.5, -65.5, -64.5, -63.5, -62.5, -61.5, -60.5,
-59.5, -58.5, -57.5, -56.5, -55.5, -54.5, -53.5, -52.5, -51.5, -50.5,
-49.5, -48.5, -47.5, -46.5, -45.5, -44.5, -43.5, -42.5, -41.5, -40.5,
-39.5, -38.5, -37.5, -36.5, -35.5, -34.5, -33.5, -32.5, -31.5, -30.5,
-29.5, -28.5, -27.5, -26.5, -25.5, -24.5, -23.5, -22.5, -21.5, -20.5,
-19.5, -18.5, -17.5, -16.5, -15.5, -14.5, -13.5, -12.5, -11.5, -10.5,
-9.5, -8.5, -7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5,
0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5,
10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5,
20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5,
30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5,
40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5,
50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5,
60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5,
70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5,
80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5])
Coordinates:
* lat (lat) float64 1kB -89.5 -88.5 -87.5 -86.5 ... 86.5 87.5 88.5 89.5
Attributes:
long_name: Latitude of Grid Cell Centers
standard_name: latitude
units: degrees_north
axis: Y
valid_min: -90.0
valid_max: 90.0
bounds: lat_bnds- lat: 180
- -89.5 -88.5 -87.5 -86.5 -85.5 -84.5 ... 84.5 85.5 86.5 87.5 88.5 89.5
array([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, -79.5, -78.5, -77.5, -76.5, -75.5, -74.5, -73.5, -72.5, -71.5, -70.5, -69.5, -68.5, -67.5, -66.5, -65.5, -64.5, -63.5, -62.5, -61.5, -60.5, -59.5, -58.5, -57.5, -56.5, -55.5, -54.5, -53.5, -52.5, -51.5, -50.5, -49.5, -48.5, -47.5, -46.5, -45.5, -44.5, -43.5, -42.5, -41.5, -40.5, -39.5, -38.5, -37.5, -36.5, -35.5, -34.5, -33.5, -32.5, -31.5, -30.5, -29.5, -28.5, -27.5, -26.5, -25.5, -24.5, -23.5, -22.5, -21.5, -20.5, -19.5, -18.5, -17.5, -16.5, -15.5, -14.5, -13.5, -12.5, -11.5, -10.5, -9.5, -8.5, -7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5]) - lat(lat)float64-89.5 -88.5 -87.5 ... 88.5 89.5
- long_name :
- Latitude of Grid Cell Centers
- standard_name :
- latitude
- units :
- degrees_north
- axis :
- Y
- valid_min :
- -90.0
- valid_max :
- 90.0
- bounds :
- lat_bnds
array([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, -79.5, -78.5, -77.5, -76.5, -75.5, -74.5, -73.5, -72.5, -71.5, -70.5, -69.5, -68.5, -67.5, -66.5, -65.5, -64.5, -63.5, -62.5, -61.5, -60.5, -59.5, -58.5, -57.5, -56.5, -55.5, -54.5, -53.5, -52.5, -51.5, -50.5, -49.5, -48.5, -47.5, -46.5, -45.5, -44.5, -43.5, -42.5, -41.5, -40.5, -39.5, -38.5, -37.5, -36.5, -35.5, -34.5, -33.5, -32.5, -31.5, -30.5, -29.5, -28.5, -27.5, -26.5, -25.5, -24.5, -23.5, -22.5, -21.5, -20.5, -19.5, -18.5, -17.5, -16.5, -15.5, -14.5, -13.5, -12.5, -11.5, -10.5, -9.5, -8.5, -7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5, 16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5, 24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5, 32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5, 40.5, 41.5, 42.5, 43.5, 44.5, 45.5, 46.5, 47.5, 48.5, 49.5, 50.5, 51.5, 52.5, 53.5, 54.5, 55.5, 56.5, 57.5, 58.5, 59.5, 60.5, 61.5, 62.5, 63.5, 64.5, 65.5, 66.5, 67.5, 68.5, 69.5, 70.5, 71.5, 72.5, 73.5, 74.5, 75.5, 76.5, 77.5, 78.5, 79.5, 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5])
- latPandasIndex
PandasIndex(Index([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5, ... 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5], dtype='float64', name='lat', length=180))
- long_name :
- Latitude of Grid Cell Centers
- standard_name :
- latitude
- units :
- degrees_north
- axis :
- Y
- valid_min :
- -90.0
- valid_max :
- 90.0
- bounds :
- lat_bnds
[23]:
xc.get_dim_keys(ds, axis="X")
[23]:
'lon'