From b7d761575bd396014e1172105e3cd086cbb6088f Mon Sep 17 00:00:00 2001 From: jbusecke Date: Thu, 14 Nov 2024 15:15:03 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20m2lines/?= =?UTF-8?q?data-gallery@7dfe725d9270d7c5c630d9bed21df00bcf9a1bc9=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notebooks/MOM6_basic_plotting.html | 18 ++--- notebooks/xarray_intro.html | 58 +++++++-------- notebooks/xgcm_intro.html | 114 ++++++++++++++--------------- searchindex.js | 2 +- 4 files changed, 96 insertions(+), 96 deletions(-) diff --git a/notebooks/MOM6_basic_plotting.html b/notebooks/MOM6_basic_plotting.html index 60b3cda..013c43e 100644 --- a/notebooks/MOM6_basic_plotting.html +++ b/notebooks/MOM6_basic_plotting.html @@ -738,7 +738,7 @@

Basic Plotting with MOM6 -
-
--2024-10-28 15:25:45--  https://github.com/pangeo-data/tutorial-data/raw/master/sst/NOAA_NCDC_ERSST_v3b_SST-1960.nc
-Resolving github.com (github.com)... 140.82.116.4
-Connecting to github.com (github.com)|140.82.116.4|:443... connected.
+
--2024-11-14 15:13:32--  https://github.com/pangeo-data/tutorial-data/raw/master/sst/NOAA_NCDC_ERSST_v3b_SST-1960.nc
+Resolving github.com (github.com)... 140.82.113.3
+Connecting to github.com (github.com)|140.82.113.3|:443... connected.
 HTTP request sent, awaiting response... 302 Found
 Location: https://raw.githubusercontent.com/pangeo-data/tutorial-data/master/sst/NOAA_NCDC_ERSST_v3b_SST-1960.nc [following]
---2024-10-28 15:25:46--  https://raw.githubusercontent.com/pangeo-data/tutorial-data/master/sst/NOAA_NCDC_ERSST_v3b_SST-1960.nc
-Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.111.133, 185.199.108.133, ...
-Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected.
+--2024-11-14 15:13:33--  https://raw.githubusercontent.com/pangeo-data/tutorial-data/master/sst/NOAA_NCDC_ERSST_v3b_SST-1960.nc
+Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.111.133, 185.199.110.133, ...
+Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected.
 HTTP request sent, awaiting response... 200 OK
 Length: 785127 (767K) [application/octet-stream]
 Saving to: ‘./dataset.nc’
 
-./dataset.nc        100%[===================>] 766.73K  --.-KB/s    in 0.007s  
+./dataset.nc        100%[===================>] 766.73K  --.-KB/s    in 0.008s  
 
-2024-10-28 15:25:46 (103 MB/s) - ‘./dataset.nc’ saved [785127/785127]
+2024-11-14 15:13:33 (98.4 MB/s) - ‘./dataset.nc’ saved [785127/785127]
 
@@ -765,14 +765,14 @@

