diff --git a/_preview/11/_images/b4010254347df0da49cc6ba8c11dbe94eec5d0b607c3c680b88e1a1ed7bde5a0.png b/_preview/11/_images/b4010254347df0da49cc6ba8c11dbe94eec5d0b607c3c680b88e1a1ed7bde5a0.png new file mode 100644 index 00000000..46ae8dfc Binary files /dev/null and b/_preview/11/_images/b4010254347df0da49cc6ba8c11dbe94eec5d0b607c3c680b88e1a1ed7bde5a0.png differ diff --git a/_preview/11/_sources/notebooks/03-uxarray-vis/002-xarray-to-uxarray.ipynb b/_preview/11/_sources/notebooks/03-uxarray-vis/002-xarray-to-uxarray.ipynb index dbd3259f..aec8b457 100644 --- a/_preview/11/_sources/notebooks/03-uxarray-vis/002-xarray-to-uxarray.ipynb +++ b/_preview/11/_sources/notebooks/03-uxarray-vis/002-xarray-to-uxarray.ipynb @@ -246,8 +246,8 @@ "outputs": [], "source": [ "(\n", - " xrds.hvplot(aspect=2, cmap=\"inferno\", title=\"Xarray with hvPlot\")\n", - " + uxds[\"psi\"].plot(aspect=2, cmap=\"inferno\", backend=\"bokeh\", title=\"UXarray Plot\")\n", + " xrds.hvplot(cmap=\"inferno\", title=\"Xarray with hvPlot\")\n", + " + uxds[\"psi\"].plot(cmap=\"inferno\", backend=\"bokeh\", title=\"UXarray Plot\")\n", ").opts(width=500, height=250)" ], "metadata": { diff --git a/_preview/11/notebooks/01-intro/01-unstructured-grid-overview.html b/_preview/11/notebooks/01-intro/01-unstructured-grid-overview.html index 9441cc62..038c5f3f 100644 --- a/_preview/11/notebooks/01-intro/01-unstructured-grid-overview.html +++ b/_preview/11/notebooks/01-intro/01-unstructured-grid-overview.html @@ -504,7 +504,7 @@

Structured Grids +../../_images/b4010254347df0da49cc6ba8c11dbe94eec5d0b607c3c680b88e1a1ed7bde5a0.png diff --git a/_preview/11/notebooks/01-intro/02-data-structures.html b/_preview/11/notebooks/01-intro/02-data-structures.html index 2c22ab1f..63e95699 100644 --- a/_preview/11/notebooks/01-intro/02-data-structures.html +++ b/_preview/11/notebooks/01-intro/02-data-structures.html @@ -859,8 +859,8 @@

Grid
<xarray.DataArray 'node_lon' (n_node: 3947)> Size: 32kB
 array([-174.95294523, -172.5318284 , -173.42204784, ...,  113.04705503,
        -102.95294492, -174.9529447 ])
-Dimensions without coordinates: n_node
+Dimensions without coordinates: n_node
@@ -1250,7 +1250,7 @@

Grid + 3689, 2951, 2950]])

      • cf_role :
        face_node_connectivity
        _FillValue :
        -9223372036854775808
        start_index :
        0
      • @@ -1645,8 +1645,8 @@

        UxDataset + bottomDepth (n_face) float64 14kB 4.973e+03 4.123e+03 ... 5.5e+03 4.855e+03

        We can see that our UxDataset has a single data variable bottomDepth, which is mapped to each face (as specified by the n_face dimension).

        We can access this variable by indexing our UxDataset to obtain a UxDataArray

        @@ -2023,8 +2023,8 @@

        UxDataset
        <xarray.UxDataArray 'bottomDepth' (n_face: 1791)> Size: 14kB
         array([4973.        , 4123.        , 2639.        , ..., 5197.        ,
                5499.99027344, 4855.        ])
        -Dimensions without coordinates: n_face
        +Dimensions without coordinates: n_face

        You can access the Grid instance using the .uxgrid attribute, which is linked to every UxDataset and UxDataArray

        -
        -