Introduction to Xarray + dtype='datetime64[ns]', name='time', freq=None))

  • Conventions :
    IRIDL
    source :
    https://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.ERSST/.version3b/.sst/
    history :
    extracted and cleaned by Ryan Abernathey for Research Computing in Earth Science
  • Data Structures#

    @@ -1197,14 +1197,14 @@

    Data Structures + *empty*

    Let us now create a grid using ds. xarray has no idea that x_center and x_left are related to each other; they are subject to standard xarray broadcasting rules. When we create an xgcm.Grid, we need to specify that they are part of the same axis. We do this using the coords keyword argument, as follows:

    + *empty*
    • x_center
      (x_center)
      int64
      1 2 3 4 5 6 7 8 9
      axis :
      X
      array([1, 2, 3, 4, 5, 6, 7, 8, 9])
    • x_center
      PandasIndex
      PandasIndex(Index([1, 2, 3, 4, 5, 6, 7, 8, 9], dtype='int64', name='x_center'))
    • x_left
      (x_left)
      float64
      0.5 1.5 2.5 3.5 4.5 5.5 6.5 7.5 8.5
      axis :
      X
      c_grid_axis_shift :
      -0.5
      array([0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5])
    • x_left
      PandasIndex
      PandasIndex(Index([0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5], dtype='float64', name='x_left'))
  • We see that the output is on the x_left points rather than the original x_center points.

    @@ -2445,8 +2445,8 @@

    Difference
    @@ -2868,49 +2868,49 @@

    Two connected faces
    face_connections = {'<FACE DIMENSION NAME>':
    @@ -3367,39 +3367,39 @@ 

    Example Dataset : mitgcm + dtype='float32', name='XC'))

  • Conventions :
    CF-1.6
    title :
    netCDF wrapper of MITgcm MDS binary data
    source :
    MITgcm
    history :
    Created by calling `open_mdsdataset(extra_metadata=None, llc_method='smallchunks', nz=None, ny=None, nx=None, default_dtype=None, ignore_unknown_vars=False, chunks=None, endian='>', swap_dims=None, grid_vars_to_coords=True, geometry='sphericalpolar', calendar='gregorian', ref_date=None, delta_t=1, read_grid=True, prefix=None, iters='all', grid_dir=None, data_dir='./global_oce_latlon/')`
  • Next we create a Grid object from the dataset. We need to tell xgcm that the X and Y axes are periodic. (The other axes will be assumed to be non-periodic.)

    @@ -3431,9 +3431,6 @@

    Example Dataset : mitgcm diff --git a/searchindex.js b/searchindex.js index d7e2485..259ac64 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["intro", "notebooks/MOM6_basic_plotting", "notebooks/OM4_SE_animation", "notebooks/pycnocline_depth_mom6", "notebooks/unet_movie", "notebooks/xarray_intro", "notebooks/xgcm_intro"], "filenames": ["intro.md", "notebooks/MOM6_basic_plotting.ipynb", "notebooks/OM4_SE_animation.ipynb", "notebooks/pycnocline_depth_mom6.ipynb", "notebooks/unet_movie.ipynb", "notebooks/xarray_intro.ipynb", "notebooks/xgcm_intro.ipynb"], "titles": ["Introduction", "Basic Plotting with MOM6", "OM4 Animation", "Pycnocline Depth using MOM6", "Ocean Emulation Animations with U-Net", "Introduction to Xarray", "Introduction to XGCM"], "terms": {"under": 0, "develop": 0, "The": [0, 3, 4, 6], "data": [0, 1, 2, 4, 6], "galleri": [0, 4], "project": [0, 1, 2, 4], "an": [0, 2, 4, 5, 6], "m": [0, 2, 3, 4, 6], "2": [0, 1, 2, 3, 4, 5, 6], "line": 0, "initi": 0, "ingest": 0, "relev": [0, 4], "us": [0, 1, 2, 4, 5, 6], "case": 0, "from": [0, 1, 2, 4, 6], "our": [0, 1, 3, 6], "build": 0, "websit": 0, "demonstr": [0, 3], "how": [0, 3, 6], "work": [0, 3, 5, 6], "specif": 0, "dataset": [0, 1, 2, 3, 5], "appli": [0, 3], "common": 0, "comput": [0, 5, 6], "method": [0, 3], "them": [0, 4, 6], "so": [0, 1, 3], "far": 0, "we": [0, 1, 2, 3, 4, 5, 6], "ar": [0, 3, 4, 5, 6], "focus": 0, "tool": 0, "analysi": [0, 6], "m2line": [0, 4], "gfdl": 0, "om4": 0, "simul": 0, "which": [0, 4, 5, 6], "have": [0, 1, 2, 4, 6], "impact": 0, "ai": 0, "improv": 0, "some": 0, "describ": [0, 5, 6], "thi": [0, 1, 2, 3, 4, 5, 6], "medium": 0, "articl": 0, "check": [0, 6], "back": 0, "soon": 0, "more": [0, 6], "notebook": [1, 2, 3, 4, 5, 6], "take": [1, 4], "you": [1, 2, 3, 4, 5, 6], "through": [1, 6], "xarrai": [1, 2, 3, 4, 6], "s": [1, 2, 3, 4, 5, 6], "function": [1, 4], "just": 1, "thin": 1, "wrapper": [1, 6], "around": 1, "popular": 1, "matplotlib": [1, 2, 3, 4, 6], "librari": [1, 2], "befor": [1, 3, 5, 6], "get": [1, 3, 4, 5, 6], "start": [1, 2, 3, 5, 6], "mai": [1, 3, 5, 6], "choos": [1, 3, 5, 6], "run": [1, 2, 3, 4, 5, 6], "leap": [1, 2, 3, 4, 5, 6], "pangeo": [1, 2, 3, 4, 5, 6], "hub": [1, 2, 3, 4, 5, 6], "binder": [1, 3, 5, 6], "inspir": [1, 3], "analysiscodebook": 1, "doc": 1, "import": [1, 2, 3, 4, 5, 6], "xr": [1, 2, 3, 4, 5, 6], "cartopi": [1, 2, 4], "cr": [1, 2, 4], "ccr": [1, 2, 4], "cmocean": [1, 4], "pyplot": [1, 2, 3, 4, 6], "plt": [1, 2, 3, 4, 6], "ds": [1, 2, 3, 5, 6], "open_dataset": [1, 2, 3, 4, 5, 6], "thetao_epbl_data_timemean_1978": [1, 3], "2002": [1, 3], "nc": [1, 2, 3, 4, 5, 6], "lt": [1, 2, 5, 6], "gt": [1, 2, 5, 6], "dimens": [1, 2, 5, 6], "lat": [1, 2, 3, 5], "180": [1, 5, 6], "lon": [1, 2, 3, 5], "360": [1, 2, 6], "time": [1, 2, 3, 4, 5, 6], "1": [1, 2, 3, 4, 5, 6], "z_l": [1, 3], "75": [1, 4], "coordin": [1, 2, 5, 6], "float64": [1, 2, 6], "89": [1, 2, 5], "5": [1, 2, 3, 4, 6], "88": [1, 2, 5, 6], "87": 1, "86": [1, 5, 6], "85": [1, 6], "0": [1, 2, 3, 4, 5, 6], "3": [1, 2, 3, 4, 5, 6], "4": [1, 2, 4, 5, 6], "355": 1, "356": [1, 5, 6], "357": 1, "358": [1, 5, 6], "359": 1, "object": [1, 2, 4, 5, 6], "1988": 1, "01": [1, 2, 5, 6], "09": [1, 2, 5], "00": [1, 2, 5, 6], "7": [1, 2, 5, 6], "668e": 1, "03": [1, 2, 5, 6], "339e": 1, "6": [1, 2, 3, 4, 5, 6], "098e": 1, "variabl": [1, 2, 5, 6], "thetao": [1, 3], "float32": [1, 2, 5, 6], "attribut": [1, 2, 5, 6], "titl": [1, 2, 3, 6], "om4p25_jra55do1": 1, "4_r6_cycle1_mle1_zgrid": 1, "associated_fil": [1, 2], "areacello": [1, 2], "19580101": 1, "ocean_stat": [1, 2], "grid_typ": [1, 2], "regular": [1, 2], "grid_til": [1, 2], "n": [1, 2, 5, 6], "A": [1, 2, 5, 6], "code_release_vers": 1, "19": [1, 2, 6], "git_hash": 1, "c97c1f6afab0df3545ee82c337d51accc4205bc3": 1, "creationtim": 1, "wed": 1, "dec": 1, "28": [1, 2, 3, 5, 6], "08": [1, 2, 5], "43": [1, 2], "57": [1, 2], "2022": 1, "hostnam": 1, "pp206": 1, "histori": [1, 5, 6], "oct": 1, "11": [1, 2, 5, 6], "21": [1, 2, 6], "04": [1, 2, 5], "2023": 1, "nck": 1, "v": [1, 2, 4], "epbl_data": 1, "comment": 1, "fm": 1, "averag": [1, 2], "version": 1, "precis": 1, "doubl": 1, "nco": 1, "netcdf": [1, 3, 6], "oper": 1, "homepag": 1, "http": [1, 3, 4, 5, 6], "datasetdimens": [1, 2, 5, 6], "180lon": 1, "360time": 1, "1z_l": 1, "75coordin": 1, "5long_nam": 1, "latitudeunit": [1, 2, 6], "degrees_naxi": 1, "ybound": 1, "lat_bndsarrai": 1, "84": [1, 2, 5, 6], "83": 1, "82": [1, 5, 6], "81": 1, "80": [1, 2, 5, 6], "79": [1, 2], "78": [1, 2, 5, 6], "77": 1, "76": [1, 2, 5, 6], "74": [1, 2, 5, 6], "73": [1, 2], "72": [1, 5, 6], "71": [1, 2], "70": [1, 2, 3, 5, 6], "69": [1, 2], "68": [1, 2, 5, 6], "67": [1, 2], "66": [1, 2, 5, 6], "65": [1, 2, 3], "64": [1, 2, 5, 6], "63": [1, 2], "62": [1, 2, 5, 6], "61": [1, 2], "60": [1, 2, 5, 6], "59": [1, 2], "58": [1, 2, 5, 6], "56": [1, 2, 5, 6], "55": [1, 2, 3], "54": [1, 2, 5, 6], "53": [1, 2], "52": [1, 2, 5, 6], "51": [1, 2], "50": [1, 2, 5, 6], "49": [1, 2], "48": [1, 2, 5, 6], "47": [1, 2], "46": [1, 2, 5, 6], "45": [1, 2, 3, 5], "44": [1, 2, 5, 6], "42": [1, 2, 5, 6], "41": [1, 2], "40": [1, 2, 5, 6], "39": [1, 2], "38": [1, 2, 5, 6], "37": [1, 2], "36": [1, 2, 5, 6], "35": [1, 2], "34": [1, 2, 5, 6], "33": [1, 2], "32": [1, 2, 5, 6], "31": [1, 2], "30": [1, 2, 5, 6], "29": [1, 2], "27": [1, 2], "26": [1, 2, 5, 6], "25": [1, 2, 3, 4, 5, 6], "24": [1, 2, 5, 6], "23": [1, 2, 6], "22": [1, 2, 5, 6], "20": [1, 2, 4, 5, 6], "18": [1, 2, 5, 6], "17": [1, 2, 6], "16": [1, 2, 4, 5, 6], "15": [1, 2, 4, 5, 6], "14": [1, 2, 5, 6], "13": [1, 2, 6], "12": [1, 2, 4, 5, 6], "10": [1, 2, 3, 4, 5, 6], "9": [1, 2, 4, 6], "8": [1, 2, 5, 6], "float640": [1, 6], "longitudeunit": [1, 2, 6], "degrees_eaxi": 1, "xbound": 1, "lon_bndsarrai": 1, "object1988": 1, "00long_nam": 1, "timeaxi": [1, 6], "tcalendar_typ": 1, "julianbound": 1, "time_bndscell_method": 1, "meanarrai": 1, "cftime": [1, 2], "datetimejulian": [1, 2], "has_year_zero": [1, 2], "fals": [1, 2, 3, 4, 6], "dtype": [1, 2, 5, 6], "float641": [1, 2], "03unit": 1, "meterslong_nam": 1, "depth": [1, 6], "cell": [1, 2, 6], "centeraxi": 1, "zposit": 1, "downedg": 1, "z_iarrai": 1, "000000e": 1, "100000e": 1, "300000e": 1, "500000e": 1, "700000e": 1, "900000e": 1, "100500e": 1, "301500e": 1, "502500e": 1, "704000e": 1, "906500e": 1, "110500e": 1, "316500e": 1, "524500e": 1, "735500e": 1, "951000e": 1, "172000e": 1, "400000e": 1, "637000e": 1, "886000e": 1, "150500e": 1, "434500e": 1, "743500e": 1, "083500e": 1, "461500e": 1, "887000e": 1, "371000e": 1, "926500e": 1, "056950e": 1, "02": [1, 2, 4, 5], "131800e": 1, "219400e": 1, "322350e": 1, "443650e": 1, "586800e": 1, "755900e": 1, "955750e": 1, "191800e": 1, "470400e": 1, "798900e": 1, "185650e": 1, "640200e": 1, "173500e": 1, "798000e": 1, "527850e": 1, "379050e": 1, "369650e": 1, "520100e": 1, "853400e": 1, "139540e": 1, "317505e": 1, "522475e": 1, "758080e": 1, "028360e": 1, "337815e": 1, "691455e": 1, "094835e": 1, "554110e": 1, "076095e": 1, "668325e": 1, "339115e": 1, "097620e": 1, "unit": [1, 2, 5, 6], "degclong_nam": 1, "sea": [1, 2, 3, 5], "water": 1, "potenti": [1, 5, 6], "temperaturecell_measur": 1, "volum": [1, 6], "volcello": 1, "area": [1, 2, 6], "areacellostandard_nam": 1, "sea_water_potential_temperatureinterp_method": 1, "conserve_order1cell_method": 1, "mean": [1, 2, 3, 5, 6], "yh": [1, 2], "xh": [1, 2], "meantime_avg_info": 1, "average_t1": [1, 2], "average_t2": [1, 2], "average_dt": [1, 2], "4860000": 1, "valu": [1, 3, 4, 5, 6], "index": [1, 2, 6], "latpandasindexpandasindex": [1, 5], "x27": [1, 2, 5, 6], "name": [1, 2, 5, 6], "length": [1, 2, 5, 6], "lonpandasindexpandasindex": [1, 5], "5000000000000002": 1, "499999999999999": 1, "350": [1, 3, 5, 6], "50000000000006": 1, "351": 1, "352": [1, 5, 6], "353": 1, "354": [1, 5, 6], "timepandasindexpandasindex": [1, 2, 5, 6], "cftimeindex": [1, 2], "calendar": [1, 2, 6], "julian": [1, 2], "freq": [1, 2, 5, 6], "none": [1, 2, 5, 6], "z_lpandasindexpandasindex": 1, "004999999999995": 1, "015": 1, "02499999999999": 1, "03999999999999": 1, "065": 1, "105": 1, "16499999999999": 1, "24499999999999": 1, "35499999999999": 1, "50999999999999": 1, "505": 1, "345": 1, "435": 1, "83500000000001": 1, "61500000000001": 1, "93": [1, 2], "99": 1, "26499999999999": 1, "695": 1, "113": 1, "17999999999999": 1, "121": 1, "94": [1, 2, 5, 6], "132": [1, 5, 6], "23499999999999": 1, "144": [1, 5, 6], "36499999999998": 1, "158": [1, 5, 6], "67999999999998": 1, "175": 1, "58999999999997": 1, "195": 1, "575": 1, "219": 1, "17999999999998": 1, "247": 1, "279": 1, "318": [1, 5, 6], "56500000000005": 1, "364": 1, "02000000000004": 1, "417": 1, "479": 1, "80000000000007": 1, "552": 1, "7850000000001": 1, "637": 1, "905": 1, "736": 1, "965": 1, "852": 1, "985": 1, "3400000000001": 1, "1139": 1, "1317": 1, "1522": 1, "475": 1, "1758": 1, "2028": 1, "2337": 1, "8149999999996": 1, "2691": 1, "455": [1, 6], "3094": 1, "835": 1, "3554": 1, "4076": 1, "0950000000003": 1, "4668": 1, "325": 1, "5339": 1, "115": 1, "6097": 1, "4_r6_cycle1_mle1_zgridassociated_fil": 1, "ncgrid_typ": 1, "regulargrid_til": 1, "acode_release_vers": 1, "1git_hash": 1, "c97c1f6afab0df3545ee82c337d51accc4205bc3creationtim": 1, "2022hostnam": 1, "pp206histori": 1, "epbl_data_timemean_1978_2002": 1, "fri": 1, "aug": 1, "ncra": 1, "ocean_monthly_z_1x1deg": 1, "1958": 1, "1962": 1, "ann": 1, "1963": 1, "1967": 1, "1968": 1, "1972": 1, "1973": 1, "1977": 1, "1978": 1, "1982": 1, "1983": 1, "1987": 1, "1992": 1, "1993": 1, "1997": 1, "1998": 1, "2003": 1, "2007": 1, "2008": [1, 2], "2012": [1, 2], "2013": 1, "2017": 1, "fregrid": 1, "standard_dimens": 1, "input_mosa": 1, "ocean_mosa": 1, "input_fil": 1, "annual": 1, "interp_method": 1, "conserve_order1": 1, "remap_fil": 1, "fregrid_remap_file_360_by_180": 1, "nlon": 1, "nlat": 1, "scalar_field": 1, "obvfsq": 1, "uo": 1, "vo": 1, "umo": 1, "vmo": 1, "vhml": 1, "n2": 1, "time_bnd": [1, 2], "output_fil": 1, "out": [1, 3, 6], "nccomment": 1, "doublenco": 1, "sf": 1, "net": 1, "code": 1, "github": [1, 5], "com": [1, 3, 5], "let": [1, 4, 6], "first": [1, 4, 6], "file": [1, 6], "isel": [1, 2], "cmap": [1, 2, 3, 4], "cm": [1, 4], "thermal": [1, 4], "figsiz": [1, 2, 3, 4, 6], "collect": 1, "quadmesh": 1, "0x7fdd49ce22b0": 1, "now": [1, 4, 6], "map": 1, "also": [1, 4, 5, 6], "add": [1, 6], "own": [1, 6], "colorbar": [1, 2, 3, 4], "figur": [1, 2, 3, 6], "subplot_kw": [1, 4], "dict": [1, 2, 5], "platecarre": [1, 2, 4], "facecolor": 1, "white": 1, "p": [1, 3, 6], "vmin": [1, 2, 3, 4, 5], "vmax": [1, 2, 3, 4, 5], "transform": [1, 2], "add_label": 1, "add_colorbar": [1, 2, 3], "separ": 1, "cb": [1, 2], "tick": [1, 4], "shrink": [1, 2], "95": [1, 2], "ax": [1, 2, 3, 4, 5, 6], "tick_param": [1, 4], "labels": [1, 4], "can": [1, 5, 6], "pick": 1, "ani": [1, 2, 5], "list": 1, "whichev": 1, "still": 1, "set": [1, 4], "differ": 1, "coastlin": [1, 2], "gridlin": [1, 2, 4], "robinson": 1, "color": [1, 2, 3, 4], "black": 1, "alpha": [1, 4], "linestyl": [1, 3, 4], "home": 1, "runner": 1, "miniconda3": 1, "env": 1, "dgm2line": 1, "lib": 1, "python3": 1, "site": 1, "packag": [1, 5], "io": 1, "__init__": 1, "py": 1, "241": 1, "downloadwarn": 1, "download": [1, 6], "naturalearth": 1, "s3": 1, "amazonaw": 1, "110m_physic": 1, "ne_110m_coastlin": 1, "zip": 1, "warn": [1, 2], "f": [1, 2], "url": [1, 6], "anoth": [1, 4, 6], "southpolarstereo": 1, "central_longitud": [1, 2], "120": [1, 5, 6], "set_ext": 1, "300": [1, 5, 6], "90": [1, 2, 5, 6], "To": [2, 4, 6], "In": [2, 3, 6], "visual": [2, 6], "creat": [2, 4, 6], "over": 2, "explor": 2, "both": [2, 6], "scale": 2, "credit": [2, 4], "pperezhogin": 2, "mom6": 2, "numpi": [2, 3, 4, 5, 6], "np": [2, 3, 4, 6], "helper": 2, "plot_help": 2, "computational_tool": 2, "remesh": 2, "gaussian_remesh": 2, "select_latlon": 2, "lk_error": 2, "x_coord": 2, "y_coord": 2, "os": 2, "load_ext": 2, "autoreload": 2, "filterwarn": 2, "ignor": 2, "hvplot": 2, "holoview": 2, "hv": 2, "mpl": [2, 4], "output": [2, 6], "widget_loc": 2, "bottom": 2, "path": 2, "gs": [2, 3, 4], "persist": [2, 4], "jbuseck": 2, "om4_m2lin": 2, "daily_combin": 2, "zarr": [2, 4], "engin": [2, 4], "chunk": [2, 6], "yq": 2, "1081": 2, "xq": 2, "1441": 2, "1080": [2, 6], "1440": 2, "experi": 2, "1827": 2, "nv": 2, "corioli": 2, "dask": [2, 6], "arrai": [2, 4, 5, 6], "chunksiz": 2, "271": 2, "361": 2, "meta": 2, "ndarrai": [2, 5], "270": [2, 5, 6], "areacello_bu": 2, "areacello_cu": 2, "areacello_cv": 2, "basin": [2, 3], "int32": 2, "wet_u": 2, "wet_v": 2, "299": 2, "91": 2, "timedelta64": [2, 6], "ns": [2, 5, 6], "datetime64": [2, 5], "ssu": 2, "ssv": 2, "tos": 2, "zo": 2, "20080101": 2, "om4p25_bugfixes_jra55do1": 2, "5_cycle1xarrai": 2, "1081xq": 2, "1441yh": 2, "1080xh": 2, "1440experi": 2, "2time": 2, "1827nv": 2, "2coordin": 2, "float32dask": 2, "cell_method": 2, "pointinterp_method": 2, "nonelong_nam": 2, "paramet": 2, "corner": 2, "bu": 2, "pointsunit": 2, "byte": 2, "mib": 2, "382": 2, "kib": 2, "shape": [2, 4], "graph": 2, "layer": [2, 4], "type": [2, 4], "sum": 2, "pointlong_nam": 2, "ocean": [2, 6], "grid": [2, 3, 4], "areastandard_nam": 2, "cell_areaunit": 2, "m2": [2, 6], "379": 2, "380": 2, "381": 2, "int32dask": 2, "flag_mean": 2, "global_land": 2, "southern_ocean": 2, "atlantic_ocean": 2, "pacific_ocean": 2, "arctic_ocean": 2, "indian_ocean": 2, "mediterranean_sea": 2, "black_sea": 2, "hudson_bai": 2, "baltic_sea": 2, "red_seaflag_valu": 2, "10interp_method": 2, "select": [2, 5], "indexstandard_nam": 2, "regionunit": 2, "deptho": 2, "cell_measur": 2, "areacellocell_method": 2, "floor": [2, 4], "depthstandard_nam": 2, "sea_floor_depth_below_geoidunit": 2, "dxcu": 2, "delta": 2, "x": [2, 5, 6], "u": [2, 6], "point": [2, 3, 4, 5, 6], "meter": [2, 3], "dxcv": 2, "dxt": 2, "thick": 2, "tracer": 2, "dycu": 2, "y": [2, 5, 6], "dycv": 2, "dyt": 2, "u15": 2, "unparameter": 2, "zb2020": 2, "geolat": 2, "latitud": [2, 3], "t": [2, 4, 5, 6], "degrees_north": 2, "geolat_c": 2, "geolat_u": 2, "zonal": [2, 3, 4, 6], "veloc": [2, 4, 6], "cu": 2, "geolat_v": 2, "meridion": [2, 4, 6], "cv": 2, "geolon": 2, "longitud": 2, "degrees_east": 2, "geolon_c": 2, "geolon_u": 2, "geolon_v": 2, "hfgeou": 2, "upward": 2, "geotherm": 2, "heat": 2, "flux": 2, "floorstandard_nam": 2, "upward_geothermal_heat_flux_at_sea_floorunit": 2, "w": 2, "0long_nam": 2, "vertex": 2, "numberarrai": 2, "sftof": 2, "fractionstandard_nam": 2, "seaareafractionunit": 2, "object2008": 2, "axi": [2, 5], "tbound": 2, "time_bndscalendar_typ": 2, "juliancell_method": 2, "meanlong_nam": 2, "timearrai": 2, "wet": [2, 4, 6], "land": [2, 4], "wet_c": 2, "03axi": 2, "xlong_nam": 2, "h": 2, "nomin": 2, "degrees_eastarrai": 2, "724244": 2, "476198": 2, "22815": 2, "531631": 2, "77967": 2, "027712": 2, "16axi": 2, "q": 2, "842324": 2, "594355": 2, "346385": 2, "661746": 2, "90971": 2, "157676": 2, "95axi": 2, "ylong_nam": 2, "degrees_northarrai": 2, "389238": 2, "308075": 2, "226911": 2, "729781": 2, "837868": 2, "945956": 2, "0axi": 2, "429819": 2, "348657": 2, "267493": 2, "783825": 2, "891912": 2, "period": [2, 3, 6], "end": [2, 3, 5], "meaninterp_method": 2, "velocitytime_avg_info": 2, "average_dtunit": 2, "gib": 2, "118": [2, 5, 6], "184": [2, 5, 6], "objectdask": 2, "boundari": [2, 4, 6], "temperaturestandard_nam": [2, 5], "sea_surface_temperaturetime_avg_info": 2, "degc": [2, 6], "height": [2, 4, 6], "abov": [2, 6], "geoidstandard_nam": 2, "sea_surface_height_above_geoidtime_avg_info": 2, "experimentpandasindexpandasindex": 2, "nvpandasindexpandasindex": 2, "05": [2, 5], "06": [2, 5], "07": [2, 5], "d": [2, 3], "xhpandasindexpandasindex": 2, "72424385142534": 2, "47619795417893": 2, "22815003129284": 2, "298": [2, 5, 6], "9801000979502": 2, "73204816972844": 2, "48399426259493": 2, "2359383929031": 2, "297": 2, "98788057738807": 2, "7398208331622": 2, "49175917771095": 2, "7954116364209": 2, "0434365318752": 2, "29146358221654": 2, "53949277642749": 2, "78752410305645": 2, "0355575502213": 2, "283593105613505": 2, "53163075650182": 2, "77967048973631": 2, "02771229175239": 2, "xqpandasindexpandasindex": 2, "84232356963065": 2, "5943552901672": 2, "34638489675444": 2, "09841240498736": 2, "85043783087235": 2, "60246119082325": 2, "3544825016569": 2, "1065017805884": 2, "8585190452273": 2, "61053431357254": 2, "92605940685515": 2, "174008029019525": 2, "421958886267745": 2, "66991196689831": 2, "91786725876078": 2, "16582474925989": 2, "41378442535931": 2, "66174627358603": 2, "90971028003419": 2, "15767643036936": 2, "yhpandasindexpandasindex": 2, "38923793857394": 2, "30807479101273": 2, "22691082925455": 2, "14574767486899": 2, "06458691047965": 2, "9834300812582": 2, "90227869634805": 2, "82113423022128": 2, "73999812397257": 2, "65887178655316": 2, "9731671559671": 2, "08125482376003": 2, "18934249155296": 2, "29743015934592": 2, "40551782713882": 2, "51360549493178": 2, "62169316272471": 2, "72978083051767": 2, "83786849831056": 2, "9459561661037": 2, "yqpandasindexpandasindex": 2, "42981868925645": 2, "34865656947974": 2, "26749280962936": 2, "18632905133127": 2, "1051668964908": 2, "02400790882328": 2, "94285361531256": 2, "86170550760079": 2, "78056504331342": 2, "69943364732279": 2, "02721098986355": 2, "1352986576565": 2, "24338632544942": 2, "35147399324238": 2, "45956166103532": 2, "56764932882824": 2, "67573699662118": 2, "78382466441413": 2, "89191233220704": 2, "ncgrid_til": 2, "agrid_typ": 2, "regulartitl": 2, "5_cycle1": 2, "zbu": 2, "sel": [2, 3, 5], "zbv": 2, "zbt": 2, "loresu": 2, "loresv": 2, "lorest": 2, "def": [2, 4], "ke": 2, "return": [2, 4, 6], "zbke": 2, "loresk": 2, "default_rcparam": 2, "subplot": [2, 3, 4], "hspace": [2, 4], "font": [2, 4], "size": [2, 4], "plot_glob": 2, "i": [2, 3, 4, 6], "fig": [2, 3, 4], "len_idx": 2, "elif": 2, "print": [2, 3, 4, 6], "process": [2, 4, 5], "frame": [2, 4], "time_idx": 2, "time_str": 2, "item": 2, "strftime": 2, "ax1": 2, "211": 2, "orthograph": 2, "resolut": 2, "110m": 2, "im": 2, "norm": 2, "lognorm": 2, "1e": 2, "1e0": 2, "inferno": 2, "set_titl": [2, 3, 4], "o": [2, 5], "fontsiz": [2, 4], "ax2": 2, "212": [2, 5, 6], "pad": 2, "extend": [2, 5], "aspect": [2, 4], "set_label": [2, 3, 4], "label": [2, 4, 5], "mathrm": [2, 4], "suptitl": [2, 4], "here": [2, 3, 4], "show": [2, 4], "interv": [2, 4], "dai": [2, 4, 6], "shift": [2, 6], "degre": 2, "each": [2, 4, 5, 6], "step": [2, 3, 4], "funcanim": [2, 4], "pillowwrit": 2, "update_fram": 2, "plot_func": 2, "clear": 2, "current": [2, 6], "prepar": 2, "next": [2, 4, 6], "clf": 2, "create_gif": 2, "idx": 2, "filenam": 2, "my": 2, "gif": [2, 4], "dpi": [2, 3], "200": [2, 5, 6], "fp": 2, "loop": 2, "farg": 2, "len": 2, "repeat": 2, "bool": [2, 6], "blit": 2, "writer": 2, "metadata": [2, 5, 6], "artist": 2, "me": 2, "save": [2, 4, 5], "close": [2, 6], "rang": [2, 3, 4, 6], "cpu": 2, "user": 2, "15min": 2, "7s": 2, "sy": 2, "3min": 2, "total": 2, "18min": 2, "wall": 2, "14min": 2, "plot_region": 2, "slice": [2, 3], "100": [2, 4, 5, 6], "1461": 2, "all": [2, 6], "central_latitud": 2, "stop": 2, "plot_atlant": 2, "lambda": 2, "1826": 2, "correspond": [2, 4], "1821": 2, "10min": 2, "13min": 2, "9min": 2, "plot_pacif": 2, "240": [2, 5, 6], "190": [2, 5, 6], "plot_aghula": 2, "8s": 2, "8min": 2, "tutori": [3, 5], "xgcm": 3, "modul": 3, "codebas": 3, "dr": 3, "emili": 3, "newsom": 3, "agupub": 3, "onlinelibrari": 3, "wilei": 3, "doi": 3, "full": 3, "1029": 3, "2023gl105673": 3, "panda": [3, 5], "pd": 3, "gsw": 3, "set_opt": [3, 5], "display_styl": [3, 5], "html": [3, 5], "rcparam": [3, 4, 6], "data_dir": [3, 6], "file_t": 3, "file_": 3, "so_epbl_data_timemean_1978": 3, "file_n2": 3, "n2_epbl_data_timemean_1978": 3, "onli": [3, 6], "z_i": 3, "later": [3, 4, 6], "basin_fil": 3, "ocean_static_rm2": 3, "dt": 3, "dn2": 3, "db": 3, "squeez": 3, "absolut": 3, "salinti": 3, "sa": 3, "conserv": 3, "ct": 3, "result": 3, "pretti": 3, "insensit": 3, "refer": [3, 6], "becaus": [3, 6], "slightli": 3, "smoother": 3, "than": [3, 4, 6], "sigma_2": 3, "2000": 3, "sigma2": 3, "sa_from_sp": 3, "ct_from_t": 3, "sigma0": 3, "below": [3, 6], "surfac": [3, 4, 5, 6], "gyre": 3, "begin": [3, 5], "equat": [3, 5], "frac": [3, 6], "b": 3, "mbox": 3, "max": [3, 4], "big": 3, "ml_depth": 3, "pd_no_m": 3, "where": [3, 5, 6], "mask": [3, 4, 6], "med": 3, "margin": 3, "rho_norm": 3, "nearest": 3, "renam": 3, "plot": [3, 4, 5, 6], "left": [3, 6], "e": [3, 5, 6], "overlaid": 3, "right": [3, 6], "levels1": 3, "arang": [3, 6], "levels2": 3, "rn": 3, "contourf": 3, "level": 3, "cbar1": 3, "potential_dens": 3, "roll": 3, "contour": 3, "exp": 3, "k": [3, 4], "linewidth": [3, 4], "coral": 3, "cbar2": 3, "j": 3, "set_ylim": 3, "3000": [3, 4], "set_xlim": 3, "set_xlabel": 3, "set_ylabel": 3, "r": [3, 4], "kg": 3, "do": [3, 6], "given": 3, "definit": 3, "ds_rn": 3, "coord": [3, 5, 6], "lat_c": 3, "lat_g": 3, "center": [3, 6], "inner": [3, 6], "outer": [3, 6], "lev_grid": 3, "broadcast_lik": 3, "target_level": 3, "025": 3, "depth_rho_norm": 3, "target_data": 3, "linear": 3, "normal": 3, "space": 3, "150": [3, 5, 6], "4000": 3, "400": 3, "viridis_r": 3, "hline": 3, "ylabel": 3, "xlabel": 3, "xlim": 3, "cbar": [3, 4], "pyc_depth": 3, "str": [3, 4], "round": [3, 4], "1221": 3, "abl": 3, "extract": [3, 5], "showcas": 4, "gulf": 4, "stream": [4, 5], "region": 4, "produc": [4, 6], "train": 4, "model": [4, 6], "predict": 4, "includ": [4, 6], "state": 4, "phi": [4, 6], "repres": [4, 5, 6], "temperatur": [4, 5, 6], "respect": [4, 6], "ii": 4, "atmospher": [4, 6], "condit": 4, "tau": 4, "tau_u": 4, "tau_v": 4, "t_": 4, "atm": 4, "wind": 4, "stress": 4, "air": 4, "iii": 4, "nb": 4, "input": [4, 6], "vector": [4, 6], "channel": 4, "three": [4, 5, 6], "phi_": [4, 6], "tau_t": 4, "retriev": 4, "store": 4, "rather": [4, 6], "arxiv": 4, "org": [4, 6], "pdf": 4, "2402": 4, "04342": 4, "cart": 4, "longitude_formatt": 4, "latitude_formatt": 4, "locat": [4, 5, 6], "wa": 4, "interest": 4, "Then": 4, "ground": 4, "truth": 4, "wet_nan": 4, "npy": 4, "to_dataarrai": 4, "to_numpi": 4, "ground_truth": 4, "model_pred_unet": 4, "width": 4, "assert": [4, 6], "119": 4, "189": 4, "1000": 4, "same": [4, 5, 6], "dure": 4, "n_plot": 4, "denorm": 4, "constant": 4, "mean_out": 4, "48182137e": 4, "05207746e": 4, "21086583e01": 4, "std_out": 4, "15139965": 4, "14337273": 4, "03747046": 4, "base": 4, "var_list": 4, "bar": 4, "circ": 4, "c": [4, 6], "get_vmin_vmax": 4, "ind_plot": 4, "limit": 4, "ab": 4, "get_cmap": 4, "els": 4, "diff": [4, 6], "get_fig_ax": 4, "updat": 4, "gridspec_kw": 4, "width_ratio": 4, "height_ratio": 4, "wspace": 4, "one": [4, 6], "plot_single_snapshot": 4, "x_plot": 4, "x_c": 4, "y_plot": 4, "y_c": 4, "plt0": 4, "pcolormesh": 4, "shade": 4, "auto": 4, "add_featur": 4, "featur": 4, "zorder": 4, "edgecolor": 4, "gl": 4, "draw_label": 4, "true": [4, 6], "grai": 4, "top_label": 4, "right_label": 4, "yrotat": 4, "xformatt": 4, "yformatt": 4, "cm2": 4, "po": 4, "get_posit": 4, "new": [4, 6], "anchor": 4, "middl": 4, "new_po": 4, "x0": 4, "075": 4, "y0": 4, "adjust": 4, "need": [4, 6], "posit": [4, 6], "cax": 4, "add_ax": 4, "orient": 4, "horizont": 4, "set_tick": 4, "ceil": 4, "delax": 4, "plt1": 4, "unet": 4, "tau_": 4, "set_axis_off": 4, "rollout": 4, "set_arrai": 4, "flatten": 4, "set_text": 4, "final": 4, "everi": 4, "speed": 4, "up": 4, "other": [4, 6], "open": [5, 6], "sourc": [5, 6], "python": [5, 6], "design": 5, "labll": 5, "multidimension": [5, 6], "effici": 5, "manner": 5, "By": 5, "often": 5, "call": [5, 6], "dimension": 5, "mani": [5, 6], "independ": 5, "For": 5, "exampl": 5, "might": 5, "earth": 5, "spatial": [5, 6], "ha": [5, 6], "associ": 5, "relationship": 5, "between": [5, 6], "wget": 5, "raw": [5, 6], "master": 5, "sst": 5, "noaa_ncdc_ersst_v3b_sst": 5, "1960": 5, "2024": 5, "resolv": 5, "140": [5, 6], "116": [5, 6], "connect": 5, "443": 5, "request": [5, 6], "sent": 5, "await": 5, "respons": [5, 6], "302": [5, 6], "found": [5, 6], "githubusercont": 5, "follow": [5, 6], "185": 5, "199": 5, "110": [5, 6], "133": 5, "111": 5, "108": [5, 6], "ok": 5, "785127": 5, "767k": 5, "applic": 5, "octet": 5, "766": 5, "73k": 5, "kb": 5, "007": 5, "103": 5, "mb": 5, "convent": [5, 6], "iridl": 5, "ldeo": 5, "columbia": 5, "edu": 5, "noaa": 5, "ncdc": 5, "ersst": 5, "clean": 5, "ryan": 5, "abernathei": 5, "research": 5, "compu": 5, "89lon": 5, "180time": 5, "12coordin": 5, "0standard_nam": [5, 6], "latitudepointwidth": 5, "0gridtyp": 5, "0unit": 5, "degree_northarrai": 5, "float320": [5, 6], "longitudepointwidth": 5, "1unit": 5, "degree_eastarrai": 5, "92": [5, 6], "96": [5, 6], "98": [5, 6], "102": [5, 6], "104": [5, 6], "106": [5, 6], "112": [5, 6], "114": [5, 6], "122": [5, 6], "124": [5, 6], "126": [5, 6], "128": [5, 6], "130": [5, 6], "134": [5, 6], "136": [5, 6], "138": [5, 6], "142": [5, 6], "146": [5, 6], "148": [5, 6], "152": [5, 6], "154": [5, 6], "156": [5, 6], "160": [5, 6], "162": [5, 6], "164": [5, 6], "166": [5, 6], "168": [5, 6], "170": [5, 6], "172": [5, 6], "174": [5, 6], "176": [5, 6], "178": [5, 6], "182": [5, 6], "186": [5, 6], "188": [5, 6], "192": [5, 6], "194": [5, 6], "196": [5, 6], "198": [5, 6], "202": [5, 6], "204": [5, 6], "206": [5, 6], "208": [5, 6], "210": [5, 6], "214": [5, 6], "216": [5, 6], "218": [5, 6], "220": [5, 6], "222": [5, 6], "224": [5, 6], "226": [5, 6], "228": [5, 6], "230": [5, 6], "232": [5, 6], "234": [5, 6], "236": [5, 6], "238": [5, 6], "242": [5, 6], "244": [5, 6], "246": [5, 6], "248": [5, 6], "250": [5, 6], "252": [5, 6], "254": [5, 6], "256": [5, 6], "258": [5, 6], "260": [5, 6], "262": [5, 6], "264": [5, 6], "266": [5, 6], "268": [5, 6], "272": [5, 6], "274": [5, 6], "276": [5, 6], "278": [5, 6], "280": [5, 6], "282": [5, 6], "284": [5, 6], "286": [5, 6], "288": [5, 6], "290": [5, 6], "292": [5, 6], "294": [5, 6], "296": [5, 6], "304": [5, 6], "306": [5, 6], "308": [5, 6], "310": [5, 6], "312": [5, 6], "314": [5, 6], "316": [5, 6], "320": [5, 6], "322": [5, 6], "324": [5, 6], "326": [5, 6], "328": [5, 6], "330": [5, 6], "332": [5, 6], "334": [5, 6], "336": [5, 6], "338": [5, 6], "340": [5, 6], "342": [5, 6], "344": [5, 6], "346": [5, 6], "348": [5, 6], "15arrai": 5, "15t00": 5, "000000000": 5, "pointwidth": 5, "0valid_min": 5, "0valid_max": 5, "degree_celsiuslong_nam": 5, "reconstruct": 5, "sea_surface_temperatureiridl": 5, "hassemant": 5, "seasurfacetemperatur": 5, "192240": 5, "datetimeindex": 5, "iridlsourc": 5, "version3b": 5, "scienc": 5, "like": 5, "two": 5, "fundament": [5, 6], "dataarrai": [5, 6], "hold": 5, "singl": [5, 6], "multi": 5, "its": 5, "multipl": [5, 6], "share": 5, "four": 5, "essenti": 5, "dim": 5, "g": [5, 6], "z": [5, 6], "contain": [5, 6], "number": [5, 6], "datetim": 5, "string": 5, "attr": 5, "ordereddict": 5, "arbitrari": 5, "simpli": 5, "syntax": 5, "valid_min": 5, "valid_max": 5, "degree_celsiu": 5, "long_nam": 5, "standard_nam": [5, 6], "sea_surface_temperatur": 5, "seasurfacetemperaturexarrai": 5, "12lat": 5, "along": [5, 6], "transpos": 5, "packg": 6, "numer": 6, "gener": 6, "circul": 6, "gcm": 6, "similar": 6, "amen": 6, "finit": 6, "element": 6, "etc": 6, "solv": 6, "problem": 6, "consum": 6, "structur": 6, "rich": 6, "represent": 6, "ideal": 6, "analyz": 6, "wai": 6, "provid": 6, "conveni": 6, "group": 6, "awar": 6, "via": 6, "parallel": 6, "On": 6, "top": 6, "understand": 6, "commonli": 6, "differenti": 6, "integr": 6, "suit": 6, "inlin": 6, "concept": 6, "notion": 6, "lie": 6, "physic": 6, "rel": 6, "There": 6, "five": 6, "possibl": 6, "support": 6, "lower": 6, "upper": 6, "exclud": 6, "while": 6, "fewer": 6, "extra": 6, "These": 6, "although": 6, "technic": 6, "directli": 6, "recommend": 6, "x_center": 6, "x_left": 6, "int64": 6, "empti": 6, "9x_left": 6, "9coordin": 6, "int641": 6, "9arrai": 6, "5arrai": 6, "x_centerpandasindexpandasindex": 6, "x_leftpandasindexpandasindex": 6, "idea": 6, "relat": 6, "thei": 6, "subject": 6, "standard": 6, "broadcast": 6, "rule": 6, "when": 6, "specifi": 6, "part": 6, "keyword": 6, "argument": 6, "inform": 6, "about": 6, "indic": 6, "successfulli": 6, "understood": 6, "did": 6, "assum": 6, "arrow": 6, "after": 6, "explain": 6, "If": 6, "look": 6, "kei": 6, "search": 6, "defin": 6, "determin": 6, "consid": 6, "c_grid_axis_shift": 6, "accept": 6, "absent": 6, "identifi": 6, "conjunct": 6, "infer": 6, "9axi": 6, "5axi": 6, "xc_grid_axis_shift": 6, "default": 6, "vice": 6, "versa": 6, "what": 6, "deeper": 6, "introduc": 6, "most": 6, "offset": 6, "situat": 6, "edg": 6, "As": 6, "geometri": 6, "illustr": 6, "place": 6, "scalar": 6, "compon": 6, "present": 6, "dilemma": 6, "But": 6, "clearli": 6, "well": 6, "One": 6, "goal": 6, "delta_x": 6, "x_": 6, "overlin": 6, "half": 6, "gridpoint": 6, "With": 6, "entir": 6, "calculu": 6, "calcul": 6, "pycnoclin": 6, "da": 6, "sin": 6, "pi": 6, "42787610e": 6, "84807753e": 6, "66025404e": 6, "42020143e": 6, "44929360e": 6, "9xarrai": 6, "6428": 6, "9848": 6, "866": 6, "449e": 6, "16arrai": 6, "da_interp": 6, "interp": 6, "21393805e": 6, "13797681e": 6, "25416578e": 6, "04022774e": 6, "11022302e": 6, "5xarrai": 6, "3214": 6, "8138": 6, "9254": 6, "604": 6, "11e": 6, "3214arrai": 6, "see": 6, "origin": 6, "notic": 6, "verifi": 6, "veri": 6, "isclos": 6, "da_diff": 6, "64278761": 6, "34202014": 6, "11878235": 6, "52400526": 6, "68404029": 6, "1188": 6, "524": 6, "684": 6, "6428arrai": 6, "cumsum": 6, "till": 6, "were": 6, "logic": 6, "rectangular": 6, "domain": 6, "modern": 6, "consist": 6, "order": 6, "construct": 6, "tell": 6, "capabl": 6, "exchang": 6, "appropri": 6, "data_c": 6, "random": 6, "rand": 6, "xl": 6, "yl": 6, "3805": 6, "6691": 6, "5798": 6, "5057": 6, "5777": 6, "9754xarrai": 6, "2y": 6, "25x": 6, "25xl": 6, "25yl": 6, "25coordin": 6, "int640": 6, "24axi": 6, "yarrai": 6, "yc_grid_axis_shift": 6, "1arrai": 6, "9754arrai": 6, "38050841": 6, "66911557": 6, "57977919": 6, "34043216": 6, "69426741": 6, "30558899": 6, "98531149": 6, "67064199": 6, "808747": 6, "7746574": 6, "42567927": 6, "09605886": 6, "57800293": 6, "18551924": 6, "59736891": 6, "6303882": 6, "48380754": 6, "5359086": 6, "5536786": 6, "61689751": 6, "66614141": 6, "82131042": 6, "21561833": 6, "04738659": 6, "74468556": 6, "35199479": 6, "92007086": 6, "62148259": 6, "30534105": 6, "70037657": 6, "13104648": 6, "73070387": 6, "46763553": 6, "03294899": 6, "82484535": 6, "29520792": 6, "09643535": 6, "55723006": 6, "72976135": 6, "21831177": 6, "91443359": 6, "97808909": 6, "41886117": 6, "84547218": 6, "56541945": 6, "92133486": 6, "18546653": 6, "30025192": 6, "77651597": 6, "064533": 6, "55213107": 6, "75403963": 6, "43751977": 6, "50168599": 6, "17637187": 6, "89344219": 6, "45534326": 6, "27886561": 6, "23121104": 6, "69568241": 6, "56275908": 6, "40177727": 6, "52032556": 6, "13549928": 6, "78426518": 6, "01863892": 6, "68478958": 6, "28880343": 6, "17165229": 6, "50574163": 6, "57767937": 6, "97539027": 6, "xpandasindexpandasindex": 6, "xlpandasindexpandasindex": 6, "ypandasindexpandasindex": 6, "ylpandasindexpandasindex": 6, "facepandasindexpandasindex": 6, "face_connect": 6, "dictionari": 6, "stuctur": 6, "either": 6, "tupl": 6, "content": 6, "revers": 6, "boolean": 6, "whether": 6, "simpl": 6, "plu": 6, "addit": 6, "imagin": 6, "join": 6, "sai": 6, "noth": 6, "complementari": 6, "exist": 6, "urllib": 6, "shutil": 6, "zenodo": 6, "record": 6, "4421428": 6, "file_nam": 6, "mitgcm_example_dataset_v2": 6, "save_file_nam": 6, "dataset_": 6, "urlopen": 6, "wb": 6, "out_fil": 6, "copyfileobj": 6, "yc": 6, "xg": 6, "yg": 6, "xc": 6, "zl": 6, "maskc": 6, "dyc": 6, "hfacc": 6, "ra": 6, "hfac": 6, "raz": 6, "dxc": 6, "hfacw": 6, "uvel": 6, "vvel": 6, "wvel": 6, "salt": 6, "theta": 6, "ph": 6, "eta": 6, "cf": 6, "md": 6, "binari": 6, "open_mdsdataset": 6, "extra_metadata": 6, "ll": 6, "1z": 6, "15yc": 6, "40xg": 6, "90yg": 6, "40xc": 6, "90zl": 6, "15coordin": 6, "00standard_nam": 6, "timelong_nam": 6, "tcalendar": 6, "gregorianarrai": 6, "39600000000000": 6, "sea_binary_mask_at_t_locationlong_nam": 6, "denot": 6, "54000": 6, "cell_y_size_at_v_locationlong_nam": 6, "sizeunit": 6, "mcoordin": 6, "3600": 6, "cell_vertical_fractionlong_nam": 6, "vertic": 6, "fraction": 6, "cell_arealong_nam": 6, "areaunit": 6, "m2coordin": 6, "cell_vertical_fraction_at_v_locationlong_nam": 6, "ocean_depthlong_nam": 6, "depthunit": 6, "latitude_at_f_locationlong_nam": 6, "degrees_northaxi": 6, "855e": 6, "03standard_nam": 6, "depthlong_nam": 6, "centerunit": 6, "mposit": 6, "downaxi": 6, "zarrai": 6, "670": 6, "935": 6, "1250": 6, "1615": 6, "2030": 6, "2495": 6, "3010": 6, "3575": 6, "4190": 6, "4855": 6, "phrefc": 6, "cell_reference_pressurelong_nam": 6, "hydrostat": 6, "pressureunit": 6, "dyg": 6, "cell_y_size_at_u_locationlong_nam": 6, "cell_area_at_u_locationlong_nam": 6, "drf": 6, "cell_z_sizelong_nam": 6, "latitudelong_nam": 6, "degrees_northcoordin": 6, "xcaxi": 6, "dxg": 6, "cell_x_size_at_v_locationlong_nam": 6, "longitude_at_f_locationlong_nam": 6, "degrees_eastcoordin": 6, "xgaxi": 6, "iter": 6, "timesteplong_nam": 6, "timestep": 6, "maskw": 6, "cell_vertical_fraction_at_u_locationlong_nam": 6, "interfac": 6, "87e": 6, "51e": 6, "depth_at_upper_w_locationlong_nam": 6, "interfaceunit": 6, "zc_grid_axis_shift": 6, "550": 6, "790": 6, "1420": 6, "1810": 6, "2250": 6, "2740": 6, "3280": 6, "3870": 6, "4510": 6, "cell_area_at_v_locationlong_nam": 6, "cell_area_at_f_locationlong_nam": 6, "cell_x_size_at_u_locationlong_nam": 6, "float322": 6, "longitudelong_nam": 6, "uvellong_nam": 6, "smate": 6, "vvellong_nam": 6, "wvellong_nam": 6, "r_unit": 6, "saltlong_nam": 6, "salinityunit": 6, "psu": 6, "thetalong_nam": 6, "temperatureunit": 6, "sea_water_dynamic_pressuelong_nam": 6, "pressur": 6, "pot": 6, "rho": 6, "anomalyunit": 6, "etanlong_nam": 6, "timedeltaindex": 6, "ygpandasindexpandasindex": 6, "zpandasindexpandasindex": 6, "ycpandasindexpandasindex": 6, "xgpandasindexpandasindex": 6, "zlpandasindexpandasindex": 6, "xcpandasindexpandasindex": 6, "6titl": 6, "datasourc": 6, "mitgcmhistori": 6, "llc_method": 6, "smallchunk": 6, "nz": 6, "ny": 6, "nx": 6, "default_dtyp": 6, "ignore_unknown_var": 6, "endian": 6, "swap_dim": 6, "grid_vars_to_coord": 6, "sphericalpolar": 6, "gregorian": 6, "ref_dat": 6, "delta_t": 6, "read_grid": 6, "prefix": 6, "grid_dir": 6, "global_oce_latlon": 6, "non": 6}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"introduct": [0, 5, 6], "basic": 1, "plot": [1, 2], "mom6": [1, 3], "om4": 2, "anim": [2, 4], "global": 2, "plotter": 2, "region": 2, "surfac": 2, "kinet": 2, "energi": 2, "north": 2, "atlant": 2, "pacif": 2, "aghula": 2, "pycnoclin": 3, "depth": 3, "us": 3, "load": 3, "data": [3, 5], "file": 3, "temperatur": 3, "salin": 3, "calcul": 3, "potenti": 3, "densiti": 3, "rel": 3, "pressur": 3, "overlin": 3, "rho": 3, "_": 3, "norm": 3, "from": 3, "transform": [3, 6], "rho_": 3, "y": 3, "z": 3, "averag": 3, "between": 3, "60": 3, "60n": 3, "conclus": 3, "ocean": 4, "emul": 4, "u": 4, "net": 4, "xarrai": 5, "structur": 5, "index": 5, "xgcm": 6, "axi": 6, "arakawa": 6, "grid": 6, "core": 6, "oper": 6, "interpol": 6, "differ": 6, "complex": 6, "topolog": 6, "two": 6, "connect": 6, "face": 6, "exampl": 6, "dataset": 6, "mitgcm": 6}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file +Search.setIndex({"docnames": ["intro", "notebooks/MOM6_basic_plotting", "notebooks/OM4_SE_animation", "notebooks/pycnocline_depth_mom6", "notebooks/unet_movie", "notebooks/xarray_intro", "notebooks/xgcm_intro"], "filenames": ["intro.md", "notebooks/MOM6_basic_plotting.ipynb", "notebooks/OM4_SE_animation.ipynb", "notebooks/pycnocline_depth_mom6.ipynb", "notebooks/unet_movie.ipynb", "notebooks/xarray_intro.ipynb", "notebooks/xgcm_intro.ipynb"], "titles": ["Introduction", "Basic Plotting with MOM6", "OM4 Animation", "Pycnocline Depth using MOM6", "Ocean Emulation Animations with U-Net", "Introduction to Xarray", "Introduction to XGCM"], "terms": {"under": 0, "develop": 0, "The": [0, 3, 4, 6], "data": [0, 1, 2, 4, 6], "galleri": [0, 4], "project": [0, 1, 2, 4], "an": [0, 2, 4, 5, 6], "m": [0, 2, 3, 4, 6], "2": [0, 1, 2, 3, 4, 5, 6], "line": 0, "initi": 0, "ingest": 0, "relev": [0, 4], "us": [0, 1, 2, 4, 5, 6], "case": 0, "from": [0, 1, 2, 4, 6], "our": [0, 1, 3, 6], "build": 0, "websit": 0, "demonstr": [0, 3], "how": [0, 3, 6], "work": [0, 3, 5, 6], "specif": 0, "dataset": [0, 1, 2, 3, 5], "appli": [0, 3], "common": 0, "comput": [0, 5, 6], "method": [0, 3], "them": [0, 4, 6], "so": [0, 1, 3], "far": 0, "we": [0, 1, 2, 3, 4, 5, 6], "ar": [0, 3, 4, 5, 6], "focus": 0, "tool": 0, "analysi": [0, 6], "m2line": [0, 4], "gfdl": 0, "om4": 0, "simul": 0, "which": [0, 4, 5, 6], "have": [0, 1, 2, 4, 6], "impact": 0, "ai": 0, "improv": 0, "some": 0, "describ": [0, 5, 6], "thi": [0, 1, 2, 3, 4, 5, 6], "medium": 0, "articl": 0, "check": [0, 6], "back": 0, "soon": 0, "more": [0, 6], "notebook": [1, 2, 3, 4, 5, 6], "take": [1, 4], "you": [1, 2, 3, 4, 5, 6], "through": [1, 6], "xarrai": [1, 2, 3, 4, 6], "s": [1, 2, 3, 4, 5, 6], "function": [1, 4], "just": 1, "thin": 1, "wrapper": [1, 6], "around": 1, "popular": 1, "matplotlib": [1, 2, 3, 4, 6], "librari": [1, 2], "befor": [1, 3, 5, 6], "get": [1, 3, 4, 5, 6], "start": [1, 2, 3, 5, 6], "mai": [1, 3, 5, 6], "choos": [1, 3, 5, 6], "run": [1, 2, 3, 4, 5, 6], "leap": [1, 2, 3, 4, 5, 6], "pangeo": [1, 2, 3, 4, 5, 6], "hub": [1, 2, 3, 4, 5, 6], "binder": [1, 3, 5, 6], "inspir": [1, 3], "analysiscodebook": 1, "doc": 1, "import": [1, 2, 3, 4, 5, 6], "xr": [1, 2, 3, 4, 5, 6], "cartopi": [1, 2, 4], "cr": [1, 2, 4], "ccr": [1, 2, 4], "cmocean": [1, 4], "pyplot": [1, 2, 3, 4, 6], "plt": [1, 2, 3, 4, 6], "ds": [1, 2, 3, 5, 6], "open_dataset": [1, 2, 3, 4, 5, 6], "thetao_epbl_data_timemean_1978": [1, 3], "2002": [1, 3], "nc": [1, 2, 3, 4, 5, 6], "lt": [1, 2, 5, 6], "gt": [1, 2, 5, 6], "dimens": [1, 2, 5, 6], "lat": [1, 2, 3, 5], "180": [1, 5, 6], "lon": [1, 2, 3, 5], "360": [1, 2, 6], "time": [1, 2, 3, 4, 5, 6], "1": [1, 2, 3, 4, 5, 6], "z_l": [1, 3], "75": [1, 4], "coordin": [1, 2, 5, 6], "float64": [1, 2, 6], "89": [1, 2, 5], "5": [1, 2, 3, 4, 6], "88": [1, 2, 5, 6], "87": 1, "86": [1, 5, 6], "85": [1, 6], "0": [1, 2, 3, 4, 5, 6], "3": [1, 2, 3, 4, 5, 6], "4": [1, 2, 4, 5, 6], "355": 1, "356": [1, 5, 6], "357": 1, "358": [1, 5, 6], "359": 1, "object": [1, 2, 4, 5, 6], "1988": 1, "01": [1, 2, 5, 6], "09": [1, 2, 5], "00": [1, 2, 5, 6], "7": [1, 2, 5, 6], "668e": 1, "03": [1, 2, 5, 6], "339e": 1, "6": [1, 2, 3, 4, 5, 6], "098e": 1, "variabl": [1, 2, 5, 6], "thetao": [1, 3], "float32": [1, 2, 5, 6], "attribut": [1, 2, 5, 6], "titl": [1, 2, 3, 6], "om4p25_jra55do1": 1, "4_r6_cycle1_mle1_zgrid": 1, "associated_fil": [1, 2], "areacello": [1, 2], "19580101": 1, "ocean_stat": [1, 2], "grid_typ": [1, 2], "regular": [1, 2], "grid_til": [1, 2], "n": [1, 2, 5, 6], "A": [1, 2, 5, 6], "code_release_vers": 1, "19": [1, 2, 6], "git_hash": 1, "c97c1f6afab0df3545ee82c337d51accc4205bc3": 1, "creationtim": 1, "wed": 1, "dec": 1, "28": [1, 2, 3, 5, 6], "08": [1, 2, 5], "43": [1, 2], "57": [1, 2], "2022": 1, "hostnam": 1, "pp206": 1, "histori": [1, 5, 6], "oct": 1, "11": [1, 2, 5, 6], "21": [1, 2, 6], "04": [1, 2, 5], "2023": 1, "nck": 1, "v": [1, 2, 4], "epbl_data": 1, "comment": 1, "fm": 1, "averag": [1, 2], "version": 1, "precis": 1, "doubl": 1, "nco": 1, "netcdf": [1, 3, 6], "oper": 1, "homepag": 1, "http": [1, 3, 4, 5, 6], "datasetdimens": [1, 2, 5, 6], "180lon": 1, "360time": 1, "1z_l": 1, "75coordin": 1, "5long_nam": 1, "latitudeunit": [1, 2, 6], "degrees_naxi": 1, "ybound": 1, "lat_bndsarrai": 1, "84": [1, 2, 5, 6], "83": 1, "82": [1, 5, 6], "81": 1, "80": [1, 2, 5, 6], "79": [1, 2], "78": [1, 2, 5, 6], "77": 1, "76": [1, 2, 5, 6], "74": [1, 2, 5, 6], "73": [1, 2], "72": [1, 5, 6], "71": [1, 2], "70": [1, 2, 3, 5, 6], "69": [1, 2], "68": [1, 2, 5, 6], "67": [1, 2], "66": [1, 2, 5, 6], "65": [1, 2, 3], "64": [1, 2, 5, 6], "63": [1, 2], "62": [1, 2, 5, 6], "61": [1, 2], "60": [1, 2, 5, 6], "59": [1, 2], "58": [1, 2, 5, 6], "56": [1, 2, 5, 6], "55": [1, 2, 3], "54": [1, 2, 5, 6], "53": [1, 2], "52": [1, 2, 5, 6], "51": [1, 2], "50": [1, 2, 5, 6], "49": [1, 2], "48": [1, 2, 5, 6], "47": [1, 2], "46": [1, 2, 5, 6], "45": [1, 2, 3, 5], "44": [1, 2, 5, 6], "42": [1, 2, 5, 6], "41": [1, 2], "40": [1, 2, 5, 6], "39": [1, 2], "38": [1, 2, 5, 6], "37": [1, 2], "36": [1, 2, 5, 6], "35": [1, 2], "34": [1, 2, 5, 6], "33": [1, 2, 5], "32": [1, 2, 5, 6], "31": [1, 2], "30": [1, 2, 5, 6], "29": [1, 2], "27": [1, 2], "26": [1, 2, 5, 6], "25": [1, 2, 3, 4, 6], "24": [1, 2, 5, 6], "23": [1, 2, 6], "22": [1, 2, 5, 6], "20": [1, 2, 4, 5, 6], "18": [1, 2, 5, 6], "17": [1, 2, 6], "16": [1, 2, 4, 5, 6], "15": [1, 2, 4, 5, 6], "14": [1, 2, 5, 6], "13": [1, 2, 5, 6], "12": [1, 2, 4, 5, 6], "10": [1, 2, 3, 4, 5, 6], "9": [1, 2, 4, 6], "8": [1, 2, 5, 6], "float640": [1, 6], "longitudeunit": [1, 2, 6], "degrees_eaxi": 1, "xbound": 1, "lon_bndsarrai": 1, "object1988": 1, "00long_nam": 1, "timeaxi": [1, 6], "tcalendar_typ": 1, "julianbound": 1, "time_bndscell_method": 1, "meanarrai": 1, "cftime": [1, 2], "datetimejulian": [1, 2], "has_year_zero": [1, 2], "fals": [1, 2, 3, 4, 6], "dtype": [1, 2, 5, 6], "float641": [1, 2], "03unit": 1, "meterslong_nam": 1, "depth": [1, 6], "cell": [1, 2, 6], "centeraxi": 1, "zposit": 1, "downedg": 1, "z_iarrai": 1, "000000e": 1, "100000e": 1, "300000e": 1, "500000e": 1, "700000e": 1, "900000e": 1, "100500e": 1, "301500e": 1, "502500e": 1, "704000e": 1, "906500e": 1, "110500e": 1, "316500e": 1, "524500e": 1, "735500e": 1, "951000e": 1, "172000e": 1, "400000e": 1, "637000e": 1, "886000e": 1, "150500e": 1, "434500e": 1, "743500e": 1, "083500e": 1, "461500e": 1, "887000e": 1, "371000e": 1, "926500e": 1, "056950e": 1, "02": [1, 2, 4, 5], "131800e": 1, "219400e": 1, "322350e": 1, "443650e": 1, "586800e": 1, "755900e": 1, "955750e": 1, "191800e": 1, "470400e": 1, "798900e": 1, "185650e": 1, "640200e": 1, "173500e": 1, "798000e": 1, "527850e": 1, "379050e": 1, "369650e": 1, "520100e": 1, "853400e": 1, "139540e": 1, "317505e": 1, "522475e": 1, "758080e": 1, "028360e": 1, "337815e": 1, "691455e": 1, "094835e": 1, "554110e": 1, "076095e": 1, "668325e": 1, "339115e": 1, "097620e": 1, "unit": [1, 2, 5, 6], "degclong_nam": 1, "sea": [1, 2, 3, 5], "water": 1, "potenti": [1, 5, 6], "temperaturecell_measur": 1, "volum": [1, 6], "volcello": 1, "area": [1, 2, 6], "areacellostandard_nam": 1, "sea_water_potential_temperatureinterp_method": 1, "conserve_order1cell_method": 1, "mean": [1, 2, 3, 5, 6], "yh": [1, 2], "xh": [1, 2], "meantime_avg_info": 1, "average_t1": [1, 2], "average_t2": [1, 2], "average_dt": [1, 2], "4860000": 1, "valu": [1, 3, 4, 5, 6], "index": [1, 2, 6], "latpandasindexpandasindex": [1, 5], "x27": [1, 2, 5, 6], "name": [1, 2, 5, 6], "length": [1, 2, 5, 6], "lonpandasindexpandasindex": [1, 5], "5000000000000002": 1, "499999999999999": 1, "350": [1, 3, 5, 6], "50000000000006": 1, "351": 1, "352": [1, 5, 6], "353": 1, "354": [1, 5, 6], "timepandasindexpandasindex": [1, 2, 5, 6], "cftimeindex": [1, 2], "calendar": [1, 2, 6], "julian": [1, 2], "freq": [1, 2, 5, 6], "none": [1, 2, 5, 6], "z_lpandasindexpandasindex": 1, "004999999999995": 1, "015": 1, "02499999999999": 1, "03999999999999": 1, "065": 1, "105": 1, "16499999999999": 1, "24499999999999": 1, "35499999999999": 1, "50999999999999": 1, "505": 1, "345": 1, "435": 1, "83500000000001": 1, "61500000000001": 1, "93": [1, 2], "99": 1, "26499999999999": 1, "695": 1, "113": [1, 5], "17999999999999": 1, "121": 1, "94": [1, 2, 5, 6], "132": [1, 5, 6], "23499999999999": 1, "144": [1, 5, 6], "36499999999998": 1, "158": [1, 5, 6], "67999999999998": 1, "175": 1, "58999999999997": 1, "195": 1, "575": 1, "219": 1, "17999999999998": 1, "247": 1, "279": 1, "318": [1, 5, 6], "56500000000005": 1, "364": 1, "02000000000004": 1, "417": 1, "479": 1, "80000000000007": 1, "552": 1, "7850000000001": 1, "637": 1, "905": 1, "736": 1, "965": 1, "852": 1, "985": 1, "3400000000001": 1, "1139": 1, "1317": 1, "1522": 1, "475": 1, "1758": 1, "2028": 1, "2337": 1, "8149999999996": 1, "2691": 1, "455": [1, 6], "3094": 1, "835": 1, "3554": 1, "4076": 1, "0950000000003": 1, "4668": 1, "325": 1, "5339": 1, "115": 1, "6097": 1, "4_r6_cycle1_mle1_zgridassociated_fil": 1, "ncgrid_typ": 1, "regulargrid_til": 1, "acode_release_vers": 1, "1git_hash": 1, "c97c1f6afab0df3545ee82c337d51accc4205bc3creationtim": 1, "2022hostnam": 1, "pp206histori": 1, "epbl_data_timemean_1978_2002": 1, "fri": 1, "aug": 1, "ncra": 1, "ocean_monthly_z_1x1deg": 1, "1958": 1, "1962": 1, "ann": 1, "1963": 1, "1967": 1, "1968": 1, "1972": 1, "1973": 1, "1977": 1, "1978": 1, "1982": 1, "1983": 1, "1987": 1, "1992": 1, "1993": 1, "1997": 1, "1998": 1, "2003": 1, "2007": 1, "2008": [1, 2], "2012": [1, 2], "2013": 1, "2017": 1, "fregrid": 1, "standard_dimens": 1, "input_mosa": 1, "ocean_mosa": 1, "input_fil": 1, "annual": 1, "interp_method": 1, "conserve_order1": 1, "remap_fil": 1, "fregrid_remap_file_360_by_180": 1, "nlon": 1, "nlat": 1, "scalar_field": 1, "obvfsq": 1, "uo": 1, "vo": 1, "umo": 1, "vmo": 1, "vhml": 1, "n2": 1, "time_bnd": [1, 2], "output_fil": 1, "out": [1, 3, 6], "nccomment": 1, "doublenco": 1, "sf": 1, "net": 1, "code": 1, "github": [1, 5], "com": [1, 3, 5], "let": [1, 4, 6], "first": [1, 4, 6], "file": [1, 6], "isel": [1, 2], "cmap": [1, 2, 3, 4], "cm": [1, 4], "thermal": [1, 4], "figsiz": [1, 2, 3, 4, 6], "collect": 1, "quadmesh": 1, "0x7ff4b9ce3340": 1, "now": [1, 4, 6], "map": 1, "also": [1, 4, 5, 6], "add": [1, 6], "own": [1, 6], "colorbar": [1, 2, 3, 4], "figur": [1, 2, 3, 6], "subplot_kw": [1, 4], "dict": [1, 2, 5], "platecarre": [1, 2, 4], "facecolor": 1, "white": 1, "p": [1, 3, 6], "vmin": [1, 2, 3, 4, 5], "vmax": [1, 2, 3, 4, 5], "transform": [1, 2], "add_label": 1, "add_colorbar": [1, 2, 3], "separ": 1, "cb": [1, 2], "tick": [1, 4], "shrink": [1, 2], "95": [1, 2], "ax": [1, 2, 3, 4, 5, 6], "tick_param": [1, 4], "labels": [1, 4], "can": [1, 5, 6], "pick": 1, "ani": [1, 2, 5], "list": 1, "whichev": 1, "still": 1, "set": [1, 4], "differ": 1, "coastlin": [1, 2], "gridlin": [1, 2, 4], "robinson": 1, "color": [1, 2, 3, 4], "black": 1, "alpha": [1, 4], "linestyl": [1, 3, 4], "home": 1, "runner": 1, "miniconda3": 1, "env": 1, "dgm2line": 1, "lib": 1, "python3": 1, "site": 1, "packag": [1, 5], "io": 1, "__init__": 1, "py": 1, "241": 1, "downloadwarn": 1, "download": [1, 6], "naturalearth": 1, "s3": 1, "amazonaw": 1, "110m_physic": 1, "ne_110m_coastlin": 1, "zip": 1, "warn": [1, 2], "f": [1, 2], "url": [1, 6], "anoth": [1, 4, 6], "southpolarstereo": 1, "central_longitud": [1, 2], "120": [1, 5, 6], "set_ext": 1, "300": [1, 5, 6], "90": [1, 2, 5, 6], "To": [2, 4, 6], "In": [2, 3, 6], "visual": [2, 6], "creat": [2, 4, 6], "over": 2, "explor": 2, "both": [2, 6], "scale": 2, "credit": [2, 4], "pperezhogin": 2, "mom6": 2, "numpi": [2, 3, 4, 5, 6], "np": [2, 3, 4, 6], "helper": 2, "plot_help": 2, "computational_tool": 2, "remesh": 2, "gaussian_remesh": 2, "select_latlon": 2, "lk_error": 2, "x_coord": 2, "y_coord": 2, "os": 2, "load_ext": 2, "autoreload": 2, "filterwarn": 2, "ignor": 2, "hvplot": 2, "holoview": 2, "hv": 2, "mpl": [2, 4], "output": [2, 6], "widget_loc": 2, "bottom": 2, "path": 2, "gs": [2, 3, 4], "persist": [2, 4], "jbuseck": 2, "om4_m2lin": 2, "daily_combin": 2, "zarr": [2, 4], "engin": [2, 4], "chunk": [2, 6], "yq": 2, "1081": 2, "xq": 2, "1441": 2, "1080": [2, 6], "1440": 2, "experi": 2, "1827": 2, "nv": 2, "corioli": 2, "dask": [2, 6], "arrai": [2, 4, 5, 6], "chunksiz": 2, "271": 2, "361": 2, "meta": 2, "ndarrai": [2, 5], "270": [2, 5, 6], "areacello_bu": 2, "areacello_cu": 2, "areacello_cv": 2, "basin": [2, 3], "int32": 2, "wet_u": 2, "wet_v": 2, "299": 2, "91": 2, "timedelta64": [2, 6], "ns": [2, 5, 6], "datetime64": [2, 5], "ssu": 2, "ssv": 2, "tos": 2, "zo": 2, "20080101": 2, "om4p25_bugfixes_jra55do1": 2, "5_cycle1xarrai": 2, "1081xq": 2, "1441yh": 2, "1080xh": 2, "1440experi": 2, "2time": 2, "1827nv": 2, "2coordin": 2, "float32dask": 2, "cell_method": 2, "pointinterp_method": 2, "nonelong_nam": 2, "paramet": 2, "corner": 2, "bu": 2, "pointsunit": 2, "byte": 2, "mib": 2, "382": 2, "kib": 2, "shape": [2, 4], "graph": 2, "layer": [2, 4], "type": [2, 4], "sum": 2, "pointlong_nam": 2, "ocean": [2, 6], "grid": [2, 3, 4], "areastandard_nam": 2, "cell_areaunit": 2, "m2": [2, 6], "379": 2, "380": 2, "381": 2, "int32dask": 2, "flag_mean": 2, "global_land": 2, "southern_ocean": 2, "atlantic_ocean": 2, "pacific_ocean": 2, "arctic_ocean": 2, "indian_ocean": 2, "mediterranean_sea": 2, "black_sea": 2, "hudson_bai": 2, "baltic_sea": 2, "red_seaflag_valu": 2, "10interp_method": 2, "select": [2, 5], "indexstandard_nam": 2, "regionunit": 2, "deptho": 2, "cell_measur": 2, "areacellocell_method": 2, "floor": [2, 4], "depthstandard_nam": 2, "sea_floor_depth_below_geoidunit": 2, "dxcu": 2, "delta": 2, "x": [2, 5, 6], "u": [2, 6], "point": [2, 3, 4, 5, 6], "meter": [2, 3], "dxcv": 2, "dxt": 2, "thick": 2, "tracer": 2, "dycu": 2, "y": [2, 5, 6], "dycv": 2, "dyt": 2, "u15": 2, "unparameter": 2, "zb2020": 2, "geolat": 2, "latitud": [2, 3], "t": [2, 4, 5, 6], "degrees_north": 2, "geolat_c": 2, "geolat_u": 2, "zonal": [2, 3, 4, 6], "veloc": [2, 4, 6], "cu": 2, "geolat_v": 2, "meridion": [2, 4, 6], "cv": 2, "geolon": 2, "longitud": 2, "degrees_east": 2, "geolon_c": 2, "geolon_u": 2, "geolon_v": 2, "hfgeou": 2, "upward": 2, "geotherm": 2, "heat": 2, "flux": 2, "floorstandard_nam": 2, "upward_geothermal_heat_flux_at_sea_floorunit": 2, "w": 2, "0long_nam": 2, "vertex": 2, "numberarrai": 2, "sftof": 2, "fractionstandard_nam": 2, "seaareafractionunit": 2, "object2008": 2, "axi": [2, 5], "tbound": 2, "time_bndscalendar_typ": 2, "juliancell_method": 2, "meanlong_nam": 2, "timearrai": 2, "wet": [2, 4, 6], "land": [2, 4], "wet_c": 2, "03axi": 2, "xlong_nam": 2, "h": 2, "nomin": 2, "degrees_eastarrai": 2, "724244": 2, "476198": 2, "22815": 2, "531631": 2, "77967": 2, "027712": 2, "16axi": 2, "q": 2, "842324": 2, "594355": 2, "346385": 2, "661746": 2, "90971": 2, "157676": 2, "95axi": 2, "ylong_nam": 2, "degrees_northarrai": 2, "389238": 2, "308075": 2, "226911": 2, "729781": 2, "837868": 2, "945956": 2, "0axi": 2, "429819": 2, "348657": 2, "267493": 2, "783825": 2, "891912": 2, "period": [2, 3, 6], "end": [2, 3, 5], "meaninterp_method": 2, "velocitytime_avg_info": 2, "average_dtunit": 2, "gib": 2, "118": [2, 5, 6], "184": [2, 5, 6], "objectdask": 2, "boundari": [2, 4, 6], "temperaturestandard_nam": [2, 5], "sea_surface_temperaturetime_avg_info": 2, "degc": [2, 6], "height": [2, 4, 6], "abov": [2, 6], "geoidstandard_nam": 2, "sea_surface_height_above_geoidtime_avg_info": 2, "experimentpandasindexpandasindex": 2, "nvpandasindexpandasindex": 2, "05": [2, 5], "06": [2, 5], "07": [2, 5], "d": [2, 3], "xhpandasindexpandasindex": 2, "72424385142534": 2, "47619795417893": 2, "22815003129284": 2, "298": [2, 5, 6], "9801000979502": 2, "73204816972844": 2, "48399426259493": 2, "2359383929031": 2, "297": 2, "98788057738807": 2, "7398208331622": 2, "49175917771095": 2, "7954116364209": 2, "0434365318752": 2, "29146358221654": 2, "53949277642749": 2, "78752410305645": 2, "0355575502213": 2, "283593105613505": 2, "53163075650182": 2, "77967048973631": 2, "02771229175239": 2, "xqpandasindexpandasindex": 2, "84232356963065": 2, "5943552901672": 2, "34638489675444": 2, "09841240498736": 2, "85043783087235": 2, "60246119082325": 2, "3544825016569": 2, "1065017805884": 2, "8585190452273": 2, "61053431357254": 2, "92605940685515": 2, "174008029019525": 2, "421958886267745": 2, "66991196689831": 2, "91786725876078": 2, "16582474925989": 2, "41378442535931": 2, "66174627358603": 2, "90971028003419": 2, "15767643036936": 2, "yhpandasindexpandasindex": 2, "38923793857394": 2, "30807479101273": 2, "22691082925455": 2, "14574767486899": 2, "06458691047965": 2, "9834300812582": 2, "90227869634805": 2, "82113423022128": 2, "73999812397257": 2, "65887178655316": 2, "9731671559671": 2, "08125482376003": 2, "18934249155296": 2, "29743015934592": 2, "40551782713882": 2, "51360549493178": 2, "62169316272471": 2, "72978083051767": 2, "83786849831056": 2, "9459561661037": 2, "yqpandasindexpandasindex": 2, "42981868925645": 2, "34865656947974": 2, "26749280962936": 2, "18632905133127": 2, "1051668964908": 2, "02400790882328": 2, "94285361531256": 2, "86170550760079": 2, "78056504331342": 2, "69943364732279": 2, "02721098986355": 2, "1352986576565": 2, "24338632544942": 2, "35147399324238": 2, "45956166103532": 2, "56764932882824": 2, "67573699662118": 2, "78382466441413": 2, "89191233220704": 2, "ncgrid_til": 2, "agrid_typ": 2, "regulartitl": 2, "5_cycle1": 2, "zbu": 2, "sel": [2, 3, 5], "zbv": 2, "zbt": 2, "loresu": 2, "loresv": 2, "lorest": 2, "def": [2, 4], "ke": 2, "return": [2, 4, 6], "zbke": 2, "loresk": 2, "default_rcparam": 2, "subplot": [2, 3, 4], "hspace": [2, 4], "font": [2, 4], "size": [2, 4], "plot_glob": 2, "i": [2, 3, 4, 6], "fig": [2, 3, 4], "len_idx": 2, "elif": 2, "print": [2, 3, 4, 6], "process": [2, 4, 5], "frame": [2, 4], "time_idx": 2, "time_str": 2, "item": 2, "strftime": 2, "ax1": 2, "211": 2, "orthograph": 2, "resolut": 2, "110m": 2, "im": 2, "norm": 2, "lognorm": 2, "1e": 2, "1e0": 2, "inferno": 2, "set_titl": [2, 3, 4], "o": [2, 5], "fontsiz": [2, 4], "ax2": 2, "212": [2, 5, 6], "pad": 2, "extend": [2, 5], "aspect": [2, 4], "set_label": [2, 3, 4], "label": [2, 4, 5], "mathrm": [2, 4], "suptitl": [2, 4], "here": [2, 3, 4], "show": [2, 4], "interv": [2, 4], "dai": [2, 4, 6], "shift": [2, 6], "degre": 2, "each": [2, 4, 5, 6], "step": [2, 3, 4], "funcanim": [2, 4], "pillowwrit": 2, "update_fram": 2, "plot_func": 2, "clear": 2, "current": [2, 6], "prepar": 2, "next": [2, 4, 6], "clf": 2, "create_gif": 2, "idx": 2, "filenam": 2, "my": 2, "gif": [2, 4], "dpi": [2, 3], "200": [2, 5, 6], "fp": 2, "loop": 2, "farg": 2, "len": 2, "repeat": 2, "bool": [2, 6], "blit": 2, "writer": 2, "metadata": [2, 5, 6], "artist": 2, "me": 2, "save": [2, 4, 5], "close": [2, 6], "rang": [2, 3, 4, 6], "cpu": 2, "user": 2, "15min": 2, "7s": 2, "sy": 2, "3min": 2, "total": 2, "18min": 2, "wall": 2, "14min": 2, "plot_region": 2, "slice": [2, 3], "100": [2, 4, 5, 6], "1461": 2, "all": [2, 6], "central_latitud": 2, "stop": 2, "plot_atlant": 2, "lambda": 2, "1826": 2, "correspond": [2, 4], "1821": 2, "10min": 2, "13min": 2, "9min": 2, "plot_pacif": 2, "240": [2, 5, 6], "190": [2, 5, 6], "plot_aghula": 2, "8s": 2, "8min": 2, "tutori": [3, 5], "xgcm": 3, "modul": 3, "codebas": 3, "dr": 3, "emili": 3, "newsom": 3, "agupub": 3, "onlinelibrari": 3, "wilei": 3, "doi": 3, "full": 3, "1029": 3, "2023gl105673": 3, "panda": [3, 5], "pd": 3, "gsw": 3, "set_opt": [3, 5], "display_styl": [3, 5], "html": [3, 5], "rcparam": [3, 4, 6], "data_dir": [3, 6], "file_t": 3, "file_": 3, "so_epbl_data_timemean_1978": 3, "file_n2": 3, "n2_epbl_data_timemean_1978": 3, "onli": [3, 6], "z_i": 3, "later": [3, 4, 6], "basin_fil": 3, "ocean_static_rm2": 3, "dt": 3, "dn2": 3, "db": 3, "squeez": 3, "absolut": 3, "salinti": 3, "sa": 3, "conserv": 3, "ct": 3, "result": 3, "pretti": 3, "insensit": 3, "refer": [3, 6], "becaus": [3, 6], "slightli": 3, "smoother": 3, "than": [3, 4, 6], "sigma_2": 3, "2000": 3, "sigma2": 3, "sa_from_sp": 3, "ct_from_t": 3, "sigma0": 3, "below": [3, 6], "surfac": [3, 4, 5, 6], "gyre": 3, "begin": [3, 5], "equat": [3, 5], "frac": [3, 6], "b": 3, "mbox": 3, "max": [3, 4], "big": 3, "ml_depth": 3, "pd_no_m": 3, "where": [3, 5, 6], "mask": [3, 4, 6], "med": 3, "margin": 3, "rho_norm": 3, "nearest": 3, "renam": 3, "plot": [3, 4, 5, 6], "left": [3, 6], "e": [3, 5, 6], "overlaid": 3, "right": [3, 6], "levels1": 3, "arang": [3, 6], "levels2": 3, "rn": 3, "contourf": 3, "level": 3, "cbar1": 3, "potential_dens": 3, "roll": 3, "contour": 3, "exp": 3, "k": [3, 4], "linewidth": [3, 4], "coral": 3, "cbar2": 3, "j": 3, "set_ylim": 3, "3000": [3, 4], "set_xlim": 3, "set_xlabel": 3, "set_ylabel": 3, "r": [3, 4], "kg": 3, "do": [3, 6], "given": 3, "definit": 3, "ds_rn": 3, "coord": [3, 5, 6], "lat_c": 3, "lat_g": 3, "center": [3, 6], "inner": [3, 6], "outer": [3, 6], "lev_grid": 3, "broadcast_lik": 3, "target_level": 3, "025": 3, "depth_rho_norm": 3, "target_data": 3, "linear": 3, "normal": 3, "space": 3, "150": [3, 5, 6], "4000": 3, "400": 3, "viridis_r": 3, "hline": 3, "ylabel": 3, "xlabel": 3, "xlim": 3, "cbar": [3, 4], "pyc_depth": 3, "str": [3, 4], "round": [3, 4], "1221": 3, "abl": 3, "extract": [3, 5], "showcas": 4, "gulf": 4, "stream": [4, 5], "region": 4, "produc": [4, 6], "train": 4, "model": [4, 6], "predict": 4, "includ": [4, 6], "state": 4, "phi": [4, 6], "repres": [4, 5, 6], "temperatur": [4, 5, 6], "respect": [4, 6], "ii": 4, "atmospher": [4, 6], "condit": 4, "tau": 4, "tau_u": 4, "tau_v": 4, "t_": 4, "atm": 4, "wind": 4, "stress": 4, "air": 4, "iii": 4, "nb": 4, "input": [4, 6], "vector": [4, 6], "channel": 4, "three": [4, 5, 6], "phi_": [4, 6], "tau_t": 4, "retriev": 4, "store": 4, "rather": [4, 6], "arxiv": 4, "org": [4, 6], "pdf": 4, "2402": 4, "04342": 4, "cart": 4, "longitude_formatt": 4, "latitude_formatt": 4, "locat": [4, 5, 6], "wa": 4, "interest": 4, "Then": 4, "ground": 4, "truth": 4, "wet_nan": 4, "npy": 4, "to_dataarrai": 4, "to_numpi": 4, "ground_truth": 4, "model_pred_unet": 4, "width": 4, "assert": [4, 6], "119": 4, "189": 4, "1000": 4, "same": [4, 5, 6], "dure": 4, "n_plot": 4, "denorm": 4, "constant": 4, "mean_out": 4, "48182137e": 4, "05207746e": 4, "21086583e01": 4, "std_out": 4, "15139965": 4, "14337273": 4, "03747046": 4, "base": 4, "var_list": 4, "bar": 4, "circ": 4, "c": [4, 6], "get_vmin_vmax": 4, "ind_plot": 4, "limit": 4, "ab": 4, "get_cmap": 4, "els": 4, "diff": [4, 6], "get_fig_ax": 4, "updat": 4, "gridspec_kw": 4, "width_ratio": 4, "height_ratio": 4, "wspace": 4, "one": [4, 6], "plot_single_snapshot": 4, "x_plot": 4, "x_c": 4, "y_plot": 4, "y_c": 4, "plt0": 4, "pcolormesh": 4, "shade": 4, "auto": 4, "add_featur": 4, "featur": 4, "zorder": 4, "edgecolor": 4, "gl": 4, "draw_label": 4, "true": [4, 6], "grai": 4, "top_label": 4, "right_label": 4, "yrotat": 4, "xformatt": 4, "yformatt": 4, "cm2": 4, "po": 4, "get_posit": 4, "new": [4, 6], "anchor": 4, "middl": 4, "new_po": 4, "x0": 4, "075": 4, "y0": 4, "adjust": 4, "need": [4, 6], "posit": [4, 6], "cax": 4, "add_ax": 4, "orient": 4, "horizont": 4, "set_tick": 4, "ceil": 4, "delax": 4, "plt1": 4, "unet": 4, "tau_": 4, "set_axis_off": 4, "rollout": 4, "set_arrai": 4, "flatten": 4, "set_text": 4, "final": 4, "everi": 4, "speed": 4, "up": 4, "other": [4, 6], "open": [5, 6], "sourc": [5, 6], "python": [5, 6], "design": 5, "labll": 5, "multidimension": [5, 6], "effici": 5, "manner": 5, "By": 5, "often": 5, "call": [5, 6], "dimension": 5, "mani": [5, 6], "independ": 5, "For": 5, "exampl": 5, "might": 5, "earth": 5, "spatial": [5, 6], "ha": [5, 6], "associ": 5, "relationship": 5, "between": [5, 6], "wget": 5, "raw": [5, 6], "master": 5, "sst": 5, "noaa_ncdc_ersst_v3b_sst": 5, "1960": 5, "2024": 5, "resolv": 5, "140": [5, 6], "connect": 5, "443": 5, "request": [5, 6], "sent": 5, "await": 5, "respons": [5, 6], "302": [5, 6], "found": [5, 6], "githubusercont": 5, "follow": [5, 6], "185": 5, "199": 5, "109": 5, "133": 5, "111": 5, "110": [5, 6], "ok": 5, "785127": 5, "767k": 5, "applic": 5, "octet": 5, "766": 5, "73k": 5, "kb": 5, "008": 5, "98": [5, 6], "mb": 5, "convent": [5, 6], "iridl": 5, "ldeo": 5, "columbia": 5, "edu": 5, "noaa": 5, "ncdc": 5, "ersst": 5, "clean": 5, "ryan": 5, "abernathei": 5, "research": 5, "compu": 5, "89lon": 5, "180time": 5, "12coordin": 5, "0standard_nam": [5, 6], "latitudepointwidth": 5, "0gridtyp": 5, "0unit": 5, "degree_northarrai": 5, "float320": [5, 6], "longitudepointwidth": 5, "1unit": 5, "degree_eastarrai": 5, "92": [5, 6], "96": [5, 6], "102": [5, 6], "104": [5, 6], "106": [5, 6], "108": [5, 6], "112": [5, 6], "114": [5, 6], "116": [5, 6], "122": [5, 6], "124": [5, 6], "126": [5, 6], "128": [5, 6], "130": [5, 6], "134": [5, 6], "136": [5, 6], "138": [5, 6], "142": [5, 6], "146": [5, 6], "148": [5, 6], "152": [5, 6], "154": [5, 6], "156": [5, 6], "160": [5, 6], "162": [5, 6], "164": [5, 6], "166": [5, 6], "168": [5, 6], "170": [5, 6], "172": [5, 6], "174": [5, 6], "176": [5, 6], "178": [5, 6], "182": [5, 6], "186": [5, 6], "188": [5, 6], "192": [5, 6], "194": [5, 6], "196": [5, 6], "198": [5, 6], "202": [5, 6], "204": [5, 6], "206": [5, 6], "208": [5, 6], "210": [5, 6], "214": [5, 6], "216": [5, 6], "218": [5, 6], "220": [5, 6], "222": [5, 6], "224": [5, 6], "226": [5, 6], "228": [5, 6], "230": [5, 6], "232": [5, 6], "234": [5, 6], "236": [5, 6], "238": [5, 6], "242": [5, 6], "244": [5, 6], "246": [5, 6], "248": [5, 6], "250": [5, 6], "252": [5, 6], "254": [5, 6], "256": [5, 6], "258": [5, 6], "260": [5, 6], "262": [5, 6], "264": [5, 6], "266": [5, 6], "268": [5, 6], "272": [5, 6], "274": [5, 6], "276": [5, 6], "278": [5, 6], "280": [5, 6], "282": [5, 6], "284": [5, 6], "286": [5, 6], "288": [5, 6], "290": [5, 6], "292": [5, 6], "294": [5, 6], "296": [5, 6], "304": [5, 6], "306": [5, 6], "308": [5, 6], "310": [5, 6], "312": [5, 6], "314": [5, 6], "316": [5, 6], "320": [5, 6], "322": [5, 6], "324": [5, 6], "326": [5, 6], "328": [5, 6], "330": [5, 6], "332": [5, 6], "334": [5, 6], "336": [5, 6], "338": [5, 6], "340": [5, 6], "342": [5, 6], "344": [5, 6], "346": [5, 6], "348": [5, 6], "15arrai": 5, "15t00": 5, "000000000": 5, "pointwidth": 5, "0valid_min": 5, "0valid_max": 5, "degree_celsiuslong_nam": 5, "reconstruct": 5, "sea_surface_temperatureiridl": 5, "hassemant": 5, "seasurfacetemperatur": 5, "192240": 5, "datetimeindex": 5, "iridlsourc": 5, "version3b": 5, "scienc": 5, "like": 5, "two": 5, "fundament": [5, 6], "dataarrai": [5, 6], "hold": 5, "singl": [5, 6], "multi": 5, "its": 5, "multipl": [5, 6], "share": 5, "four": 5, "essenti": 5, "dim": 5, "g": [5, 6], "z": [5, 6], "contain": [5, 6], "number": [5, 6], "datetim": 5, "string": 5, "attr": 5, "ordereddict": 5, "arbitrari": 5, "simpli": 5, "syntax": 5, "valid_min": 5, "valid_max": 5, "degree_celsiu": 5, "long_nam": 5, "standard_nam": [5, 6], "sea_surface_temperatur": 5, "seasurfacetemperaturexarrai": 5, "12lat": 5, "along": [5, 6], "transpos": 5, "packg": 6, "numer": 6, "gener": 6, "circul": 6, "gcm": 6, "similar": 6, "amen": 6, "finit": 6, "element": 6, "etc": 6, "solv": 6, "problem": 6, "consum": 6, "structur": 6, "rich": 6, "represent": 6, "ideal": 6, "analyz": 6, "wai": 6, "provid": 6, "conveni": 6, "group": 6, "awar": 6, "via": 6, "parallel": 6, "On": 6, "top": 6, "understand": 6, "commonli": 6, "differenti": 6, "integr": 6, "suit": 6, "inlin": 6, "concept": 6, "notion": 6, "lie": 6, "physic": 6, "rel": 6, "There": 6, "five": 6, "possibl": 6, "support": 6, "lower": 6, "upper": 6, "exclud": 6, "while": 6, "fewer": 6, "extra": 6, "These": 6, "although": 6, "technic": 6, "directli": 6, "recommend": 6, "x_center": 6, "x_left": 6, "int64": 6, "empti": 6, "9x_left": 6, "9coordin": 6, "int641": 6, "9arrai": 6, "5arrai": 6, "x_centerpandasindexpandasindex": 6, "x_leftpandasindexpandasindex": 6, "idea": 6, "relat": 6, "thei": 6, "subject": 6, "standard": 6, "broadcast": 6, "rule": 6, "when": 6, "specifi": 6, "part": 6, "keyword": 6, "argument": 6, "inform": 6, "about": 6, "indic": 6, "successfulli": 6, "understood": 6, "did": 6, "assum": 6, "arrow": 6, "after": 6, "explain": 6, "If": 6, "look": 6, "kei": 6, "search": 6, "defin": 6, "determin": 6, "consid": 6, "c_grid_axis_shift": 6, "accept": 6, "absent": 6, "identifi": 6, "conjunct": 6, "infer": 6, "9axi": 6, "5axi": 6, "xc_grid_axis_shift": 6, "default": 6, "vice": 6, "versa": 6, "what": 6, "deeper": 6, "introduc": 6, "most": 6, "offset": 6, "situat": 6, "edg": 6, "As": 6, "geometri": 6, "illustr": 6, "place": 6, "scalar": 6, "compon": 6, "present": 6, "dilemma": 6, "But": 6, "clearli": 6, "well": 6, "One": 6, "goal": 6, "delta_x": 6, "x_": 6, "overlin": 6, "half": 6, "gridpoint": 6, "With": 6, "entir": 6, "calculu": 6, "calcul": 6, "pycnoclin": 6, "da": 6, "sin": 6, "pi": 6, "42787610e": 6, "84807753e": 6, "66025404e": 6, "42020143e": 6, "44929360e": 6, "9xarrai": 6, "6428": 6, "9848": 6, "866": 6, "449e": 6, "16arrai": 6, "da_interp": 6, "interp": 6, "21393805e": 6, "13797681e": 6, "25416578e": 6, "04022774e": 6, "11022302e": 6, "5xarrai": 6, "3214": 6, "8138": 6, "9254": 6, "604": 6, "11e": 6, "3214arrai": 6, "see": 6, "origin": 6, "notic": 6, "verifi": 6, "veri": 6, "isclos": 6, "da_diff": 6, "64278761": 6, "34202014": 6, "11878235": 6, "52400526": 6, "68404029": 6, "1188": 6, "524": 6, "684": 6, "6428arrai": 6, "cumsum": 6, "till": 6, "were": 6, "logic": 6, "rectangular": 6, "domain": 6, "modern": 6, "consist": 6, "order": 6, "construct": 6, "tell": 6, "capabl": 6, "exchang": 6, "appropri": 6, "data_c": 6, "random": 6, "rand": 6, "xl": 6, "yl": 6, "5459": 6, "5698": 6, "1254": 6, "4723": 6, "1468": 6, "8183xarrai": 6, "2y": 6, "25x": 6, "25xl": 6, "25yl": 6, "25coordin": 6, "int640": 6, "24axi": 6, "yarrai": 6, "yc_grid_axis_shift": 6, "1arrai": 6, "8183arrai": 6, "5458546": 6, "56980274": 6, "12539297": 6, "67725271": 6, "71569453": 6, "51578956": 6, "07253973": 6, "03338173": 6, "91087663": 6, "28485365": 6, "36966224": 6, "23080738": 6, "45569677": 6, "14183162": 6, "03592051": 6, "92034954": 6, "48567944": 6, "48594883": 6, "4814194": 6, "40399104": 6, "5729177": 6, "31773734": 6, "58582346": 6, "60733852": 6, "47284332": 6, "43512681": 6, "45660987": 6, "0449317": 6, "68077403": 6, "58029476": 6, "7886585": 6, "78639695": 6, "62361688": 6, "53183831": 6, "64769644": 6, "99382504": 6, "95058677": 6, "9585653": 6, "66343427": 6, "51505952": 6, "8004008": 6, "75975626": 6, "16822178": 6, "60295368": 6, "79697059": 6, "65869286": 6, "11174784": 6, "07839847": 6, "03362464": 6, "88351565": 6, "82991345": 6, "04833648": 6, "34413887": 6, "8322095": 6, "16491799": 6, "96283985": 6, "66721651": 6, "22704208": 6, "15277359": 6, "64452841": 6, "94101596": 6, "01561425": 6, "99001115": 6, "30920353": 6, "35317417": 6, "55492204": 6, "44917703": 6, "25229104": 6, "05266659": 6, "47234268": 6, "14683793": 6, "81834035": 6, "xpandasindexpandasindex": 6, "xlpandasindexpandasindex": 6, "ypandasindexpandasindex": 6, "ylpandasindexpandasindex": 6, "facepandasindexpandasindex": 6, "face_connect": 6, "dictionari": 6, "stuctur": 6, "either": 6, "tupl": 6, "content": 6, "revers": 6, "boolean": 6, "whether": 6, "simpl": 6, "plu": 6, "addit": 6, "imagin": 6, "join": 6, "sai": 6, "noth": 6, "complementari": 6, "exist": 6, "urllib": 6, "shutil": 6, "zenodo": 6, "record": 6, "4421428": 6, "file_nam": 6, "mitgcm_example_dataset_v2": 6, "save_file_nam": 6, "dataset_": 6, "urlopen": 6, "wb": 6, "out_fil": 6, "copyfileobj": 6, "yc": 6, "xg": 6, "yg": 6, "xc": 6, "zl": 6, "maskc": 6, "dyc": 6, "hfacc": 6, "ra": 6, "hfac": 6, "raz": 6, "dxc": 6, "hfacw": 6, "uvel": 6, "vvel": 6, "wvel": 6, "salt": 6, "theta": 6, "ph": 6, "eta": 6, "cf": 6, "md": 6, "binari": 6, "open_mdsdataset": 6, "extra_metadata": 6, "ll": 6, "1z": 6, "15yc": 6, "40xg": 6, "90yg": 6, "40xc": 6, "90zl": 6, "15coordin": 6, "00standard_nam": 6, "timelong_nam": 6, "tcalendar": 6, "gregorianarrai": 6, "39600000000000": 6, "sea_binary_mask_at_t_locationlong_nam": 6, "denot": 6, "54000": 6, "cell_y_size_at_v_locationlong_nam": 6, "sizeunit": 6, "mcoordin": 6, "3600": 6, "cell_vertical_fractionlong_nam": 6, "vertic": 6, "fraction": 6, "cell_arealong_nam": 6, "areaunit": 6, "m2coordin": 6, "cell_vertical_fraction_at_v_locationlong_nam": 6, "ocean_depthlong_nam": 6, "depthunit": 6, "latitude_at_f_locationlong_nam": 6, "degrees_northaxi": 6, "855e": 6, "03standard_nam": 6, "depthlong_nam": 6, "centerunit": 6, "mposit": 6, "downaxi": 6, "zarrai": 6, "670": 6, "935": 6, "1250": 6, "1615": 6, "2030": 6, "2495": 6, "3010": 6, "3575": 6, "4190": 6, "4855": 6, "phrefc": 6, "cell_reference_pressurelong_nam": 6, "hydrostat": 6, "pressureunit": 6, "dyg": 6, "cell_y_size_at_u_locationlong_nam": 6, "cell_area_at_u_locationlong_nam": 6, "drf": 6, "cell_z_sizelong_nam": 6, "latitudelong_nam": 6, "degrees_northcoordin": 6, "xcaxi": 6, "dxg": 6, "cell_x_size_at_v_locationlong_nam": 6, "longitude_at_f_locationlong_nam": 6, "degrees_eastcoordin": 6, "xgaxi": 6, "iter": 6, "timesteplong_nam": 6, "timestep": 6, "maskw": 6, "cell_vertical_fraction_at_u_locationlong_nam": 6, "interfac": 6, "87e": 6, "51e": 6, "depth_at_upper_w_locationlong_nam": 6, "interfaceunit": 6, "zc_grid_axis_shift": 6, "550": 6, "790": 6, "1420": 6, "1810": 6, "2250": 6, "2740": 6, "3280": 6, "3870": 6, "4510": 6, "cell_area_at_v_locationlong_nam": 6, "cell_area_at_f_locationlong_nam": 6, "cell_x_size_at_u_locationlong_nam": 6, "float322": 6, "longitudelong_nam": 6, "uvellong_nam": 6, "smate": 6, "vvellong_nam": 6, "wvellong_nam": 6, "r_unit": 6, "saltlong_nam": 6, "salinityunit": 6, "psu": 6, "thetalong_nam": 6, "temperatureunit": 6, "sea_water_dynamic_pressuelong_nam": 6, "pressur": 6, "pot": 6, "rho": 6, "anomalyunit": 6, "etanlong_nam": 6, "timedeltaindex": 6, "ygpandasindexpandasindex": 6, "zpandasindexpandasindex": 6, "ycpandasindexpandasindex": 6, "xgpandasindexpandasindex": 6, "zlpandasindexpandasindex": 6, "xcpandasindexpandasindex": 6, "6titl": 6, "datasourc": 6, "mitgcmhistori": 6, "llc_method": 6, "smallchunk": 6, "nz": 6, "ny": 6, "nx": 6, "default_dtyp": 6, "ignore_unknown_var": 6, "endian": 6, "swap_dim": 6, "grid_vars_to_coord": 6, "sphericalpolar": 6, "gregorian": 6, "ref_dat": 6, "delta_t": 6, "read_grid": 6, "prefix": 6, "grid_dir": 6, "global_oce_latlon": 6, "non": 6}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"introduct": [0, 5, 6], "basic": 1, "plot": [1, 2], "mom6": [1, 3], "om4": 2, "anim": [2, 4], "global": 2, "plotter": 2, "region": 2, "surfac": 2, "kinet": 2, "energi": 2, "north": 2, "atlant": 2, "pacif": 2, "aghula": 2, "pycnoclin": 3, "depth": 3, "us": 3, "load": 3, "data": [3, 5], "file": 3, "temperatur": 3, "salin": 3, "calcul": 3, "potenti": 3, "densiti": 3, "rel": 3, "pressur": 3, "overlin": 3, "rho": 3, "_": 3, "norm": 3, "from": 3, "transform": [3, 6], "rho_": 3, "y": 3, "z": 3, "averag": 3, "between": 3, "60": 3, "60n": 3, "conclus": 3, "ocean": 4, "emul": 4, "u": 4, "net": 4, "xarrai": 5, "structur": 5, "index": 5, "xgcm": 6, "axi": 6, "arakawa": 6, "grid": 6, "core": 6, "oper": 6, "interpol": 6, "differ": 6, "complex": 6, "topolog": 6, "two": 6, "connect": 6, "face": 6, "exampl": 6, "dataset": 6, "mitgcm": 6}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file