Dual Grid Construction#
A dual grid is a secondary grid built from a grid, by constructing new faces over the original grids nodes. One property of this means that if you take the dual grid of a dual grid, the orignal grid will be constructed. However, this will only work properly if the grid is not partial. UXarray allows the constructing of this dual grid on all three of our data structures using the following methods:
Grid.get_dual()
UxDataArray.get_dual()
UxDataset.get_dual()
import uxarray as ux
import warnings
import cartopy.crs as ccrs
warnings.filterwarnings("ignore")
file = "../../test/meshfiles/mpas/QU/mesh.QU.1920km.151026.nc"
uxds = ux.open_dataset(file, file)
Computing the Dual Grid#
When computing the dual of a grid, the original grid is typically referred to as the “Primal” grid. The corner nodes of the Primal grid become the face centers of the Dual grid, and the face centers of the Primal grid become the corner nodes of the Dual grid. This means that variables that were originally face-centered on the Primal grid will be node-centered on the Dual grid, and vice versa. Using UXarray we can construct the dual mesh using grid.compute_dual()
, which returns a new Grid
object.
grid = uxds.uxgrid
dual = grid.get_dual()
(
grid.plot(title="Primal Grid", backend="bokeh", projection=ccrs.Orthographic())
+ dual.plot(title="Dual Grid", backend="bokeh", projection=ccrs.Orthographic())
)
(
grid.plot(backend="bokeh", projection=ccrs.Orthographic(), color="red")
* dual.plot(backend="bokeh", projection=ccrs.Orthographic(), color="blue")
).opts(title="Primal (Red) & Dual (Blue) Grids")
Computing the Dual Grid with Data#
We can also take a dual mesh of a UxDataArray
. The concept for constructing the Grid
remains the same, and what is constructed will be identical. The difference is the data stored inside the UxDataArray
will be transfered with the dual mesh. The key differences is the location that the data is stored. The data transfer process works as follows:
Face centered data becomes node centered, as each face becomes a node in the dual mesh.
Node centered data becomes face centered, as each node becomes a face in the dual mesh.
Edge centered data remains unchanged, as the edge centers will remain in the same place, despite the edges themselves being different.
Face Centered Data#
When constructing the dual mesh paired with a face centered variable, the data becomes node centered. We can then plot this using topological_mean
to get the dual data to the faces for proper visualization comparisions.
uxds_dual_face = uxds["latCell"].get_dual()
(
uxds["latCell"].plot.polygons(
rasterize=True,
backend="matplotlib",
title="Face centered data on Primal Mesh",
cmap=ux.cmaps.sequential_green_blue,
projection=ccrs.Orthographic(),
)
+ uxds_dual_face.topological_mean(destination="face").plot.polygons(
rasterize=True,
backend="matplotlib",
title="Node Centered Data on Dual Mesh",
cmap=ux.cmaps.sequential_green_blue,
projection=ccrs.Orthographic(),
)
).cols(1).opts(fig_size=125)
Node Centered Data#
When constructing the dual mesh paired with a node centered variable, the data becomes face centered. A benefit of computing the dual of a node centered variable is that it allows us to visualize the data as polygons.
uxds_dual_node = uxds["latVertex"].get_dual()
(
uxds["latVertex"]
.topological_mean(destination="face")
.plot.polygons(
rasterize=True,
backend="matplotlib",
title="Face centered data on Primal Mesh",
cmap=ux.cmaps.sequential_green_blue,
projection=ccrs.Orthographic(),
)
+ uxds_dual_node.plot.polygons(
rasterize=True,
backend="matplotlib",
title="Node Centered Data on Dual Mesh",
cmap=ux.cmaps.sequential_green_blue,
projection=ccrs.Orthographic(),
)
).cols(1).opts(fig_size=125)
Edge Centered Data#
When constructing the dual mesh paired with an edge centered variable, the data will stay edge centered. However, a plotting example cannot be shown, as the topological_mean
needed to visualize edge centered data is not currently implemented for edge centered data.
UxDataset#
We can also construct a dual mesh from an entire dataset, which will convert the whole UxDataset
to its dual mesh form. Below we can see the dataset before the dual mesh is constructed.
uxds
<xarray.UxDataset> Size: 176kB Dimensions: (n_face: 162, n_edge: 480, n_node: 320, n_max_face_nodes: 6, maxEdges2: 12, TWO: 2, vertexDegree: 3) Dimensions without coordinates: n_face, n_edge, n_node, n_max_face_nodes, maxEdges2, TWO, vertexDegree Data variables: (12/42) latCell (n_face) float64 1kB 0.4636 0.4636 ... -0.8188 -0.8188 lonCell (n_face) float64 1kB ... xCell (n_face) float64 1kB ... yCell (n_face) float64 1kB ... zCell (n_face) float64 1kB ... indexToCellID (n_face) int32 648B ... ... ... cellQuality (n_face) float64 1kB ... gridSpacing (n_face) float64 1kB ... triangleQuality (n_node) float64 3kB ... triangleAngleQuality (n_node) float64 3kB ... obtuseTriangle (n_node) int32 1kB ... meshDensity (n_face) float64 1kB ...
<xarray.UxDataset> Size: 176kB Dimensions: (n_face: 162, n_edge: 480, n_node: 320, n_max_face_nodes: 6, maxEdges2: 12, TWO: 2, vertexDegree: 3) Dimensions without coordinates: n_face, n_edge, n_node, n_max_face_nodes, maxEdges2, TWO, vertexDegree Data variables: (12/42) latCell (n_face) float64 1kB 0.4636 0.4636 ... -0.8188 -0.8188 lonCell (n_face) float64 1kB ... xCell (n_face) float64 1kB ... yCell (n_face) float64 1kB ... zCell (n_face) float64 1kB ... indexToCellID (n_face) int32 648B ... ... ... cellQuality (n_face) float64 1kB ... gridSpacing (n_face) float64 1kB ... triangleQuality (n_node) float64 3kB ... triangleAngleQuality (n_node) float64 3kB ... obtuseTriangle (n_node) int32 1kB ... meshDensity (n_face) float64 1kB ...
- n_face: 162
- n_edge: 480
- n_node: 320
- n_max_face_nodes: 6
- maxEdges2: 12
- TWO: 2
- vertexDegree: 3
- latCell(n_face)float640.4636 0.4636 ... -0.8188 -0.8188
array([ 4.636476e-01, 4.636476e-01, 1.570796e+00, -4.636476e-01, -4.636476e-01, -4.636476e-01, 4.636476e-01, -4.636476e-01, -1.570796e+00, 4.636476e-01, -4.636476e-01, 4.636476e-01, 5.535744e-01, -1.900000e-13, -1.010000e-12, 5.535744e-01, 1.017222e+00, -1.210000e-12, -9.100000e-13, 5.535744e-01, 1.017222e+00, 1.017222e+00, 1.017222e+00, 1.017222e+00, 1.010000e-12, 1.900000e-13, -5.535744e-01, -1.017222e+00, -5.535744e-01, 1.210000e-12, -1.017222e+00, -5.535744e-01, 9.100000e-13, -5.535744e-01, -1.017222e+00, -4.700000e-13, 5.535744e-01, -1.017222e+00, -5.535744e-01, 4.700000e-13, -1.017222e+00, 5.535744e-01, 5.295555e-01, 2.379217e-01, 2.379217e-01, 5.295555e-01, 7.364865e-01, 7.364865e-01, 5.295555e-01, 2.379217e-01, 2.379217e-01, 5.295555e-01, 1.297957e+00, 1.297957e+00, 1.297957e+00, 1.297957e+00, 1.297957e+00, -5.295555e-01, -2.379217e-01, -2.379217e-01, -5.295555e-01, -7.364865e-01, -2.379217e-01, -5.295555e-01, -7.364865e-01, -5.295555e-01, -2.379217e-01, -5.295555e-01, -7.364865e-01, -5.295555e-01, -2.379217e-01, -2.379217e-01, 2.379217e-01, 2.379217e-01, 5.295555e-01, 7.364865e-01, 5.295555e-01, -5.295555e-01, -7.364865e-01, -5.295555e-01, -2.379217e-01, -2.379217e-01, -1.297957e+00, -1.297957e+00, -1.297957e+00, -1.297957e+00, -1.297957e+00, 5.295555e-01, 7.364865e-01, 5.295555e-01, 2.379217e-01, 2.379217e-01, -2.379217e-01, -2.379217e-01, -5.295555e-01, -7.364865e-01, -5.295555e-01, 2.379217e-01, 2.379217e-01, 5.295555e-01, 7.364865e-01, 5.295555e-01, 2.729226e-01, 2.729226e-01, 8.188150e-01, 8.188150e-01, -2.729226e-01, -1.523731e-02, 1.523731e-02, 1.523731e-02, 2.729226e-01, -2.729226e-01, 8.188150e-01, 8.188150e-01, 2.729226e-01, 1.091911e+00, 1.091911e+00, -2.729226e-01, -1.523731e-02, -2.729226e-01, 1.523731e-02, 2.729226e-01, 2.729226e-01, 8.188150e-01, 8.188150e-01, 1.091911e+00, 1.091911e+00, 8.188150e-01, 8.188150e-01, 1.091911e+00, 8.188150e-01, 8.188150e-01, 2.729226e-01, 1.523731e-02, -2.729226e-01, -1.523731e-02, -1.523731e-02, -2.729226e-01, 2.729226e-01, -8.188150e-01, -8.188150e-01, -2.729226e-01, -1.091911e+00, -8.188150e-01, -1.091911e+00, -2.729226e-01, -8.188150e-01, 1.523731e-02, 2.729226e-01, -1.091911e+00, -8.188150e-01, -8.188150e-01, -2.729226e-01, -2.729226e-01, -1.523731e-02, 2.729226e-01, -8.188150e-01, -8.188150e-01, -1.091911e+00, -1.091911e+00, -8.188150e-01, -8.188150e-01])
- lonCell(n_face)float64...
[162 values with dtype=float64]
- xCell(n_face)float64...
[162 values with dtype=float64]
- yCell(n_face)float64...
[162 values with dtype=float64]
- zCell(n_face)float64...
[162 values with dtype=float64]
- indexToCellID(n_face)int32...
[162 values with dtype=int32]
- latEdge(n_edge)float64...
[480 values with dtype=float64]
- lonEdge(n_edge)float64...
[480 values with dtype=float64]
- xEdge(n_edge)float64...
[480 values with dtype=float64]
- yEdge(n_edge)float64...
[480 values with dtype=float64]
- zEdge(n_edge)float64...
[480 values with dtype=float64]
- indexToEdgeID(n_edge)int32...
[480 values with dtype=int32]
- latVertex(n_node)float640.5968 0.4057 ... -0.9184 -0.9184
array([ 0.596755, 0.405714, 0.295571, ..., -0.188711, -0.918438, -0.918438])
- lonVertex(n_node)float64...
[320 values with dtype=float64]
- xVertex(n_node)float64...
[320 values with dtype=float64]
- yVertex(n_node)float64...
[320 values with dtype=float64]
- zVertex(n_node)float64...
[320 values with dtype=float64]
- indexToVertexID(n_node)int32...
[320 values with dtype=int32]
- cellsOnCell(n_face, n_max_face_nodes)int32...
[972 values with dtype=int32]
- edgesOnCell(n_face, n_max_face_nodes)int32...
[972 values with dtype=int32]
- verticesOnCell(n_face, n_max_face_nodes)int32...
[972 values with dtype=int32]
- nEdgesOnCell(n_face)int32...
[162 values with dtype=int32]
- edgesOnEdge(n_edge, maxEdges2)int32...
[5760 values with dtype=int32]
- cellsOnEdge(n_edge, TWO)int32...
[960 values with dtype=int32]
- verticesOnEdge(n_edge, TWO)int32...
[960 values with dtype=int32]
- nEdgesOnEdge(n_edge)int32...
[480 values with dtype=int32]
- cellsOnVertex(n_node, vertexDegree)int32...
[960 values with dtype=int32]
- edgesOnVertex(n_node, vertexDegree)int32...
[960 values with dtype=int32]
- boundaryVertex(n_node)int32...
[320 values with dtype=int32]
- areaCell(n_face)float64...
[162 values with dtype=float64]
- angleEdge(n_edge)float64...
[480 values with dtype=float64]
- dcEdge(n_edge)float64...
[480 values with dtype=float64]
- dvEdge(n_edge)float64...
[480 values with dtype=float64]
- weightsOnEdge(n_edge, maxEdges2)float64...
[5760 values with dtype=float64]
- areaTriangle(n_node)float64...
[320 values with dtype=float64]
- kiteAreasOnVertex(n_node, vertexDegree)float64...
[960 values with dtype=float64]
- cellQuality(n_face)float64...
[162 values with dtype=float64]
- gridSpacing(n_face)float64...
[162 values with dtype=float64]
- triangleQuality(n_node)float64...
[320 values with dtype=float64]
- triangleAngleQuality(n_node)float64...
[320 values with dtype=float64]
- obtuseTriangle(n_node)int32...
[320 values with dtype=int32]
- meshDensity(n_face)float64...
[162 values with dtype=float64]
Show Grid Information
<uxarray.Grid> Original Grid Type: MPAS Grid Dimensions: * n_node: 320 * n_edge: 480 * n_face: 162 * n_max_face_nodes: 6 * n_max_face_edges: 6 * n_max_face_faces: 6 * n_max_node_faces: 3 * two: 2 Grid Coordinates (Spherical): * node_lon: (320,) * node_lat: (320,) * edge_lon: (480,) * edge_lat: (480,) * face_lon: (162,) * face_lat: (162,) Grid Coordinates (Cartesian): * node_x: (320,) * node_y: (320,) * node_z: (320,) * edge_x: (480,) * edge_y: (480,) * edge_z: (480,) * face_x: (162,) * face_y: (162,) * face_z: (162,) Grid Connectivity Variables: * face_face_connectivity: (162, 6) * node_face_connectivity: (320, 3) * face_node_connectivity: (162, 6) * edge_face_connectivity: (480, 2) * face_edge_connectivity: (162, 6) * edge_node_connectivity: (480, 2) Grid Descriptor Variables: * face_areas: (162,) * n_nodes_per_face: (162,) * edge_face_distances: (480,) * edge_node_distances: (480,) * boundary_edge_indices: (0,) * boundary_node_indices: (0,)
- n_node: 320
- n_face: 162
- n_edge: 480
- n_max_face_nodes: 6
- n_max_node_faces: 3
- two: 2
- n_max_face_edges: 6
- n_max_face_faces: 6
- n_boundary_nodes: 0
- boundary_edge_indices: 0
- node_lon(n_node)float64178.2 175.1 ... -103.0 -175.0
- standard_name :
- longitude
- long name :
- Longitude of the corner nodes of each face
- units :
- degrees_east
array([ 178.2199104 , 175.07571408, -174.95294504, -164.98160416, -168.12580048, -92.98160416, -96.12580048, -109.7800896 , -112.92428592, -102.95294504, -66.95294504, 5.04705496, 77.04705496, 149.04705496, -138.95294504, -1.7800896 , 11.87419952, 15.01839584, 5.04705496, -4.92428592, 87.01839584, 77.04705496, 67.07571408, 70.2199104 , 83.87419952, -66.95294504, -76.92428592, -73.7800896 , -60.12580048, -56.98160416, -40.92428592, -30.95294504, -20.98160416, -24.12580048, -37.7800896 , 139.07571408, 142.2199104 , 155.87419952, 159.01839584, 149.04705496, -102.95294504, -174.95294504, 113.04705496, 41.04705496, -30.95294504, 47.87419952, 34.2199104 , 31.07571408, 41.04705496, 51.01839584, -145.7800896 , -132.12580048, -128.98160416, -138.95294504, -148.92428592, 106.2199104 , 103.07571408, 113.04705496, 123.01839584, 119.87419952, 149.04705496, 157.92220999, 159.10737356, 149.04705496, 138.98673636, 140.17189993, 167.81735672, 175.80545012, 176.24978401, 166.2767532 , 158.28865981, 157.84432591, -147.75021599, -148.19454988, -156.18264328, -166.15567409, -165.71134019, -157.7232468 , -138.95294504, -149.01326364, ... 171.88946674, 167.53637029, -174.95294504, -157.44226037, -161.79535682, -89.79535682, -116.11053326, -120.46362971, -102.95294504, -85.44226037, -66.95294504, 5.04705496, 77.04705496, 149.04705496, -138.95294504, 18.20464318, 22.55773963, 5.04705496, -12.46362971, -8.11053326, 77.04705496, 59.53637029, 63.88946674, 90.20464318, 94.55773963, -84.46362971, -80.11053326, -53.79535682, -49.44226037, -66.95294504, -48.46362971, -30.95294504, -13.44226037, -17.79535682, -44.11053326, 131.53637029, 135.88946674, 162.20464318, 166.55773963, 149.04705496, 113.04705496, 41.04705496, -30.95294504, -102.95294504, -174.95294504, 58.55773963, 54.20464318, 27.88946674, 23.53637029, 41.04705496, -121.44226037, -138.95294504, -156.46362971, -152.11053326, -125.79535682, 95.53637029, 113.04705496, 130.55773963, 126.20464318, 99.88946674, 149.04705496, 149.04705496, -174.95294504, -138.95294504, -138.95294504, -102.95294504, -66.95294504, -66.95294504, 5.04705496, 77.04705496, 5.04705496, 41.04705496, -30.95294504, -30.95294504, 41.04705496, 77.04705496, 113.04705496, 113.04705496, -102.95294504, -174.95294504])
- node_lat(n_node)float6434.19 23.25 16.93 ... -52.62 -52.62
- standard_name :
- latitude
- long name :
- Latitude of the corner nodes of each face
- units :
- degrees_north
array([ 34.1915419 , 23.24569025, 16.93496156, 23.24569025, 34.1915419 , 23.24569025, 34.1915419 , 34.1915419 , 23.24569025, 16.93496156, 80.36991038, 80.36991038, 80.36991038, 80.36991038, 80.36991038, -34.1915419 , -34.1915419 , -23.24569025, -16.93496156, -23.24569025, -23.24569025, -16.93496156, -23.24569025, -34.1915419 , -34.1915419 , -16.93496156, -23.24569025, -34.1915419 , -34.1915419 , -23.24569025, 23.24569025, 16.93496156, 23.24569025, 34.1915419 , 34.1915419 , -23.24569025, -34.1915419 , -34.1915419 , -23.24569025, -16.93496156, -80.36991038, -80.36991038, -80.36991038, -80.36991038, -80.36991038, 34.1915419 , 34.1915419 , 23.24569025, 16.93496156, 23.24569025, -34.1915419 , -34.1915419 , -23.24569025, -16.93496156, -23.24569025, 34.1915419 , 23.24569025, 16.93496156, 23.24569025, 34.1915419 , 21.45169171, 25.55962357, 37.17735421, 41.98325711, 37.17735421, 25.55962357, -9.89279301, -5.37609646, 3.72615394, 9.89279301, 5.37609646, -3.72615394, -3.72615394, 5.37609646, 9.89279301, 3.72615394, -5.37609646, -9.89279301, 41.98325711, 37.17735421, ... 39.93474259, 20.1797958 , 9.29069849, 20.1797958 , 39.93474259, 39.93474259, 39.93474259, 20.1797958 , 9.29069849, 20.1797958 , 72.72564732, 72.72564732, 72.72564732, 72.72564732, 72.72564732, -39.93474259, -20.1797958 , -9.29069849, -20.1797958 , -39.93474259, -9.29069849, -20.1797958 , -39.93474259, -39.93474259, -20.1797958 , -20.1797958 , -39.93474259, -39.93474259, -20.1797958 , -9.29069849, 20.1797958 , 9.29069849, 20.1797958 , 39.93474259, 39.93474259, -20.1797958 , -39.93474259, -39.93474259, -20.1797958 , -9.29069849, -72.72564732, -72.72564732, -72.72564732, -72.72564732, -72.72564732, 20.1797958 , 39.93474259, 39.93474259, 20.1797958 , 9.29069849, -20.1797958 , -9.29069849, -20.1797958 , -39.93474259, -39.93474259, 20.1797958 , 9.29069849, 20.1797958 , 39.93474259, 39.93474259, 10.81231696, 52.62263186, -10.81231696, 10.81231696, 52.62263186, -10.81231696, 10.81231696, 52.62263186, 52.62263186, 52.62263186, 10.81231696, -10.81231696, -10.81231696, -52.62263186, -52.62263186, 10.81231696, -52.62263186, -10.81231696, -52.62263186, -52.62263186])
- edge_lon(n_edge)float64177.5 -110.5 108.7 ... 94.86 108.4
- standard_name :
- longitude
- long name :
- Longitude of the center of each edge
- units :
- degrees_east
array([ 1.77493843e+02, -1.10506157e+02, 1.08666226e+02, 1.13047055e+02, 1.17427884e+02, 1.13047055e+02, 7.26662258e+01, -3.09529450e+01, -2.65721158e+01, -3.53337742e+01, 4.54278842e+01, 9.42788415e+00, 5.04705496e+00, 8.46002664e+01, -9.53997336e+01, 6.94938435e+01, 7.70470550e+01, 5.04705496e+00, -7.45061565e+01, -5.93997336e+01, -6.69529450e+01, -7.13337742e+01, -6.25721158e+01, -9.85721158e+01, -1.02952945e+02, -1.38952945e+02, -1.31399734e+02, -1.34572116e+02, -1.70572116e+02, 1.41493843e+02, 1.56600266e+02, 1.03746711e+02, 1.24246570e+02, 1.33009729e+02, 1.31231318e+02, 1.17670116e+02, -9.35219621e+01, -9.73260570e+01, 1.20600266e+02, -5.38186510e+01, -1.07333774e+02, 1.04046528e+02, 5.22465702e+01, 7.70470550e+01, 2.74881524e+01, 6.38257621e+01, 1.17789099e+02, 9.01398370e+01, 1.35488152e+02, 9.99127609e+01, 6.34964376e+01, 5.45976723e+01, 5.00475817e+01, 3.54201670e+01, -6.22109011e+01, -2.15219621e+01, 8.60475817e+01, 1.43420167e+02, -3.09529450e+01, -3.56949890e+01, -3.95347179e+00, 6.39127609e+01, 1.18673943e+02, 1.22478038e+02, 1.85976723e+01, 2.72954240e+01, -5.01782583e+01, 1.08305011e+02, 1.35288473e+01, -1.41782583e+01, 7.23050110e+01, 1.81813490e+01, -1.77316521e+01, -4.41742379e+01, 1.26268348e+02, 1.13047055e+02, -3.09529450e+01, 1.49047055e+02, 1.29821742e+02, -8.47686822e+01, ... -4.40872391e+01, -1.78186510e+01, -1.25818651e+02, -8.00872391e+01, 2.50097291e+01, 2.32313178e+01, 5.04705496e+00, -8.04572709e+00, -1.73940425e+01, -4.25328913e+00, -6.15246027e+00, 1.54673943e+02, 1.62465702e+01, 6.77467109e+01, 8.82465702e+01, 9.70097291e+01, 1.58047582e+02, 9.52313178e+01, -1.38952945e+02, 8.16701159e+01, -8.69156191e+01, -1.48253289e+02, 2.42723682e+01, -1.79837834e+02, -5.57534298e+01, -5.76526009e+01, -4.69902709e+01, -1.20768682e+02, -7.62532891e+01, -4.45118476e+01, 9.02683479e+01, -5.38601630e+01, -8.51184757e+00, -4.87686822e+01, -6.69529450e+01, -1.63753430e+02, -4.40457271e+01, -3.55760059e+01, -2.63298841e+01, -2.16526009e+01, 1.26139837e+02, -1.97534298e+01, -5.33940425e+01, 1.37847540e+02, -3.65798330e+01, 1.58347399e+02, 1.67231318e+02, -6.69529450e+01, 8.19319442e+01, -1.25731652e+02, 1.53670116e+02, 1.49047055e+02, 1.49047055e+02, 4.86002664e+01, 1.44423994e+02, 4.10470550e+01, -1.74952945e+02, 5.04705496e+00, -1.02952945e+02, 5.03473991e+01, 3.17467109e+01, 1.86059575e+01, 4.10470550e+01, 1.49047055e+02, -1.34329884e+02, -1.43576006e+02, 8.14278842e+01, -1.57137208e+02, 3.66662258e+01, -1.61394043e+02, -1.50152460e+02, 1.03616072e+02, 3.16160720e+01, -1.18990271e+02, -1.16511848e+02, 9.99542729e+01, 4.66739430e+01, 4.57890989e+01, 9.48627922e+01, 1.08423994e+02])
- edge_lat(n_edge)float64-54.9 -54.9 -8.28 ... 14.8 6.401
- standard_name :
- latitude
- long name :
- Latitude of the center of each edge
- units :
- degrees_north
array([-54.89651955, -54.89651955, -8.27994701, -15.81962943, -8.27994701, -47.6153194 , 8.27994701, -15.81962943, -8.27994701, -8.27994701, -8.27994701, 8.27994701, 15.81962943, 54.89651955, -54.89651955, 54.89651955, 47.6153194 , 47.6153194 , 54.89651955, 54.89651955, 15.81962943, 8.27994701, 8.27994701, -8.27994701, -15.81962943, 47.6153194 , 54.89651955, 8.27994701, -8.27994701, 54.89651955, 54.89651955, 36.57981951, 45.15448663, 38.66685489, 14.80305333, 6.40068779, -31.36984568, -39.48532031, -54.89651955, 69.36033641, -8.27994701, -0.44195768, 45.15448663, -66.3250054 , -23.06453063, -53.16545759, -23.74126199, -22.03371704, 23.06453063, -69.36033641, 7.84290011, -7.84290011, -0.44195768, -39.48532031, 23.74126199, -31.36984568, 0.44195768, 39.48532031, -77.2445669 , -23.74126199, 0.44195768, 69.36033641, -39.48532031, -31.36984568, 7.84290011, 6.83509864, -61.63490222, -23.74126199, -28.72768179, 61.63490222, 23.74126199, 69.36033641, 53.16545759, 53.16545759, 53.16545759, 13.80961808, 66.3250054 , 77.2445669 , 61.63490222, 14.80305333, ... -69.36033641, -69.36033641, 69.36033641, 69.36033641, -38.66685489, -14.80305333, -13.80961808, -22.03371704, -23.06453063, -36.57981951, -45.15448663, 39.48532031, -45.15448663, -36.57981951, -45.15448663, -38.66685489, 0.44195768, -14.80305333, -50.24004577, -6.40068779, -38.66685489, -36.57981951, 61.63490222, 20.16046475, -45.15448663, -36.57981951, -38.66685489, -14.80305333, -36.57981951, -23.06453063, -53.16545759, -22.03371704, 23.06453063, -14.80305333, -13.80961808, 45.15448663, 22.03371704, 6.40068779, 6.40068779, 36.57981951, 22.03371704, 45.15448663, 23.06453063, -45.15448663, -39.48532031, -36.57981951, -14.80305333, 47.6153194 , -20.16046475, -53.16545759, -6.40068779, 15.81962943, -13.80961808, -54.89651955, -6.40068779, 50.24004577, -77.2445669 , 77.2445669 , 82.18374261, 36.57981951, 36.57981951, 23.06453063, 13.80961808, 47.6153194 , -6.40068779, -6.40068779, 8.27994701, -14.80305333, -8.27994701, -23.06453063, -45.15448663, -31.36984568, -31.36984568, -38.66685489, -23.06453063, 22.03371704, -39.48532031, -23.74126199, 14.80305333, 6.40068779])
- face_lon(n_face)float64-175.0 -103.0 0.0 ... 172.4 -162.3
- standard_name :
- longitude
- long name :
- Longitude of the center of each face
- units :
- degrees_east
array([-174.95294504, -102.95294504, 0. , 5.04705496, 77.04705496, -66.95294504, -30.95294504, 149.04705496, 0. , 41.04705496, -138.95294504, 113.04705496, 149.04705496, 167.04705496, -156.95294504, -138.95294504, -174.95294504, -120.95294504, -84.95294504, -66.95294504, -102.95294504, 41.04705496, 113.04705496, -30.95294504, 23.04705496, -12.95294504, -30.95294504, 5.04705496, 41.04705496, 59.04705496, 77.04705496, 113.04705496, 95.04705496, -102.95294504, -66.95294504, -48.95294504, 5.04705496, 149.04705496, -174.95294504, 131.04705496, -138.95294504, 77.04705496, 167.77251723, 175.66717516, -165.57306524, -157.67840731, -174.95294504, -102.95294504, -120.22748277, -112.33282484, -93.57306524, -85.67840731, -30.95294504, 41.04705496, 113.04705496, -174.95294504, -102.95294504, 22.32159269, 14.42693476, -4.33282484, -12.22748277, 5.04705496, 67.66717516, 59.77251723, 77.04705496, 94.32159269, 86.42693476, -84.22748277, -66.95294504, -49.67840731, -57.57306524, -76.33282484, -40.33282484, -21.57306524, -13.67840731, -30.95294504, -48.22748277, 131.77251723, 149.04705496, 166.32159269, ... -66.95294504, -138.95294504, 149.04705496, 58.32159269, 41.04705496, 23.77251723, 31.66717516, 50.42693476, -129.57306524, -148.33282484, -156.22748277, -138.95294504, -121.67840731, 103.66717516, 122.42693476, 130.32159269, 113.04705496, 95.77251723, 140.11719882, 157.9769111 , 161.68736903, 136.40674089, 176.11719882, -174.95294504, 149.04705496, -138.95294504, -147.88280118, -166.0230889 , -126.31263097, -151.59325911, -130.0230889 , 149.04705496, -138.95294504, -111.88280118, -102.95294504, -94.0230889 , -66.95294504, -75.88280118, -58.0230889 , -54.31263097, -79.59325911, -66.95294504, 5.04705496, 17.68736903, 64.40674089, 77.04705496, 89.68736903, -7.59325911, 13.9769111 , 5.04705496, 32.11719882, 41.04705496, -30.95294504, -22.0230889 , -3.88280118, -43.59325911, -18.31263097, -39.88280118, 41.04705496, 28.40674089, -30.95294504, 49.9769111 , 53.68736903, 77.04705496, 68.11719882, 113.04705496, 100.40674089, 125.68736903, 121.9769111 , 104.11719882, 113.04705496, 85.9769111 , -115.59325911, -90.31263097, -102.95294504, -174.95294504, 172.40674089, -162.31263097])
- face_lat(n_face)float6426.57 26.57 90.0 ... -46.91 -46.91
- standard_name :
- latitude
- long name :
- Latitude of the center of each face
- units :
- degrees_north
array([ 2.65650512e+01, 2.65650512e+01, 9.00000000e+01, -2.65650512e+01, -2.65650512e+01, -2.65650512e+01, 2.65650512e+01, -2.65650512e+01, -9.00000000e+01, 2.65650512e+01, -2.65650512e+01, 2.65650512e+01, 3.17174744e+01, -1.08861981e-11, -5.78687373e-11, 3.17174744e+01, 5.82825256e+01, -6.93278932e-11, -5.21391594e-11, 3.17174744e+01, 5.82825256e+01, 5.82825256e+01, 5.82825256e+01, 5.82825256e+01, 5.78687373e-11, 1.08861981e-11, -3.17174744e+01, -5.82825256e+01, -3.17174744e+01, 6.93278932e-11, -5.82825256e+01, -3.17174744e+01, 5.21391594e-11, -3.17174744e+01, -5.82825256e+01, -2.69290164e-11, 3.17174744e+01, -5.82825256e+01, -3.17174744e+01, 2.69290164e-11, -5.82825256e+01, 3.17174744e+01, 3.03412934e+01, 1.36319094e+01, 1.36319094e+01, 3.03412934e+01, 4.21975660e+01, 4.21975660e+01, 3.03412934e+01, 1.36319094e+01, 1.36319094e+01, 3.03412934e+01, 7.43674852e+01, 7.43674852e+01, 7.43674852e+01, 7.43674852e+01, 7.43674852e+01, -3.03412934e+01, -1.36319094e+01, -1.36319094e+01, -3.03412934e+01, -4.21975660e+01, -1.36319094e+01, -3.03412934e+01, -4.21975660e+01, -3.03412934e+01, -1.36319094e+01, -3.03412934e+01, -4.21975660e+01, -3.03412934e+01, -1.36319094e+01, -1.36319094e+01, 1.36319094e+01, 1.36319094e+01, 3.03412934e+01, 4.21975660e+01, 3.03412934e+01, -3.03412934e+01, -4.21975660e+01, -3.03412934e+01, ... -7.43674852e+01, -7.43674852e+01, -7.43674852e+01, 3.03412934e+01, 4.21975660e+01, 3.03412934e+01, 1.36319094e+01, 1.36319094e+01, -1.36319094e+01, -1.36319094e+01, -3.03412934e+01, -4.21975660e+01, -3.03412934e+01, 1.36319094e+01, 1.36319094e+01, 3.03412934e+01, 4.21975660e+01, 3.03412934e+01, 1.56373155e+01, 1.56373155e+01, 4.69146420e+01, 4.69146420e+01, -1.56373155e+01, -8.73033316e-01, 8.73033316e-01, 8.73033316e-01, 1.56373155e+01, -1.56373155e+01, 4.69146420e+01, 4.69146420e+01, 1.56373155e+01, 6.25619155e+01, 6.25619155e+01, -1.56373155e+01, -8.73033316e-01, -1.56373155e+01, 8.73033316e-01, 1.56373155e+01, 1.56373155e+01, 4.69146420e+01, 4.69146420e+01, 6.25619155e+01, 6.25619155e+01, 4.69146420e+01, 4.69146420e+01, 6.25619155e+01, 4.69146420e+01, 4.69146420e+01, 1.56373155e+01, 8.73033316e-01, -1.56373155e+01, -8.73033316e-01, -8.73033316e-01, -1.56373155e+01, 1.56373155e+01, -4.69146420e+01, -4.69146420e+01, -1.56373155e+01, -6.25619155e+01, -4.69146420e+01, -6.25619155e+01, -1.56373155e+01, -4.69146420e+01, 8.73033316e-01, 1.56373155e+01, -6.25619155e+01, -4.69146420e+01, -4.69146420e+01, -1.56373155e+01, -1.56373155e+01, -8.73033316e-01, 1.56373155e+01, -4.69146420e+01, -4.69146420e+01, -6.25619155e+01, -6.25619155e+01, -4.69146420e+01, -4.69146420e+01])
- node_x(n_node)float64-0.8268 -0.9154 ... -0.1361 -0.6047
- standard_name :
- x
- long name :
- Cartesian x location of the corner nodes of each face
- units :
- meters
array([-0.82676436, -0.91542953, -0.95292694, -0.88743644, -0.80946368, -0.04779277, -0.08826812, -0.27992119, -0.35789395, -0.21443069, 0.0654905 , 0.16663793, 0.0374974 , -0.14346326, -0.12616257, 0.82676436, 0.80946368, 0.88743644, 0.95292694, 0.91542953, 0.04779277, 0.21443069, 0.35789395, 0.27992119, 0.08826812, 0.37451054, 0.20787261, 0.23104729, 0.41200795, 0.50067311, 0.69423891, 0.82040148, 0.85789888, 0.75491098, 0.65376355, -0.69423891, -0.65376355, -0.75491098, -0.85789888, -0.82040148, -0.0374974 , -0.16663793, -0.0654905 , 0.12616257, 0.14346326, 0.55482877, 0.68396929, 0.78695719, 0.72146669, 0.57800344, -0.68396929, -0.55482877, -0.57800344, -0.72146669, -0.78695719, -0.23104729, -0.20787261, -0.37451054, -0.50067311, -0.41200795, -0.79818152, -0.83598707, -0.74438157, -0.63748123, -0.60120804, -0.69281354, -0.96294566, -0.99293436, -0.99574926, -0.95700836, -0.92497257, -0.92420476, -0.84394201, -0.84610422, -0.90123461, -0.96889692, -0.96480182, -0.91160432, -0.56060537, -0.68305916, -0.76361767, -0.70192631, -0.58082009, -0.50026158, -0.64273396, -0.62485955, -0.49963105, -0.38898464, -0.40685905, -0.5309875 , -0.64350339, -0.49528257, -0.37609103, -0.36977759, -0.51799841, -0.63610957, 0.23757615, 0.09985058, -0.07231343, -0.06444508, ... -0.92711762, -0.90012399, -0.5264978 , -0.53183524, -0.63686774, -0.76721414, -0.76049732, -0.6568442 , -0.23455746, -0.27311402, -0.41313977, -0.54656287, -0.50717346, -0.36798057, 0.04020847, 0.1666203 , 0.31149216, 0.33543535, 0.208623 , 0.06415166, -0.75910656, -0.91649458, -0.98305558, -0.86680452, -0.72839641, 0.00273869, -0.3374614 , -0.47586951, -0.22121034, 0.0745858 , 0.11625106, 0.29579614, 0.066561 , -0.25465917, -0.22394903, 0.72839641, 0.86680452, 0.98305558, 0.91649458, 0.75910656, 0.22121034, 0.47586951, 0.3374614 , -0.00273869, -0.0745858 , 0.09055529, 0.13169225, 0.45291242, 0.61030045, 0.38635142, 0.62239105, 0.84634008, 0.91290108, 0.73008901, 0.55054394, -0.62239105, -0.55054394, -0.73008901, -0.91290108, -0.84634008, -0.11625106, 0.22394903, 0.25465917, -0.066561 , -0.29579614, 0.4896181 , 0.44848114, 0.67771627, 0.86052834, 0.74427727, -0.4896181 , -0.74427727, -0.86052834, -0.67771627, -0.44848114, -0.09055529, -0.38635142, -0.61030045, -0.45291242, -0.13169225, -0.84236515, -0.5206103 , -0.97843856, -0.7407817 , -0.45782827, -0.2201714 , 0.38453688, 0.23765686, 0.60470829, 0.13607341, 0.97843856, 0.7407817 , 0.84236515, 0.5206103 , 0.45782827, 0.2201714 , -0.23765686, -0.38453688, -0.13607341, -0.60470829])
- node_y(n_node)float640.02569 0.07887 ... -0.05341
- standard_name :
- y
- long name :
- Cartesian y location of the corner nodes of each face
- units :
- meters
array([ 0.02569453, 0.07887088, -0.08415896, -0.23809329, -0.1702001 , -0.91757708, -0.82244043, -0.77835959, -0.84625278, -0.93229392, -0.15393433, 0.01471684, 0.16302984, 0.08604114, -0.10985349, -0.02569453, 0.1702001 , 0.23809329, 0.08415896, -0.07887088, 0.91757708, 0.93229392, 0.84625278, 0.77835959, 0.82244043, -0.88028083, -0.89499767, -0.79423968, -0.71725099, -0.77042734, -0.60188386, -0.49203037, -0.32900053, -0.33809604, -0.50674722, 0.60188386, 0.50674722, 0.33809604, 0.32900053, 0.49203037, -0.16302984, -0.01471684, 0.15393433, 0.10985349, -0.08604114, 0.61348558, 0.46517259, 0.47426809, 0.62820243, 0.71424357, -0.46517259, -0.61348558, -0.71424357, -0.62820243, -0.47426809, 0.79423968, 0.89499767, 0.88028083, 0.77042734, 0.71725099, 0.4787041 , 0.33908172, 0.28414192, 0.38232516, 0.52286657, 0.57780636, 0.2078909 , 0.07282158, 0.06526862, 0.2337049 , 0.36830337, 0.37632717, -0.5324833 , -0.52471828, -0.39781799, -0.23877885, -0.24572155, -0.37344417, -0.4881357 , -0.41020817, -0.48035285, -0.61118803, -0.69028894, -0.62014426, 0.0452209 , -0.15717003, -0.22303382, -0.13633844, 0.06605249, 0.13201343, -0.76267947, -0.85157393, -0.92183359, -0.92684471, -0.83795025, -0.76588919, -0.9668398 , -0.98005757, -0.99526245, -0.99351319, ... -0.08187957, 0.06022959, 0.84768901, 0.84164892, 0.75158663, 0.63809016, 0.64254607, 0.73419253, -0.33893955, -0.47411392, -0.49443646, -0.34120507, -0.20530552, -0.18570816, 0.79575362, 0.72442565, 0.73335748, 0.83745682, 0.90704344, 0.89985297, 0.10817925, 0.20257168, -0.08681981, -0.36006601, -0.23954997, -0.76677116, -0.68852401, -0.80904006, -0.96177021, -0.9356466 , -0.2732462 , 0.02612361, 0.28939148, 0.15273016, -0.19499905, 0.23954997, 0.36006601, 0.08681981, -0.20257168, -0.10817925, 0.96177021, 0.80904006, 0.68852401, 0.76677116, 0.9356466 , -0.93423624, -0.75538246, -0.61872114, -0.71311357, -0.90811262, -0.70258593, -0.50758688, -0.21819539, -0.23434067, -0.53371049, 0.70258593, 0.53371049, 0.23434067, 0.21819539, 0.50758688, 0.2732462 , 0.19499905, -0.15273016, -0.28939148, -0.02612361, 0.80079443, 0.62194066, 0.35867279, 0.37481807, 0.64806427, -0.80079443, -0.64806427, -0.37481807, -0.35867279, -0.62194066, 0.93423624, 0.90811262, 0.71311357, 0.61872114, 0.75538246, 0.50520294, 0.31223259, -0.08641205, -0.64502057, -0.39864464, -0.95725316, -0.90384758, -0.55860853, 0.05340558, 0.59161499, 0.08641205, 0.64502057, -0.50520294, -0.31223259, 0.39864464, 0.95725316, 0.55860853, 0.90384758, -0.59161499, -0.05340558])
- node_z(n_node)float640.562 0.3947 ... -0.7947 -0.7947
- standard_name :
- z
- long name :
- Cartesian z location of the corner nodes of each face
- units :
- meters
array([ 0.56196128, 0.39467474, 0.29128598, 0.39467474, 0.56196128, 0.39467474, 0.56196128, 0.56196128, 0.39467474, 0.29128598, 0.98590832, 0.98590832, 0.98590832, 0.98590832, 0.98590832, -0.56196128, -0.56196128, -0.39467474, -0.29128598, -0.39467474, -0.39467474, -0.29128598, -0.39467474, -0.56196128, -0.56196128, -0.29128598, -0.39467474, -0.56196128, -0.56196128, -0.39467474, 0.39467474, 0.29128598, 0.39467474, 0.56196128, 0.56196128, -0.39467474, -0.56196128, -0.56196128, -0.39467474, -0.29128598, -0.98590832, -0.98590832, -0.98590832, -0.98590832, -0.98590832, 0.56196128, 0.56196128, 0.39467474, 0.29128598, 0.39467474, -0.56196128, -0.56196128, -0.39467474, -0.29128598, -0.39467474, 0.56196128, 0.39467474, 0.29128598, 0.39467474, 0.56196128, 0.36571663, 0.43145012, 0.60428424, 0.66891342, 0.60428424, 0.43145012, -0.17180519, -0.09369296, 0.06498782, 0.17180519, 0.09369296, -0.06498782, -0.06498782, 0.09369296, 0.17180519, 0.06498782, -0.09369296, -0.17180519, 0.66891342, 0.60428424, 0.43145012, 0.36571663, 0.43145012, 0.60428424, 0.76475364, 0.76475364, 0.83703329, 0.91109977, 0.91109977, 0.83703329, -0.06498782, -0.17180519, -0.09369296, 0.06498782, 0.17180519, 0.09369296, 0.09369296, 0.17180519, 0.06498782, -0.09369296, ... -0.36571663, -0.43145012, 0.06498782, -0.09369296, -0.17180519, -0.06498782, 0.09369296, 0.17180519, -0.91109977, -0.83703329, -0.76475364, -0.76475364, -0.83703329, -0.91109977, 0.60428424, 0.66891342, 0.60428424, 0.43145012, 0.36571663, 0.43145012, 0.6419147 , 0.34496724, 0.16144361, 0.34496724, 0.6419147 , 0.6419147 , 0.6419147 , 0.34496724, 0.16144361, 0.34496724, 0.95489382, 0.95489382, 0.95489382, 0.95489382, 0.95489382, -0.6419147 , -0.34496724, -0.16144361, -0.34496724, -0.6419147 , -0.16144361, -0.34496724, -0.6419147 , -0.6419147 , -0.34496724, -0.34496724, -0.6419147 , -0.6419147 , -0.34496724, -0.16144361, 0.34496724, 0.16144361, 0.34496724, 0.6419147 , 0.6419147 , -0.34496724, -0.6419147 , -0.6419147 , -0.34496724, -0.16144361, -0.95489382, -0.95489382, -0.95489382, -0.95489382, -0.95489382, 0.34496724, 0.6419147 , 0.6419147 , 0.34496724, 0.16144361, -0.34496724, -0.16144361, -0.34496724, -0.6419147 , -0.6419147 , 0.34496724, 0.16144361, 0.34496724, 0.6419147 , 0.6419147 , 0.18759247, 0.79465447, -0.18759247, 0.18759247, 0.79465447, -0.18759247, 0.18759247, 0.79465447, 0.79465447, 0.79465447, 0.18759247, -0.18759247, -0.18759247, -0.79465447, -0.79465447, 0.18759247, -0.79465447, -0.18759247, -0.79465447, -0.79465447])
- edge_x(n_edge)float64-0.5745 -0.2014 ... -0.3141
- standard_name :
- x
- long name :
- Cartesian x location of the center of each edge
- units :
- meters
array([-0.57450493, -0.20144636, -0.31671841, -0.37665927, -0.45583029, -0.2639033 , 0.294832 , 0.82510848, 0.88504933, 0.80729316, 0.69449099, 0.97620961, 0.95839429, 0.05411479, -0.05411479, 0.20144636, 0.15110113, 0.67149127, 0.15361721, 0.29272909, 0.37665927, 0.31671841, 0.45583029, -0.14750042, -0.21566098, -0.50839006, -0.38028866, -0.69449099, -0.97620961, -0.45000423, -0.5277604 , -0.19082351, -0.39685381, -0.5325958 , -0.63722493, -0.46148551, -0.05245143, -0.09841502, -0.29272909, 0.20808973, -0.294832 , -0.24270254, 0.43176756, 0.09000732, 0.81619474, 0.26444362, -0.42676362, -0.00226236, -0.65610284, -0.06068055, 0.44207918, 0.57389535, 0.64213212, 0.62894806, 0.42676362, 0.79429366, 0.06892596, -0.61976644, 0.18934723, 0.74340596, 0.99759069, 0.15500346, -0.37032259, -0.45848372, 0.93891577, 0.88233801, 0.3042471 , -0.28749619, 0.85258167, 0.46061631, 0.27822735, 0.33489105, 0.57102572, 0.42998026, -0.35464862, -0.38017074, 0.34436365, -0.18934723, -0.3042471 , 0.08815073, 0.35010549, 0.53018604, -0.67149127, 0.72560606, -0.91535992, 0.46148551, 0.10230727, -0.04201176, 0.7376775 , -0.77798186, -0.33489105, -0.15110113, 0.54849103, 0.04949023, -0.14478284, 0.2530107 , 0.72851923, -0.32514592, -0.43309125, 0.94848226, ... 0.97964637, -0.5692904 , -0.40701874, -0.61286682, -0.30008838, -0.21767151, 0.00226236, 0.15166675, -0.54335191, -0.15500346, 0.0952862 , 0.08643638, -0.66628744, 0.94290087, -0.25318665, -0.20808973, -0.33558058, -0.31148142, -0.2355856 , -0.16651325, 0.25318665, 0.33558058, -0.20628453, 0.06068055, 0.7075818 , 0.88842072, 0.96732908, 0.91783885, 0.87799097, 0.80081583, 0.70113587, -0.69760956, 0.6770367 , 0.30410789, 0.02157788, -0.0952862 , -0.92746704, -0.08815073, -0.48234678, 0.14396925, 0.04201176, -0.68288041, 0.43309125, -0.9387273 , 0.39685381, 0.42966097, 0.5325958 , -0.49459405, 0.19082351, 0.65610284, -0.00280781, 0.54668399, 0.90992995, 0.63722493, 0.38017074, -0.6770367 , 0.66628744, 0.80827455, 0.89066848, 0.74636431, -0.54668399, 0.66370084, 0.54864196, -0.52280651, 0.61976644, -0.74636431, -0.94290087, 0.2639033 , 0.13175019, -0.35010549, -0.89066848, -0.82510848, -0.83280069, 0.38028866, -0.80827455, 0.48234678, -0.21993387, 0.21993387, -0.03048376, 0.51243677, 0.68288041, 0.87197727, 0.73237064, -0.57810563, -0.69443264, -0.79962953, 0.14750042, -0.89085518, 0.79376661, -0.87197727, -0.61165515, -0.20100297, 0.72710012, -0.3784195 , -0.41070089, -0.16023687, 0.52956144, 0.63829088, -0.08195635, -0.31407633])
- edge_y(n_edge)float640.02515 -0.5386 ... 0.9633 0.9428
- standard_name :
- y
- long name :
- Cartesian y location of the center of each edge
- units :
- meters
array([ 0.02514528, -0.53861634, 0.93752366, 0.88533138, 0.87833929, 0.62030033, 0.94463498, -0.49485336, -0.44266109, -0.57231016, 0.70494214, 0.1620986 , 0.08464181, 0.57250309, -0.57250309, 0.53861634, 0.65695197, 0.05930361, -0.55415697, -0.4949726 , -0.88533138, -0.93752366, -0.87833929, -0.97852173, -0.93764289, -0.44267029, -0.43135685, -0.70494214, -0.1620986 , 0.35802848, 0.22837941, 0.78002528, 0.5829329 , 0.57094467, 0.72709389, 0.88011542, -0.85221228, -0.76548708, 0.4949726 , -0.28451284, -0.94463498, 0.97007009, 0.55756658, 0.39133052, 0.42466961, 0.53803094, 0.80980265, 0.92696049, 0.6450172 , 0.34722725, 0.88653561, 0.80747973, 0.76655518, 0.44730339, -0.80980265, -0.31323235, 0.99759196, 0.45994081, -0.11355975, -0.53409279, -0.06894431, 0.31657988, 0.67713895, 0.7202844 , 0.3159376 , 0.45531937, -0.36488707, 0.8690532 , 0.2051408 , -0.11636788, 0.87206483, 0.10998579, -0.1825852 , -0.41776153, 0.48335502, 0.89358503, -0.20652983, 0.11355975, 0.36488707, -0.96278273, 0.4866558 , 0.27984012, -0.05930361, 0.63180669, -0.00487292, -0.88011542, -0.59071224, 0.7796609 , 0.54197733, -0.19899065, -0.10998579, -0.65695197, -0.32895388, 0.21517181, 0.69017508, 0.40211249, 0.28088403, -0.78949165, -0.1952968 , -0.29362814, ... 0.16692818, -0.18792597, -0.83282448, 0.51889046, -0.94737478, -0.94638423, -0.92696049, -0.90747745, -0.65862404, -0.31657988, -0.7749559 , -0.20316728, 0.64445474, -0.2136799 , 0.24524561, 0.28451284, 0.10786365, -0.16500975, -0.41256308, -0.14498802, -0.24524561, -0.10786365, -0.28582439, -0.34722725, 0.3300971 , 0.38135255, 0.0854309 , -0.12974091, -0.27504544, -0.05955712, -0.07557917, 0.33014676, 0.19729423, 0.74321695, 0.70486744, 0.7749559 , 0.37382536, 0.96278273, -0.41999363, 0.9832827 , -0.7796609 , -0.42252501, 0.1952968 , -0.00265691, -0.5829329 , -0.67841322, -0.57094467, -0.83072129, -0.78002528, -0.6450172 , 0.59949966, -0.74859701, -0.13618231, -0.72709389, -0.89358503, -0.19729423, -0.64445474, -0.57815592, -0.44077395, -0.29629944, 0.74859701, -0.2383378 , -0.73858658, 0.47326215, -0.45994081, 0.29629944, 0.2136799 , -0.62030033, 0.92943956, -0.4866558 , 0.44077395, 0.49485336, 0.49946672, 0.43135685, 0.57815592, 0.41999363, -0.01942374, 0.01942374, -0.13253618, 0.61827308, 0.42252501, 0.29355371, 0.63769682, 0.34671504, -0.71086942, -0.59005477, 0.97852173, -0.3756304 , 0.59092785, -0.29355371, -0.35097249, 0.82982814, 0.44759618, -0.68296031, -0.82331216, 0.91300877, 0.56144516, 0.65611911, 0.9633298 , 0.94282983])
- edge_z(n_edge)float64-0.8181 -0.8181 ... 0.2555 0.1115
- standard_name :
- z
- long name :
- Cartesian z location of the center of each edge
- units :
- meters
array([-0.81811479, -0.81811479, -0.14400987, -0.27260989, -0.14400987, -0.73863561, 0.14400987, -0.27260989, -0.14400987, -0.14400987, -0.14400987, 0.14400987, 0.27260989, 0.81811479, -0.81811479, 0.81811479, 0.73863561, 0.73863561, 0.81811479, 0.81811479, 0.27260989, 0.14400987, 0.14400987, -0.14400987, -0.27260989, 0.73863561, 0.81811479, 0.14400987, -0.14400987, 0.81811479, 0.81811479, 0.59594207, 0.70901078, 0.62479108, 0.25549728, 0.11148086, -0.52056034, -0.6358805 , -0.81811479, 0.93581575, -0.14400987, -0.00771354, 0.70901078, -0.91583793, -0.39176762, -0.80037009, -0.40260709, -0.37515215, 0.39176762, -0.93581575, 0.13645736, -0.13645736, -0.00771354, -0.6358805 , 0.40260709, -0.52056034, 0.00771354, 0.6358805 , -0.97532139, -0.40260709, 0.00771354, 0.93581575, -0.6358805 , -0.52056034, 0.13645736, 0.11901222, -0.87993814, -0.40260709, -0.48064722, 0.87993814, 0.40260709, 0.93581575, 0.80037009, 0.80037009, 0.80037009, 0.23869648, 0.91583793, 0.97532139, 0.87993814, 0.25549728, 0.80037009, 0.80037009, -0.73863561, -0.27260989, -0.40260709, -0.11148086, -0.80037009, 0.62479108, -0.40260709, 0.59594207, -0.93581575, -0.73863561, 0.76873073, 0.97532139, 0.70901078, 0.87993814, 0.62479108, -0.52056034, -0.87993814, 0.11901222, ... -0.11148086, 0.80037009, 0.37515215, -0.59594207, 0.11148086, 0.23869648, 0.37515215, 0.39176762, 0.52056034, -0.93581575, 0.62479108, 0.97532139, -0.37515215, 0.25549728, 0.93581575, -0.93581575, 0.93581575, 0.93581575, 0.87993814, 0.97532139, -0.93581575, -0.93581575, 0.93581575, 0.93581575, -0.62479108, -0.25549728, -0.23869648, -0.37515215, -0.39176762, -0.59594207, -0.70901078, 0.6358805 , -0.70901078, -0.59594207, -0.70901078, -0.62479108, 0.00771354, -0.25549728, -0.76873073, -0.11148086, -0.62479108, -0.59594207, 0.87993814, 0.34465054, -0.70901078, -0.59594207, -0.62479108, -0.25549728, -0.59594207, -0.39176762, -0.80037009, -0.37515215, 0.39176762, -0.25549728, -0.23869648, 0.70901078, 0.37515215, 0.11148086, 0.11148086, 0.59594207, 0.37515215, 0.70901078, 0.39176762, -0.70901078, -0.6358805 , -0.59594207, -0.25549728, 0.73863561, -0.34465054, -0.80037009, -0.11148086, 0.27260989, -0.23869648, -0.81811479, -0.11148086, 0.76873073, -0.97532139, 0.97532139, 0.99070929, 0.59594207, 0.59594207, 0.39176762, 0.23869648, 0.73863561, -0.11148086, -0.11148086, 0.14400987, -0.25549728, -0.14400987, -0.39176762, -0.70901078, -0.52056034, -0.52056034, -0.62479108, -0.39176762, 0.37515215, -0.6358805 , -0.40260709, 0.25549728, 0.11148086])
- face_x(n_face)float64-0.891 -0.2005 ... -0.6771 -0.6508
- standard_name :
- x
- long name :
- Cartesian x location of the center of each face
- units :
- meters
array([-0.8909593 , -0.20048654, 0. , 0.8909593 , 0.20048654, 0.35015659, 0.76705181, -0.76705181, 0. , 0.67455063, -0.67455063, -0.35015659, -0.72950962, -0.97455448, -0.92018365, -0.64153577, -0.52369274, -0.51433394, 0.08797385, 0.33301871, -0.11784303, 0.39649091, -0.20581688, 0.45086174, 0.92018365, 0.97455448, 0.72950962, 0.52369274, 0.64153577, 0.51433394, 0.11784303, -0.33301871, -0.08797385, -0.19067403, 0.20581688, 0.65667862, 0.84735265, -0.45086174, -0.84735265, -0.65667862, -0.39649091, 0.19067403, -0.84345333, -0.96905242, -0.94118435, -0.79836185, -0.73796076, -0.16605831, -0.4344799 , -0.3692819 , -0.06056574, 0.06503334, 0.23109166, 0.20322359, -0.10549257, -0.26842158, -0.06040109, 0.79836185, 0.94118435, 0.96905242, 0.84345333, 0.73796076, 0.3692819 , 0.4344799 , 0.16605831, -0.06503334, 0.06056574, 0.08680293, 0.29002652, 0.5584481 , 0.52111818, 0.22962543, 0.74082365, 0.90375266, 0.83855467, 0.63533108, 0.57492999, -0.57492999, -0.63533108, -0.83855467, -0.90375266, -0.74082365, 0.06040109, 0.26842158, 0.10549257, -0.20322359, -0.23109166, 0.45322194, 0.55871451, 0.78980617, 0.8271361 , 0.61911561, -0.61911561, -0.8271361 , -0.78980617, -0.55871451, -0.45322194, -0.22962543, -0.52111818, -0.5584481 , -0.29002652, -0.08680293, -0.73895563, -0.89272076, -0.64849305, -0.49472792, -0.96077683, -0.99600715, -0.85749044, -0.75408298, -0.81561394, -0.93447619, -0.40451795, -0.60083842, -0.61929348, -0.39516873, -0.3475141 , -0.35891425, -0.22412474, -0.0675617 , 0.39144153, 0.23487849, 0.50997634, 0.39848721, 0.12338935, 0.18039321, 0.45900323, 0.65079659, 0.29507975, 0.10328639, 0.00372721, 0.67709723, 0.93447619, 0.99600715, 0.81561394, 0.75408298, 0.85749044, 0.89272076, 0.96077683, 0.49472792, 0.64849305, 0.73895563, 0.3475141 , 0.60083842, 0.39516873, 0.61929348, 0.40451795, 0.22412474, 0.35891425, -0.18039321, -0.12338935, -0.39848721, -0.50997634, -0.23487849, -0.39144153, 0.0675617 , -0.29507975, -0.00372721, -0.10328639, -0.45900323, -0.67709723, -0.65079659])
- face_y(n_face)float64-0.07869 -0.8717 ... -0.2075
- standard_name :
- y
- long name :
- Cartesian y location of the center of each face
- units :
- meters
array([-0.07868621, -0.87166803, 0. , 0.07868621, 0.87166803, -0.82303728, -0.46003426, 0.46003426, 0. , 0.58735122, -0.58735122, 0.82303728, 0.43751858, 0.22415076, -0.39148697, -0.5586042 , -0.04625059, -0.85758999, -0.99612278, -0.78275497, -0.51235361, 0.34523638, 0.48376917, -0.27040135, 0.39148697, -0.22415076, -0.43751858, 0.04625059, 0.5586042 , 0.85758999, 0.51235361, 0.78275497, 0.99612278, -0.82900556, -0.48376917, -0.75417053, 0.07483503, 0.27040135, -0.07483503, 0.75417053, -0.34523638, 0.82900556, 0.1827846 , 0.07342175, -0.24212674, -0.3277836 , -0.06517394, -0.72198225, -0.74568824, -0.89893505, -0.96994079, -0.86057794, -0.1385957 , 0.1769528 , 0.24795854, -0.02370599, -0.26260965, 0.3277836 , 0.24212674, -0.07342175, -0.1827846 , 0.06517394, 0.89893505, 0.74568824, 0.72198225, 0.86057794, 0.96994079, -0.85865533, -0.68170253, -0.65799654, -0.82029823, -0.94431219, -0.62899416, -0.35732963, -0.20408282, -0.38103562, -0.64364527, 0.64364527, 0.38103562, 0.20408282, 0.35732963, 0.62899416, 0.26260965, 0.02370599, -0.24795854, -0.1769528 , 0.1385957 , 0.73444782, 0.48648928, 0.34789359, 0.51019528, 0.74909893, -0.74909893, -0.51019528, -0.34789359, -0.48648928, -0.73444782, 0.94431219, 0.82029823, 0.65799654, 0.68170253, 0.85865533, 0.61748601, 0.36110114, 0.21462718, 0.47101205, 0.06520946, -0.08796364, 0.51427423, -0.65660239, -0.51197489, -0.23259114, -0.5504301 , -0.32496348, -0.73744151, 0.23699984, -0.30259082, -0.89360223, -0.97444135, -0.96061428, -0.92007683, -0.93390389, -0.81686505, -0.55481169, -0.67185053, -0.42401125, 0.04053745, 0.20753762, 0.61606494, 0.44906478, 0.68307699, -0.09026298, 0.23259114, 0.08796364, 0.51197489, 0.65660239, -0.51427423, -0.36110114, -0.06520946, -0.47101205, -0.21462718, -0.61748601, 0.30259082, 0.32496348, -0.23699984, 0.73744151, 0.5504301 , 0.97444135, 0.89360223, 0.42401125, 0.67185053, 0.55481169, 0.81686505, 0.93390389, 0.92007683, 0.96061428, -0.61606494, -0.68307699, -0.44906478, -0.04053745, 0.09026298, -0.20753762])
- face_z(n_face)float640.4472 0.4472 ... -0.7303 -0.7303
- standard_name :
- z
- long name :
- Cartesian z location of the center of each face
- units :
- meters
array([ 4.47213595e-01, 4.47213595e-01, 1.00000000e+00, -4.47213595e-01, -4.47213595e-01, -4.47213596e-01, 4.47213595e-01, -4.47213595e-01, -1.00000000e+00, 4.47213596e-01, -4.47213596e-01, 4.47213596e-01, 5.25731112e-01, -1.90000000e-13, -1.01000000e-12, 5.25731112e-01, 8.50650808e-01, -1.21000000e-12, -9.10000000e-13, 5.25731112e-01, 8.50650808e-01, 8.50650808e-01, 8.50650808e-01, 8.50650808e-01, 1.01000000e-12, 1.90000000e-13, -5.25731112e-01, -8.50650808e-01, -5.25731112e-01, 1.21000000e-12, -8.50650808e-01, -5.25731112e-01, 9.10000000e-13, -5.25731112e-01, -8.50650808e-01, -4.70000000e-13, 5.25731112e-01, -8.50650808e-01, -5.25731112e-01, 4.70000000e-13, -8.50650808e-01, 5.25731112e-01, 5.05149747e-01, 2.35683385e-01, 2.35683385e-01, 5.05149747e-01, 6.71689118e-01, 6.71689118e-01, 5.05149747e-01, 2.35683385e-01, 2.35683385e-01, 5.05149747e-01, 9.63009802e-01, 9.63009802e-01, 9.63009802e-01, 9.63009802e-01, 9.63009802e-01, -5.05149747e-01, -2.35683385e-01, -2.35683385e-01, -5.05149747e-01, -6.71689118e-01, -2.35683385e-01, -5.05149747e-01, -6.71689118e-01, -5.05149747e-01, -2.35683385e-01, -5.05149747e-01, -6.71689118e-01, -5.05149747e-01, -2.35683385e-01, -2.35683385e-01, 2.35683385e-01, 2.35683385e-01, 5.05149747e-01, 6.71689118e-01, 5.05149747e-01, -5.05149747e-01, -6.71689118e-01, -5.05149747e-01, ... -9.63009802e-01, -9.63009802e-01, -9.63009802e-01, 5.05149747e-01, 6.71689118e-01, 5.05149747e-01, 2.35683385e-01, 2.35683385e-01, -2.35683385e-01, -2.35683385e-01, -5.05149747e-01, -6.71689118e-01, -5.05149747e-01, 2.35683385e-01, 2.35683385e-01, 5.05149747e-01, 6.71689118e-01, 5.05149747e-01, 2.69547050e-01, 2.69547050e-01, 7.30336864e-01, 7.30336864e-01, -2.69547050e-01, -1.52367162e-02, 1.52367162e-02, 1.52367162e-02, 2.69547050e-01, -2.69547050e-01, 7.30336864e-01, 7.30336864e-01, 2.69547050e-01, 8.87509294e-01, 8.87509294e-01, -2.69547050e-01, -1.52367162e-02, -2.69547050e-01, 1.52367162e-02, 2.69547050e-01, 2.69547050e-01, 7.30336864e-01, 7.30336864e-01, 8.87509294e-01, 8.87509294e-01, 7.30336864e-01, 7.30336864e-01, 8.87509294e-01, 7.30336864e-01, 7.30336864e-01, 2.69547050e-01, 1.52367162e-02, -2.69547050e-01, -1.52367162e-02, -1.52367162e-02, -2.69547050e-01, 2.69547050e-01, -7.30336864e-01, -7.30336864e-01, -2.69547050e-01, -8.87509294e-01, -7.30336864e-01, -8.87509294e-01, -2.69547050e-01, -7.30336864e-01, 1.52367162e-02, 2.69547050e-01, -8.87509294e-01, -7.30336864e-01, -7.30336864e-01, -2.69547050e-01, -2.69547050e-01, -1.52367162e-02, 2.69547050e-01, -7.30336864e-01, -7.30336864e-01, -8.87509294e-01, -8.87509294e-01, -7.30336864e-01, -7.30336864e-01])
- face_face_connectivity(n_face, n_max_face_faces)int6444 45 46 42 43 ... 159 40 95 94 38
- cf_role :
- face_face_connectivity
- long name :
- Faces that neighbor each face.
- start_index :
- 0
- _FillValue :
- -9223372036854775808
array([[ 44, 45, 46, 42, 43, -9223372036854775808], [ 48, 49, 50, 51, 47, -9223372036854775808], [ 54, 55, 56, 52, 53, -9223372036854775808], [ 57, 58, 59, 60, 61, -9223372036854775808], [ 64, 65, 66, 62, 63, -9223372036854775808], [ 70, 71, 67, 68, 69, -9223372036854775808], [ 76, 72, 73, 74, 75, -9223372036854775808], [ 78, 79, 80, 81, 77, -9223372036854775808], [ 86, 82, 83, 84, 85, -9223372036854775808], [ 88, 89, 90, 91, 87, -9223372036854775808], ... [ 153, 31, 77, 81, 39, 154], [ 154, 32, 66, 65, 31, 152], [ 153, 152, 39, 98, 97, 32], [ 101, 41, 148, 147, 32, 97], [ 158, 157, 33, 96, 95, 40], [ 158, 34, 68, 67, 33, 156], [ 156, 40, 85, 84, 34, 157], [ 160, 37, 86, 85, 40, 161], [ 159, 161, 38, 79, 78, 37], [ 160, 159, 40, 95, 94, 38]])
- node_face_connectivity(n_node, n_max_node_faces)int6446 42 0 42 43 ... 156 159 161 160
- cf_role :
- node_face_connectivity
- long name :
- Faces that neighbor each node
- start_index :
- 0
- _FillValue :
- -9223372036854775808
array([[ 46, 42, 0], [ 42, 43, 0], [ 0, 43, 44], [ 44, 45, 0], [ 46, 0, 45], [ 50, 51, 1], [ 47, 1, 51], [ 1, 47, 48], [ 48, 49, 1], [ 1, 49, 50], [ 2, 56, 52], [ 52, 53, 2], [ 54, 2, 53], [ 55, 2, 54], [ 55, 56, 2], [ 60, 61, 3], [ 3, 61, 57], [ 57, 58, 3], [ 3, 58, 59], [ 3, 59, 60], ... [108, 103, 102], [105, 104, 115], [107, 106, 111], [114, 110, 109], [112, 116, 113], [118, 117, 119], [121, 120, 122], [124, 123, 125], [127, 126, 131], [129, 128, 130], [132, 138, 133], [135, 134, 145], [137, 136, 141], [140, 139, 144], [143, 142, 146], [147, 155, 148], [150, 149, 151], [153, 152, 154], [158, 157, 156], [159, 161, 160]])
- face_node_connectivity(n_face, n_max_face_nodes)int643 4 0 1 2 ... 232 231 293 218 217
- cf_role :
- face_node_connectivity
- long name :
- Maps every face to its corner nodes.
- start_index :
- 0
- _FillValue :
- -9223372036854775808
array([[ 3, 4, 0, 1, 2, -9223372036854775808], [ 8, 9, 5, 6, 7, -9223372036854775808], [ 13, 14, 10, 11, 12, -9223372036854775808], [ 17, 18, 19, 15, 16, -9223372036854775808], [ 24, 20, 21, 22, 23, -9223372036854775808], [ 25, 26, 27, 28, 29, -9223372036854775808], [ 30, 31, 32, 33, 34, -9223372036854775808], [ 37, 38, 39, 35, 36, -9223372036854775808], [ 42, 43, 44, 40, 41, -9223372036854775808], [ 46, 47, 48, 49, 45, -9223372036854775808], ... [ 175, 174, 275, 224, 223, 317], [ 181, 180, 264, 176, 175, 317], [ 317, 223, 222, 296, 182, 181], [ 239, 238, 315, 184, 183, 295], [ 318, 186, 191, 294, 230, 229], [ 192, 197, 266, 187, 186, 318], [ 229, 228, 283, 193, 192, 318], [ 211, 210, 284, 233, 232, 319], [ 319, 217, 216, 277, 212, 211], [ 319, 232, 231, 293, 218, 217]])
- edge_face_connectivity(n_edge, two)int64159 160 156 158 ... 97 155 97 154
- cf_role :
- edge_face_connectivity
- long name :
- Faces that neighbor each edge
- start_index :
- 0
- _FillValue :
- -9223372036854775808
array([[159, 160], [156, 158], [153, 154], [152, 153], [152, 154], [150, 151], [147, 148], [137, 141], [136, 137], [136, 141], [135, 145], [132, 133], [132, 138], [129, 130], [157, 158], [128, 129], [128, 130], [127, 131], [124, 125], [123, 125], ... [ 88, 89], [ 89, 132], [ 90, 91], [104, 105], [ 92, 109], [ 93, 109], [147, 155], [ 93, 111], [134, 135], [ 94, 111], [ 95, 161], [ 31, 65], [ 28, 57], [ 96, 156], [ 96, 117], [ 97, 101], [ 28, 146], [ 28, 145], [ 97, 155], [ 97, 154]])
- face_edge_connectivity(n_face, n_max_face_edges)int64185 215 186 224 ... 359 470 115 347
- cf_role :
- face_edge_connectivity
- long name :
- Maps every face to its edges.
- start_index :
- 0
- _FillValue :
- -9223372036854775808
array([[ 185, 215, 186, 224, 423, -9223372036854775808], [ 180, 227, 210, 360, 276, -9223372036854775808], [ 173, 188, 458, 234, 278, -9223372036854775808], [ 68, 290, 216, 132, 140, -9223372036854775808], [ 189, 333, 448, 250, 297, -9223372036854775808], [ 162, 177, 168, 354, 163, -9223372036854775808], [ 151, 157, 305, 155, 156, -9223372036854775808], [ 138, 235, 172, 175, 207, -9223372036854775808], [ 127, 225, 200, 248, 206, -9223372036854775808], [ 136, 253, 195, 261, 270, -9223372036854775808], ... [ 3, 46, 122, 213, 351, 4], [ 2, 240, 417, 181, 67, 3], [ 2, 4, 184, 35, 479, 41], [ 146, 366, 356, 466, 357, 478], [ 1, 91, 217, 473, 355, 449], [ 14, 86, 129, 420, 37, 91], [ 1, 199, 389, 161, 246, 14], [ 0, 340, 182, 90, 98, 134], [ 0, 82, 164, 331, 349, 342], [ 82, 134, 359, 470, 115, 347]])
- edge_node_connectivity(n_edge, two)int64319 211 229 318 ... 295 183 182 296
- cf_role :
- edge_node_connectivity
- long name :
- Maps every edge to the two nodes that it connects.
- start_index :
- 0
array([[319, 211], [229, 318], [317, 181], [317, 175], [223, 317], [316, 178], [315, 166], [312, 145], [312, 141], [200, 312], [311, 163], [310, 135], [207, 310], [309, 121], [318, 192], [309, 114], [235, 309], [308, 204], [307, 110], [128, 307], ... [287, 46], [208, 288], [289, 48], [301, 63], [ 90, 291], [291, 72], [184, 315], [ 77, 292], [311, 132], [292, 219], [293, 231], [176, 177], [161, 156], [294, 191], [190, 290], [ 56, 295], [157, 158], [159, 160], [295, 183], [182, 296]])
- face_areas(n_face)float640.06734 0.06734 ... 0.08026 0.08026
- cf_role :
- face_areas
- long_name :
- Area of each face.
array([0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026189, 0.08026188, 0.08026188, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026189, 0.08026189])
- n_nodes_per_face(n_face)int645 5 5 5 5 5 5 5 ... 6 6 6 6 6 6 6 6
- cf_role :
- n_nodes_per_face
- long name :
- Number of nodes per face
array([5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6])
- edge_face_distances(n_edge)float640.3001 0.3001 ... 0.3007 0.3007
- cf_role :
- edge_face_distances
- long_name :
- Distances between the face centers that saddle each edge
array([0.30008442, 0.30008442, 0.3000844 , 0.30008439, 0.3000844 , 0.30008441, 0.3000844 , 0.30008439, 0.3000844 , 0.3000844 , 0.3000844 , 0.3000844 , 0.30008439, 0.30008442, 0.30008442, 0.30008442, 0.30008441, 0.30008441, 0.30008442, 0.30008442, 0.30008439, 0.3000844 , 0.3000844 , 0.3000844 , 0.30008439, 0.30008441, 0.30008442, 0.3000844 , 0.3000844 , 0.30008442, 0.30008442, 0.31811637, 0.30068562, 0.30068563, 0.30068561, 0.30068562, 0.28073551, 0.31451634, 0.30008442, 0.30068563, 0.3000844 , 0.31451634, 0.30068562, 0.2807355 , 0.30068563, 0.31451635, 0.31451633, 0.31811636, 0.30068563, 0.30068563, 0.31451633, 0.31451633, 0.31451634, 0.31451634, 0.31451633, 0.28073551, 0.31451634, 0.31451634, 0.31811637, 0.31451633, 0.31451634, 0.30068563, 0.31451634, 0.28073551, 0.31451633, 0.28073551, 0.31451635, 0.31451633, 0.27283885, 0.31451635, 0.31451633, 0.30068563, 0.31451635, 0.31451635, 0.31451635, 0.31811636, 0.2807355 , 0.31811637, 0.31451635, 0.30068561, 0.31451635, 0.31451635, 0.30008441, 0.30008439, 0.31451633, 0.30068562, 0.31451635, 0.30068563, 0.31451633, 0.31811637, 0.30068563, 0.30008441, 0.2807355 , 0.31811637, 0.30068562, 0.31451635, 0.30068563, 0.28073551, 0.31451635, 0.28073551, ... 0.30068562, 0.31451635, 0.31811636, 0.31811637, 0.30068562, 0.31811636, 0.31811636, 0.30068563, 0.28073551, 0.30068563, 0.30068563, 0.31811637, 0.31811636, 0.30068561, 0.30068563, 0.30068563, 0.30068563, 0.30068563, 0.31451635, 0.31811637, 0.30068563, 0.30068563, 0.30068563, 0.30068563, 0.30068563, 0.30068561, 0.31811636, 0.31811636, 0.30068563, 0.31811637, 0.30068562, 0.31451634, 0.30068562, 0.31811637, 0.30068562, 0.30068563, 0.31451634, 0.30068561, 0.2807355 , 0.30068562, 0.30068563, 0.31811637, 0.31451635, 0.27283885, 0.30068562, 0.31811637, 0.30068563, 0.30068561, 0.31811637, 0.30068563, 0.31451635, 0.31811636, 0.30068563, 0.30068561, 0.31811636, 0.30068562, 0.31811636, 0.30068562, 0.30068562, 0.31811637, 0.31811636, 0.30068562, 0.30068563, 0.30068562, 0.31451634, 0.31811637, 0.30068561, 0.30008441, 0.27283885, 0.31451635, 0.30068562, 0.30008439, 0.31811636, 0.30008442, 0.30068562, 0.2807355 , 0.31811637, 0.31811637, 0.27283885, 0.31811637, 0.31811637, 0.30068563, 0.31811636, 0.30008441, 0.30068562, 0.30068562, 0.3000844 , 0.30068561, 0.3000844 , 0.30068563, 0.30068562, 0.28073551, 0.28073551, 0.30068563, 0.30068563, 0.31811636, 0.31451634, 0.31451633, 0.30068561, 0.30068562])
- edge_node_distances(n_edge)float640.1857 0.1857 ... 0.1808 0.1808
- cf_role :
- edge_node_distances
- long_name :
- Distances between the nodes that make up each edge.
array([0.18569212, 0.18569212, 0.18569211, 0.18569212, 0.18569211, 0.18569212, 0.18569211, 0.18569212, 0.18569211, 0.18569211, 0.18569211, 0.18569211, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569211, 0.18569211, 0.18569211, 0.18569212, 0.18569212, 0.18569212, 0.18569211, 0.18569211, 0.18569212, 0.18569212, 0.13341756, 0.18078901, 0.18078901, 0.18078901, 0.18078902, 0.20352982, 0.15905298, 0.18569212, 0.18078901, 0.18569211, 0.15905297, 0.18078901, 0.20352981, 0.18078901, 0.15905297, 0.15905298, 0.13341755, 0.18078901, 0.18078901, 0.15905297, 0.15905297, 0.15905297, 0.15905298, 0.15905298, 0.20352982, 0.15905297, 0.15905298, 0.13341756, 0.15905298, 0.15905297, 0.18078901, 0.15905298, 0.20352982, 0.15905297, 0.20352981, 0.15905298, 0.15905298, 0.19697539, 0.15905298, 0.15905298, 0.18078901, 0.15905297, 0.15905297, 0.15905297, 0.13341756, 0.20352981, 0.13341756, 0.15905298, 0.18078901, 0.15905297, 0.15905297, 0.18569212, 0.18569212, 0.15905298, 0.18078902, 0.15905297, 0.18078901, 0.15905298, 0.13341756, 0.18078901, 0.18569212, 0.20352982, 0.13341756, 0.18078901, 0.15905298, 0.18078901, 0.20352982, 0.15905298, 0.20352981, ... 0.18078902, 0.15905297, 0.13341755, 0.13341756, 0.18078902, 0.13341756, 0.13341755, 0.18078901, 0.20352982, 0.18078901, 0.18078901, 0.13341756, 0.13341755, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.15905298, 0.13341756, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.13341756, 0.13341755, 0.18078901, 0.13341756, 0.18078901, 0.15905298, 0.18078901, 0.13341756, 0.18078901, 0.18078901, 0.15905297, 0.18078901, 0.20352982, 0.18078902, 0.18078901, 0.13341756, 0.15905298, 0.1969754 , 0.18078901, 0.13341756, 0.18078901, 0.18078901, 0.13341756, 0.18078901, 0.15905297, 0.13341755, 0.18078901, 0.18078901, 0.13341756, 0.18078901, 0.13341755, 0.18078902, 0.18078902, 0.13341756, 0.13341755, 0.18078901, 0.18078901, 0.18078901, 0.15905298, 0.13341756, 0.18078901, 0.18569212, 0.1969754 , 0.15905297, 0.18078902, 0.18569212, 0.13341756, 0.18569212, 0.18078902, 0.20352982, 0.13341756, 0.13341756, 0.1969754 , 0.13341756, 0.13341756, 0.18078901, 0.13341756, 0.18569212, 0.18078902, 0.18078902, 0.18569211, 0.18078901, 0.18569211, 0.18078901, 0.18078901, 0.20352982, 0.20352982, 0.18078901, 0.18078901, 0.13341755, 0.15905298, 0.15905298, 0.18078901, 0.18078902])
- boundary_node_indices(n_boundary_nodes)int64
array([], dtype=int64)
- on_a_sphere :
- YES
- sphere_radius :
- 1.0
- is_periodic :
- NO
- history :
- MpasMeshConverter.x base_grids/x1.162.grid.nc base_meshes/x1.162.grid.nc
- mesh_spec :
- 1.0
- Conventions :
- MPAS
- source :
- MpasMeshConverter.x
- file_id :
- rku96q0z66
Now we can construct the dual and see the new dataset that is returned.
uxds_dual = uxds.get_dual()
uxds_dual
<xarray.UxDataset> Size: 176kB Dimensions: (n_node: 162, n_edge: 480, n_face: 320, n_max_face_nodes: 6, maxEdges2: 12, TWO: 2, vertexDegree: 3) Dimensions without coordinates: n_node, n_edge, n_face, n_max_face_nodes, maxEdges2, TWO, vertexDegree Data variables: (12/42) latCell (n_node) float64 1kB 0.4636 0.4636 ... -0.8188 -0.8188 lonCell (n_node) float64 1kB 3.23 4.486 0.0 ... 3.009 3.45 xCell (n_node) float64 1kB -0.891 -0.2005 ... -0.6508 yCell (n_node) float64 1kB -0.07869 -0.8717 ... -0.2075 zCell (n_node) float64 1kB 0.4472 0.4472 ... -0.7303 -0.7303 indexToCellID (n_node) int32 648B 1 2 3 4 5 ... 158 159 160 161 162 ... ... cellQuality (n_node) float64 1kB 1.0 1.0 1.0 ... 0.8565 0.8565 gridSpacing (n_node) float64 1kB 0.2728 0.2728 ... 0.3051 0.3051 triangleQuality (n_face) float64 3kB 0.8577 0.8577 0.8577 ... 1.0 1.0 triangleAngleQuality (n_face) float64 3kB 0.8315 0.8315 0.7619 ... 1.0 1.0 obtuseTriangle (n_face) int32 1kB 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 meshDensity (n_node) float64 1kB 1.0 1.0 1.0 1.0 ... 1.0 1.0 1.0
<xarray.UxDataset> Size: 176kB Dimensions: (n_node: 162, n_edge: 480, n_face: 320, n_max_face_nodes: 6, maxEdges2: 12, TWO: 2, vertexDegree: 3) Dimensions without coordinates: n_node, n_edge, n_face, n_max_face_nodes, maxEdges2, TWO, vertexDegree Data variables: (12/42) latCell (n_node) float64 1kB 0.4636 0.4636 ... -0.8188 -0.8188 lonCell (n_node) float64 1kB 3.23 4.486 0.0 ... 3.009 3.45 xCell (n_node) float64 1kB -0.891 -0.2005 ... -0.6508 yCell (n_node) float64 1kB -0.07869 -0.8717 ... -0.2075 zCell (n_node) float64 1kB 0.4472 0.4472 ... -0.7303 -0.7303 indexToCellID (n_node) int32 648B 1 2 3 4 5 ... 158 159 160 161 162 ... ... cellQuality (n_node) float64 1kB 1.0 1.0 1.0 ... 0.8565 0.8565 gridSpacing (n_node) float64 1kB 0.2728 0.2728 ... 0.3051 0.3051 triangleQuality (n_face) float64 3kB 0.8577 0.8577 0.8577 ... 1.0 1.0 triangleAngleQuality (n_face) float64 3kB 0.8315 0.8315 0.7619 ... 1.0 1.0 obtuseTriangle (n_face) int32 1kB 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 meshDensity (n_node) float64 1kB 1.0 1.0 1.0 1.0 ... 1.0 1.0 1.0
- n_node: 162
- n_edge: 480
- n_face: 320
- n_max_face_nodes: 6
- maxEdges2: 12
- TWO: 2
- vertexDegree: 3
- latCell(n_node)float640.4636 0.4636 ... -0.8188 -0.8188
array([ 4.63647609e-01, 4.63647609e-01, 1.57079633e+00, -4.63647609e-01, -4.63647609e-01, -4.63647609e-01, 4.63647609e-01, -4.63647609e-01, -1.57079633e+00, 4.63647609e-01, -4.63647609e-01, 4.63647609e-01, 5.53574359e-01, -1.90000000e-13, -1.01000000e-12, 5.53574359e-01, 1.01722197e+00, -1.21000000e-12, -9.10000000e-13, 5.53574359e-01, 1.01722197e+00, 1.01722197e+00, 1.01722197e+00, 1.01722197e+00, 1.01000000e-12, 1.90000000e-13, -5.53574359e-01, -1.01722197e+00, -5.53574359e-01, 1.21000000e-12, -1.01722197e+00, -5.53574359e-01, 9.10000000e-13, -5.53574359e-01, -1.01722197e+00, -4.70000000e-13, 5.53574359e-01, -1.01722197e+00, -5.53574359e-01, 4.70000000e-13, -1.01722197e+00, 5.53574359e-01, 5.29555469e-01, 2.37921702e-01, 2.37921702e-01, 5.29555469e-01, 7.36486462e-01, 7.36486462e-01, 5.29555469e-01, 2.37921702e-01, 2.37921702e-01, 5.29555469e-01, 1.29795747e+00, 1.29795747e+00, 1.29795747e+00, 1.29795747e+00, 1.29795747e+00, -5.29555469e-01, -2.37921702e-01, -2.37921702e-01, -5.29555469e-01, -7.36486462e-01, -2.37921702e-01, -5.29555469e-01, -7.36486462e-01, -5.29555469e-01, -2.37921702e-01, -5.29555469e-01, -7.36486462e-01, -5.29555469e-01, -2.37921702e-01, -2.37921702e-01, 2.37921702e-01, 2.37921702e-01, 5.29555469e-01, 7.36486462e-01, 5.29555469e-01, -5.29555469e-01, -7.36486462e-01, -5.29555469e-01, ... -1.29795747e+00, -1.29795747e+00, -1.29795747e+00, 5.29555469e-01, 7.36486462e-01, 5.29555469e-01, 2.37921702e-01, 2.37921702e-01, -2.37921702e-01, -2.37921702e-01, -5.29555469e-01, -7.36486462e-01, -5.29555469e-01, 2.37921702e-01, 2.37921702e-01, 5.29555469e-01, 7.36486462e-01, 5.29555469e-01, 2.72922642e-01, 2.72922642e-01, 8.18814970e-01, 8.18814970e-01, -2.72922642e-01, -1.52373058e-02, 1.52373058e-02, 1.52373058e-02, 2.72922642e-01, -2.72922642e-01, 8.18814970e-01, 8.18814970e-01, 2.72922642e-01, 1.09191141e+00, 1.09191141e+00, -2.72922642e-01, -1.52373058e-02, -2.72922642e-01, 1.52373058e-02, 2.72922642e-01, 2.72922642e-01, 8.18814970e-01, 8.18814970e-01, 1.09191141e+00, 1.09191141e+00, 8.18814970e-01, 8.18814970e-01, 1.09191141e+00, 8.18814970e-01, 8.18814970e-01, 2.72922642e-01, 1.52373058e-02, -2.72922642e-01, -1.52373058e-02, -1.52373058e-02, -2.72922642e-01, 2.72922642e-01, -8.18814970e-01, -8.18814970e-01, -2.72922642e-01, -1.09191141e+00, -8.18814970e-01, -1.09191141e+00, -2.72922642e-01, -8.18814970e-01, 1.52373058e-02, 2.72922642e-01, -1.09191141e+00, -8.18814970e-01, -8.18814970e-01, -2.72922642e-01, -2.72922642e-01, -1.52373058e-02, 2.72922642e-01, -8.18814970e-01, -8.18814970e-01, -1.09191141e+00, -1.09191141e+00, -8.18814970e-01, -8.18814970e-01])
- lonCell(n_node)float643.23 4.486 0.0 ... 3.23 3.009 3.45
array([3.22968038, 4.48631744, 0. , 0.08808773, 1.34472479, 5.11463597, 5.7429545 , 2.60136185, 0. , 0.71640626, 3.85799891, 1.97304332, 2.60136185, 2.91552111, 3.54383965, 3.85799891, 3.22968038, 4.17215818, 4.80047671, 5.11463597, 4.48631744, 0.71640626, 1.97304332, 5.7429545 , 0.40224699, 6.05711377, 5.7429545 , 0.08808773, 0.71640626, 1.03056552, 1.34472479, 1.97304332, 1.65888405, 4.48631744, 5.11463597, 5.42879524, 0.08808773, 2.60136185, 3.22968038, 2.28720258, 3.85799891, 1.34472479, 2.92818282, 3.06597059, 3.39339017, 3.53117794, 3.22968038, 4.48631744, 4.18481988, 4.32260766, 4.65002723, 4.787815 , 5.7429545 , 0.71640626, 1.97304332, 3.22968038, 4.48631744, 0.38958529, 0.25179751, 6.20756325, 6.06977547, 0.08808773, 1.181015 , 1.04322723, 1.34472479, 1.64622235, 1.50843457, 4.81313841, 5.11463597, 5.41613353, 5.27834576, 4.95092619, 5.57924472, 5.90666429, 6.04445206, 5.7429545 , 5.44145694, 2.29986429, 2.60136185, 2.90285941, 2.76507164, 2.43765206, 1.34472479, 0.08808773, 5.11463597, 3.85799891, 2.60136185, 1.01790382, 0.71640626, 0.4149087 , 0.55269647, 0.88011604, 4.0217087 , 3.69428912, 3.55650135, 3.85799891, 4.15949647, 1.80933353, 2.1367531 , 2.27454088, 1.97304332, 1.67154576, 2.44550646, 2.75721724, 2.82197695, 2.38074675, 3.07382499, 3.22968038, 2.60136185, 3.85799891, 3.70214352, 3.38553577, 4.07861401, 3.63738381, 4.0138543 , 2.60136185, 3.85799891, 4.33046205, 4.48631744, 4.64217283, 5.11463597, 4.95878058, 5.27049136, 5.33525107, 4.89402087, 5.11463597, 0.08808773, 0.30870283, 1.12410969, 1.34472479, 1.56533989, 6.15065793, 0.24394312, 0.08808773, 0.56055087, 0.71640626, 5.7429545 , 5.89880989, 6.21541764, 5.5223394 , 5.9635696 , 5.58709911, 0.71640626, 0.49579116, 5.7429545 , 0.87226165, 0.93702136, 1.34472479, 1.1888694 , 1.97304332, 1.75242822, 2.19365842, 2.12889871, 1.81718793, 1.97304332, 1.50058018, 4.26570234, 4.70693254, 4.48631744, 3.22968038, 3.00906528, 3.45029548])
- xCell(n_node)float64-0.891 -0.2005 ... -0.6771 -0.6508
array([-0.8909593 , -0.20048654, 0. , 0.8909593 , 0.20048654, 0.35015659, 0.76705181, -0.76705181, 0. , 0.67455063, -0.67455063, -0.35015659, -0.72950962, -0.97455448, -0.92018365, -0.64153577, -0.52369274, -0.51433394, 0.08797385, 0.33301871, -0.11784303, 0.39649091, -0.20581688, 0.45086174, 0.92018365, 0.97455448, 0.72950962, 0.52369274, 0.64153577, 0.51433394, 0.11784303, -0.33301871, -0.08797385, -0.19067403, 0.20581688, 0.65667862, 0.84735265, -0.45086174, -0.84735265, -0.65667862, -0.39649091, 0.19067403, -0.84345333, -0.96905242, -0.94118435, -0.79836185, -0.73796076, -0.16605831, -0.4344799 , -0.3692819 , -0.06056574, 0.06503334, 0.23109166, 0.20322359, -0.10549257, -0.26842158, -0.06040109, 0.79836185, 0.94118435, 0.96905242, 0.84345333, 0.73796076, 0.3692819 , 0.4344799 , 0.16605831, -0.06503334, 0.06056574, 0.08680293, 0.29002652, 0.5584481 , 0.52111818, 0.22962543, 0.74082365, 0.90375266, 0.83855467, 0.63533108, 0.57492999, -0.57492999, -0.63533108, -0.83855467, -0.90375266, -0.74082365, 0.06040109, 0.26842158, 0.10549257, -0.20322359, -0.23109166, 0.45322194, 0.55871451, 0.78980617, 0.8271361 , 0.61911561, -0.61911561, -0.8271361 , -0.78980617, -0.55871451, -0.45322194, -0.22962543, -0.52111818, -0.5584481 , -0.29002652, -0.08680293, -0.73895563, -0.89272076, -0.64849305, -0.49472792, -0.96077683, -0.99600715, -0.85749044, -0.75408298, -0.81561394, -0.93447619, -0.40451795, -0.60083842, -0.61929348, -0.39516873, -0.3475141 , -0.35891425, -0.22412474, -0.0675617 , 0.39144153, 0.23487849, 0.50997634, 0.39848721, 0.12338935, 0.18039321, 0.45900323, 0.65079659, 0.29507975, 0.10328639, 0.00372721, 0.67709723, 0.93447619, 0.99600715, 0.81561394, 0.75408298, 0.85749044, 0.89272076, 0.96077683, 0.49472792, 0.64849305, 0.73895563, 0.3475141 , 0.60083842, 0.39516873, 0.61929348, 0.40451795, 0.22412474, 0.35891425, -0.18039321, -0.12338935, -0.39848721, -0.50997634, -0.23487849, -0.39144153, 0.0675617 , -0.29507975, -0.00372721, -0.10328639, -0.45900323, -0.67709723, -0.65079659])
- yCell(n_node)float64-0.07869 -0.8717 ... -0.2075
array([-0.07868621, -0.87166803, 0. , 0.07868621, 0.87166803, -0.82303728, -0.46003426, 0.46003426, 0. , 0.58735122, -0.58735122, 0.82303728, 0.43751858, 0.22415076, -0.39148697, -0.5586042 , -0.04625059, -0.85758999, -0.99612278, -0.78275497, -0.51235361, 0.34523638, 0.48376917, -0.27040135, 0.39148697, -0.22415076, -0.43751858, 0.04625059, 0.5586042 , 0.85758999, 0.51235361, 0.78275497, 0.99612278, -0.82900556, -0.48376917, -0.75417053, 0.07483503, 0.27040135, -0.07483503, 0.75417053, -0.34523638, 0.82900556, 0.1827846 , 0.07342175, -0.24212674, -0.3277836 , -0.06517394, -0.72198225, -0.74568824, -0.89893505, -0.96994079, -0.86057794, -0.1385957 , 0.1769528 , 0.24795854, -0.02370599, -0.26260965, 0.3277836 , 0.24212674, -0.07342175, -0.1827846 , 0.06517394, 0.89893505, 0.74568824, 0.72198225, 0.86057794, 0.96994079, -0.85865533, -0.68170253, -0.65799654, -0.82029823, -0.94431219, -0.62899416, -0.35732963, -0.20408282, -0.38103562, -0.64364527, 0.64364527, 0.38103562, 0.20408282, 0.35732963, 0.62899416, 0.26260965, 0.02370599, -0.24795854, -0.1769528 , 0.1385957 , 0.73444782, 0.48648928, 0.34789359, 0.51019528, 0.74909893, -0.74909893, -0.51019528, -0.34789359, -0.48648928, -0.73444782, 0.94431219, 0.82029823, 0.65799654, 0.68170253, 0.85865533, 0.61748601, 0.36110114, 0.21462718, 0.47101205, 0.06520946, -0.08796364, 0.51427423, -0.65660239, -0.51197489, -0.23259114, -0.5504301 , -0.32496348, -0.73744151, 0.23699984, -0.30259082, -0.89360223, -0.97444135, -0.96061428, -0.92007683, -0.93390389, -0.81686505, -0.55481169, -0.67185053, -0.42401125, 0.04053745, 0.20753762, 0.61606494, 0.44906478, 0.68307699, -0.09026298, 0.23259114, 0.08796364, 0.51197489, 0.65660239, -0.51427423, -0.36110114, -0.06520946, -0.47101205, -0.21462718, -0.61748601, 0.30259082, 0.32496348, -0.23699984, 0.73744151, 0.5504301 , 0.97444135, 0.89360223, 0.42401125, 0.67185053, 0.55481169, 0.81686505, 0.93390389, 0.92007683, 0.96061428, -0.61606494, -0.68307699, -0.44906478, -0.04053745, 0.09026298, -0.20753762])
- zCell(n_node)float640.4472 0.4472 ... -0.7303 -0.7303
array([ 4.47213595e-01, 4.47213595e-01, 1.00000000e+00, -4.47213595e-01, -4.47213595e-01, -4.47213596e-01, 4.47213595e-01, -4.47213595e-01, -1.00000000e+00, 4.47213596e-01, -4.47213596e-01, 4.47213596e-01, 5.25731112e-01, -1.90000000e-13, -1.01000000e-12, 5.25731112e-01, 8.50650808e-01, -1.21000000e-12, -9.10000000e-13, 5.25731112e-01, 8.50650808e-01, 8.50650808e-01, 8.50650808e-01, 8.50650808e-01, 1.01000000e-12, 1.90000000e-13, -5.25731112e-01, -8.50650808e-01, -5.25731112e-01, 1.21000000e-12, -8.50650808e-01, -5.25731112e-01, 9.10000000e-13, -5.25731112e-01, -8.50650808e-01, -4.70000000e-13, 5.25731112e-01, -8.50650808e-01, -5.25731112e-01, 4.70000000e-13, -8.50650808e-01, 5.25731112e-01, 5.05149747e-01, 2.35683385e-01, 2.35683385e-01, 5.05149747e-01, 6.71689118e-01, 6.71689118e-01, 5.05149747e-01, 2.35683385e-01, 2.35683385e-01, 5.05149747e-01, 9.63009802e-01, 9.63009802e-01, 9.63009802e-01, 9.63009802e-01, 9.63009802e-01, -5.05149747e-01, -2.35683385e-01, -2.35683385e-01, -5.05149747e-01, -6.71689118e-01, -2.35683385e-01, -5.05149747e-01, -6.71689118e-01, -5.05149747e-01, -2.35683385e-01, -5.05149747e-01, -6.71689118e-01, -5.05149747e-01, -2.35683385e-01, -2.35683385e-01, 2.35683385e-01, 2.35683385e-01, 5.05149747e-01, 6.71689118e-01, 5.05149747e-01, -5.05149747e-01, -6.71689118e-01, -5.05149747e-01, ... -9.63009802e-01, -9.63009802e-01, -9.63009802e-01, 5.05149747e-01, 6.71689118e-01, 5.05149747e-01, 2.35683385e-01, 2.35683385e-01, -2.35683385e-01, -2.35683385e-01, -5.05149747e-01, -6.71689118e-01, -5.05149747e-01, 2.35683385e-01, 2.35683385e-01, 5.05149747e-01, 6.71689118e-01, 5.05149747e-01, 2.69547050e-01, 2.69547050e-01, 7.30336864e-01, 7.30336864e-01, -2.69547050e-01, -1.52367162e-02, 1.52367162e-02, 1.52367162e-02, 2.69547050e-01, -2.69547050e-01, 7.30336864e-01, 7.30336864e-01, 2.69547050e-01, 8.87509294e-01, 8.87509294e-01, -2.69547050e-01, -1.52367162e-02, -2.69547050e-01, 1.52367162e-02, 2.69547050e-01, 2.69547050e-01, 7.30336864e-01, 7.30336864e-01, 8.87509294e-01, 8.87509294e-01, 7.30336864e-01, 7.30336864e-01, 8.87509294e-01, 7.30336864e-01, 7.30336864e-01, 2.69547050e-01, 1.52367162e-02, -2.69547050e-01, -1.52367162e-02, -1.52367162e-02, -2.69547050e-01, 2.69547050e-01, -7.30336864e-01, -7.30336864e-01, -2.69547050e-01, -8.87509294e-01, -7.30336864e-01, -8.87509294e-01, -2.69547050e-01, -7.30336864e-01, 1.52367162e-02, 2.69547050e-01, -8.87509294e-01, -7.30336864e-01, -7.30336864e-01, -2.69547050e-01, -2.69547050e-01, -1.52367162e-02, 2.69547050e-01, -7.30336864e-01, -7.30336864e-01, -8.87509294e-01, -8.87509294e-01, -7.30336864e-01, -7.30336864e-01])
- indexToCellID(n_node)int321 2 3 4 5 6 ... 158 159 160 161 162
array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162], dtype=int32)
- latEdge(n_edge)float64-0.9581 -0.9581 ... 0.2584 0.1117
array([-0.95812501, -0.95812501, -0.14451234, -0.27610462, -0.14451234, -0.8310441 , 0.14451234, -0.27610462, -0.14451234, -0.14451234, -0.14451234, 0.14451234, 0.27610462, 0.95812501, -0.95812501, 0.95812501, 0.8310441 , 0.8310441 , 0.95812501, 0.95812501, 0.27610462, 0.14451234, 0.14451234, -0.14451234, -0.27610462, 0.8310441 , 0.95812501, 0.14451234, -0.14451234, 0.95812501, 0.95812501, 0.63843829, 0.78809446, 0.67486393, 0.25836202, 0.11171308, -0.54750709, -0.68914885, -0.95812501, 1.21056624, -0.14451234, -0.00771362, 0.78809446, -1.15758972, -0.402552 , -0.92791228, -0.41436319, -0.38456091, 0.402552 , -1.21056624, 0.13688443, -0.13688443, -0.00771362, -0.68914885, 0.41436319, -0.54750709, 0.00771362, 0.68914885, -1.34817202, -0.41436319, 0.00771362, 1.21056624, -0.68914885, -0.54750709, 0.13688443, 0.11929498, -1.07573198, -0.41436319, -0.50139263, 1.07573198, 0.41436319, 1.21056624, 0.92791228, 0.92791228, 0.92791228, 0.2410233 , 1.15758972, 1.34817202, 1.07573198, 0.25836202, 0.92791228, 0.92791228, -0.8310441 , -0.27610462, -0.41436319, -0.11171308, -0.92791228, 0.67486393, -0.41436319, 0.63843829, -1.21056624, -0.8310441 , 0.87685422, 1.34817202, 0.78809446, 1.07573198, 0.67486393, -0.54750709, -1.07573198, 0.11929498, ... -0.11171308, 0.92791228, 0.38456091, -0.63843829, 0.11171308, 0.2410233 , 0.38456091, 0.402552 , 0.54750709, -1.21056624, 0.67486393, 1.34817202, -0.38456091, 0.25836202, 1.21056624, -1.21056624, 1.21056624, 1.21056624, 1.07573198, 1.34817202, -1.21056624, -1.21056624, 1.21056624, 1.21056624, -0.67486393, -0.25836202, -0.2410233 , -0.38456091, -0.402552 , -0.63843829, -0.78809446, 0.68914885, -0.78809446, -0.63843829, -0.78809446, -0.67486393, 0.00771362, -0.25836202, -0.87685422, -0.11171308, -0.67486393, -0.63843829, 1.07573198, 0.35186649, -0.78809446, -0.63843829, -0.67486393, -0.25836202, -0.63843829, -0.402552 , -0.92791228, -0.38456091, 0.402552 , -0.25836202, -0.2410233 , 0.78809446, 0.38456091, 0.11171308, 0.11171308, 0.63843829, 0.38456091, 0.78809446, 0.402552 , -0.78809446, -0.68914885, -0.63843829, -0.25836202, 0.8310441 , -0.35186649, -0.92791228, -0.11171308, 0.27610462, -0.2410233 , -0.95812501, -0.11171308, 0.87685422, -1.34817202, 1.34817202, 1.4343769 , 0.63843829, 0.63843829, 0.402552 , 0.2410233 , 0.8310441 , -0.11171308, -0.11171308, 0.14451234, -0.25836202, -0.14451234, -0.402552 , -0.78809446, -0.54750709, -0.54750709, -0.67486393, -0.402552 , 0.38456091, -0.68914885, -0.41436319, 0.25836202, 0.11171308])
- lonEdge(n_edge)float643.098 4.354 1.897 ... 1.656 1.892
array([3.09785197e+00, 4.35448903e+00, 1.89658343e+00, 1.97304332e+00, 2.04950321e+00, 1.97304332e+00, 1.26826489e+00, 5.74295450e+00, 5.81941440e+00, 5.66649461e+00, 7.92866151e-01, 1.64547620e-01, 8.80877266e-02, 1.47655320e+00, 4.61814585e+00, 1.21289638e+00, 1.34472479e+00, 8.80877266e-02, 4.98280756e+00, 5.24646438e+00, 5.11463597e+00, 5.03817608e+00, 5.19109587e+00, 4.56277734e+00, 4.48631744e+00, 3.85799891e+00, 3.98982732e+00, 3.93445880e+00, 3.30614027e+00, 2.46953344e+00, 2.73319026e+00, 1.81072169e+00, 2.16851173e+00, 2.32145771e+00, 2.29041858e+00, 2.05373095e+00, 4.65091915e+00, 4.58452516e+00, 2.10487173e+00, 5.34387265e+00, 4.40985755e+00, 1.81595449e+00, 9.11874673e-01, 1.34472479e+00, 4.79758765e-01, 1.11396970e+00, 2.05580760e+00, 1.57323694e+00, 2.36471436e+00, 1.74380664e+00, 1.10822190e+00, 9.52909145e-01, 8.73495084e-01, 6.18198535e-01, 5.19740025e+00, 5.90755621e+00, 1.50181361e+00, 2.50315413e+00, 5.74295450e+00, 5.66019022e+00, 6.21418421e+00, 1.11548811e+00, 2.07125104e+00, 2.13764502e+00, 3.24590615e-01, 4.76395019e-01, 5.40740949e+00, 1.89027904e+00, 2.36122930e-01, 6.03572802e+00, 1.26196051e+00, 3.17324403e-01, 5.97370960e+00, 5.51219941e+00, 2.20379841e+00, 1.97304332e+00, 5.74295450e+00, 2.60136185e+00, 2.26581683e+00, 4.80369270e+00, ... 5.51371783e+00, 5.97219118e+00, 4.08723559e+00, 4.88539930e+00, 4.36502117e-01, 4.05462985e-01, 8.80877266e-02, 6.14276088e+00, 5.97960200e+00, 6.20895141e+00, 6.17580462e+00, 2.69956957e+00, 2.83556142e-01, 1.18240316e+00, 1.54019320e+00, 1.69313918e+00, 2.75845068e+00, 1.66210005e+00, 3.85799891e+00, 1.42541242e+00, 4.76622158e+00, 3.69567728e+00, 4.23632742e-01, 3.14442298e+00, 5.31010439e+00, 5.27695760e+00, 5.46305036e+00, 4.17537417e+00, 4.95231435e+00, 5.50630701e+00, 1.57547988e+00, 5.34314813e+00, 6.13462554e+00, 5.43201123e+00, 5.11463597e+00, 3.42514880e+00, 5.51444235e+00, 5.66226687e+00, 5.82364214e+00, 5.90527613e+00, 2.20155547e+00, 5.93842292e+00, 5.35128346e+00, 2.40589343e+00, 5.64474678e+00, 2.76368348e+00, 2.91873711e+00, 5.11463597e+00, 1.42998219e+00, 4.08875400e+00, 2.68204948e+00, 2.60136185e+00, 2.60136185e+00, 8.48234667e-01, 2.52067422e+00, 7.16406257e-01, 3.22968038e+00, 8.80877266e-02, 4.48631744e+00, 8.78727883e-01, 5.54084631e-01, 3.24735219e-01, 7.16406257e-01, 2.60136185e+00, 3.93868655e+00, 3.77731128e+00, 1.42118468e+00, 3.54062365e+00, 6.39946364e-01, 3.46632787e+00, 3.66253050e+00, 1.80844161e+00, 5.51804553e-01, 4.20641330e+00, 4.24966995e+00, 1.74453116e+00, 8.14613980e-01, 7.99170537e-01, 1.65566806e+00, 1.89235568e+00])
- xEdge(n_edge)float64-0.5745 -0.2014 ... -0.3141
array([-0.57450493, -0.20144636, -0.31671841, -0.37665927, -0.45583029, -0.2639033 , 0.294832 , 0.82510848, 0.88504933, 0.80729316, 0.69449099, 0.97620961, 0.95839429, 0.05411479, -0.05411479, 0.20144636, 0.15110113, 0.67149127, 0.15361721, 0.29272909, 0.37665927, 0.31671841, 0.45583029, -0.14750042, -0.21566098, -0.50839006, -0.38028866, -0.69449099, -0.97620961, -0.45000423, -0.5277604 , -0.19082351, -0.39685381, -0.5325958 , -0.63722493, -0.46148551, -0.05245143, -0.09841502, -0.29272909, 0.20808973, -0.294832 , -0.24270254, 0.43176756, 0.09000732, 0.81619474, 0.26444362, -0.42676362, -0.00226236, -0.65610284, -0.06068055, 0.44207918, 0.57389535, 0.64213212, 0.62894806, 0.42676362, 0.79429366, 0.06892596, -0.61976644, 0.18934723, 0.74340596, 0.99759069, 0.15500346, -0.37032259, -0.45848372, 0.93891577, 0.88233801, 0.3042471 , -0.28749619, 0.85258167, 0.46061631, 0.27822735, 0.33489105, 0.57102572, 0.42998026, -0.35464862, -0.38017074, 0.34436365, -0.18934723, -0.3042471 , 0.08815073, 0.35010549, 0.53018604, -0.67149127, 0.72560606, -0.91535992, 0.46148551, 0.10230727, -0.04201176, 0.7376775 , -0.77798186, -0.33489105, -0.15110113, 0.54849103, 0.04949023, -0.14478284, 0.2530107 , 0.72851923, -0.32514592, -0.43309125, 0.94848226, ... 0.97964637, -0.5692904 , -0.40701874, -0.61286682, -0.30008838, -0.21767151, 0.00226236, 0.15166675, -0.54335191, -0.15500346, 0.0952862 , 0.08643638, -0.66628744, 0.94290087, -0.25318665, -0.20808973, -0.33558058, -0.31148142, -0.2355856 , -0.16651325, 0.25318665, 0.33558058, -0.20628453, 0.06068055, 0.7075818 , 0.88842072, 0.96732908, 0.91783885, 0.87799097, 0.80081583, 0.70113587, -0.69760956, 0.6770367 , 0.30410789, 0.02157788, -0.0952862 , -0.92746704, -0.08815073, -0.48234678, 0.14396925, 0.04201176, -0.68288041, 0.43309125, -0.9387273 , 0.39685381, 0.42966097, 0.5325958 , -0.49459405, 0.19082351, 0.65610284, -0.00280781, 0.54668399, 0.90992995, 0.63722493, 0.38017074, -0.6770367 , 0.66628744, 0.80827455, 0.89066848, 0.74636431, -0.54668399, 0.66370084, 0.54864196, -0.52280651, 0.61976644, -0.74636431, -0.94290087, 0.2639033 , 0.13175019, -0.35010549, -0.89066848, -0.82510848, -0.83280069, 0.38028866, -0.80827455, 0.48234678, -0.21993387, 0.21993387, -0.03048376, 0.51243677, 0.68288041, 0.87197727, 0.73237064, -0.57810563, -0.69443264, -0.79962953, 0.14750042, -0.89085518, 0.79376661, -0.87197727, -0.61165515, -0.20100297, 0.72710012, -0.3784195 , -0.41070089, -0.16023687, 0.52956144, 0.63829088, -0.08195635, -0.31407633])
- yEdge(n_edge)float640.02515 -0.5386 ... 0.9633 0.9428
array([ 0.02514528, -0.53861634, 0.93752366, 0.88533138, 0.87833929, 0.62030033, 0.94463498, -0.49485336, -0.44266109, -0.57231016, 0.70494214, 0.1620986 , 0.08464181, 0.57250309, -0.57250309, 0.53861634, 0.65695197, 0.05930361, -0.55415697, -0.4949726 , -0.88533138, -0.93752366, -0.87833929, -0.97852173, -0.93764289, -0.44267029, -0.43135685, -0.70494214, -0.1620986 , 0.35802848, 0.22837941, 0.78002528, 0.5829329 , 0.57094467, 0.72709389, 0.88011542, -0.85221228, -0.76548708, 0.4949726 , -0.28451284, -0.94463498, 0.97007009, 0.55756658, 0.39133052, 0.42466961, 0.53803094, 0.80980265, 0.92696049, 0.6450172 , 0.34722725, 0.88653561, 0.80747973, 0.76655518, 0.44730339, -0.80980265, -0.31323235, 0.99759196, 0.45994081, -0.11355975, -0.53409279, -0.06894431, 0.31657988, 0.67713895, 0.7202844 , 0.3159376 , 0.45531937, -0.36488707, 0.8690532 , 0.2051408 , -0.11636788, 0.87206483, 0.10998579, -0.1825852 , -0.41776153, 0.48335502, 0.89358503, -0.20652983, 0.11355975, 0.36488707, -0.96278273, 0.4866558 , 0.27984012, -0.05930361, 0.63180669, -0.00487292, -0.88011542, -0.59071224, 0.7796609 , 0.54197733, -0.19899065, -0.10998579, -0.65695197, -0.32895388, 0.21517181, 0.69017508, 0.40211249, 0.28088403, -0.78949165, -0.1952968 , -0.29362814, ... 0.16692818, -0.18792597, -0.83282448, 0.51889046, -0.94737478, -0.94638423, -0.92696049, -0.90747745, -0.65862404, -0.31657988, -0.7749559 , -0.20316728, 0.64445474, -0.2136799 , 0.24524561, 0.28451284, 0.10786365, -0.16500975, -0.41256308, -0.14498802, -0.24524561, -0.10786365, -0.28582439, -0.34722725, 0.3300971 , 0.38135255, 0.0854309 , -0.12974091, -0.27504544, -0.05955712, -0.07557917, 0.33014676, 0.19729423, 0.74321695, 0.70486744, 0.7749559 , 0.37382536, 0.96278273, -0.41999363, 0.9832827 , -0.7796609 , -0.42252501, 0.1952968 , -0.00265691, -0.5829329 , -0.67841322, -0.57094467, -0.83072129, -0.78002528, -0.6450172 , 0.59949966, -0.74859701, -0.13618231, -0.72709389, -0.89358503, -0.19729423, -0.64445474, -0.57815592, -0.44077395, -0.29629944, 0.74859701, -0.2383378 , -0.73858658, 0.47326215, -0.45994081, 0.29629944, 0.2136799 , -0.62030033, 0.92943956, -0.4866558 , 0.44077395, 0.49485336, 0.49946672, 0.43135685, 0.57815592, 0.41999363, -0.01942374, 0.01942374, -0.13253618, 0.61827308, 0.42252501, 0.29355371, 0.63769682, 0.34671504, -0.71086942, -0.59005477, 0.97852173, -0.3756304 , 0.59092785, -0.29355371, -0.35097249, 0.82982814, 0.44759618, -0.68296031, -0.82331216, 0.91300877, 0.56144516, 0.65611911, 0.9633298 , 0.94282983])
- zEdge(n_edge)float64-0.8181 -0.8181 ... 0.2555 0.1115
array([-0.81811479, -0.81811479, -0.14400987, -0.27260989, -0.14400987, -0.73863561, 0.14400987, -0.27260989, -0.14400987, -0.14400987, -0.14400987, 0.14400987, 0.27260989, 0.81811479, -0.81811479, 0.81811479, 0.73863561, 0.73863561, 0.81811479, 0.81811479, 0.27260989, 0.14400987, 0.14400987, -0.14400987, -0.27260989, 0.73863561, 0.81811479, 0.14400987, -0.14400987, 0.81811479, 0.81811479, 0.59594207, 0.70901078, 0.62479108, 0.25549728, 0.11148086, -0.52056034, -0.6358805 , -0.81811479, 0.93581575, -0.14400987, -0.00771354, 0.70901078, -0.91583793, -0.39176762, -0.80037009, -0.40260709, -0.37515215, 0.39176762, -0.93581575, 0.13645736, -0.13645736, -0.00771354, -0.6358805 , 0.40260709, -0.52056034, 0.00771354, 0.6358805 , -0.97532139, -0.40260709, 0.00771354, 0.93581575, -0.6358805 , -0.52056034, 0.13645736, 0.11901222, -0.87993814, -0.40260709, -0.48064722, 0.87993814, 0.40260709, 0.93581575, 0.80037009, 0.80037009, 0.80037009, 0.23869648, 0.91583793, 0.97532139, 0.87993814, 0.25549728, 0.80037009, 0.80037009, -0.73863561, -0.27260989, -0.40260709, -0.11148086, -0.80037009, 0.62479108, -0.40260709, 0.59594207, -0.93581575, -0.73863561, 0.76873073, 0.97532139, 0.70901078, 0.87993814, 0.62479108, -0.52056034, -0.87993814, 0.11901222, ... -0.11148086, 0.80037009, 0.37515215, -0.59594207, 0.11148086, 0.23869648, 0.37515215, 0.39176762, 0.52056034, -0.93581575, 0.62479108, 0.97532139, -0.37515215, 0.25549728, 0.93581575, -0.93581575, 0.93581575, 0.93581575, 0.87993814, 0.97532139, -0.93581575, -0.93581575, 0.93581575, 0.93581575, -0.62479108, -0.25549728, -0.23869648, -0.37515215, -0.39176762, -0.59594207, -0.70901078, 0.6358805 , -0.70901078, -0.59594207, -0.70901078, -0.62479108, 0.00771354, -0.25549728, -0.76873073, -0.11148086, -0.62479108, -0.59594207, 0.87993814, 0.34465054, -0.70901078, -0.59594207, -0.62479108, -0.25549728, -0.59594207, -0.39176762, -0.80037009, -0.37515215, 0.39176762, -0.25549728, -0.23869648, 0.70901078, 0.37515215, 0.11148086, 0.11148086, 0.59594207, 0.37515215, 0.70901078, 0.39176762, -0.70901078, -0.6358805 , -0.59594207, -0.25549728, 0.73863561, -0.34465054, -0.80037009, -0.11148086, 0.27260989, -0.23869648, -0.81811479, -0.11148086, 0.76873073, -0.97532139, 0.97532139, 0.99070929, 0.59594207, 0.59594207, 0.39176762, 0.23869648, 0.73863561, -0.11148086, -0.11148086, 0.14400987, -0.25549728, -0.14400987, -0.39176762, -0.70901078, -0.52056034, -0.52056034, -0.62479108, -0.39176762, 0.37515215, -0.6358805 , -0.40260709, 0.25549728, 0.11148086])
- indexToEdgeID(n_edge)int321 2 3 4 5 6 ... 476 477 478 479 480
array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480], dtype=int32)
- latVertex(n_face)float640.5968 0.4057 ... -0.9184 -0.9184
array([ 0.59675498, 0.40571383, 0.29557084, 0.40571383, 0.59675498, 0.40571383, 0.59675498, 0.59675498, 0.40571383, 0.29557084, 1.40271956, 1.40271956, 1.40271956, 1.40271956, 1.40271956, -0.59675498, -0.59675498, -0.40571383, -0.29557084, -0.40571383, -0.40571383, -0.29557084, -0.40571383, -0.59675498, -0.59675498, -0.29557084, -0.40571383, -0.59675498, -0.59675498, -0.40571383, 0.40571383, 0.29557084, 0.40571383, 0.59675498, 0.59675498, -0.40571383, -0.59675498, -0.59675498, -0.40571383, -0.29557084, -1.40271956, -1.40271956, -1.40271956, -1.40271956, -1.40271956, 0.59675498, 0.59675498, 0.40571383, 0.29557084, 0.40571383, -0.59675498, -0.59675498, -0.40571383, -0.29557084, -0.40571383, 0.59675498, 0.40571383, 0.29557084, 0.40571383, 0.59675498, 0.37440265, 0.44609959, 0.64886724, 0.73274607, 0.64886724, 0.44609959, -0.17266181, -0.09383058, 0.06503365, 0.17266181, 0.09383058, -0.06503365, -0.06503365, 0.09383058, 0.17266181, 0.06503365, -0.09383058, -0.17266181, 0.73274607, 0.64886724, 0.44609959, 0.37440265, 0.44609959, 0.64886724, 0.87065888, 0.87065888, 0.99183842, 1.14594437, 1.14594437, 0.99183842, -0.06503365, -0.17266181, -0.09383058, 0.06503365, 0.17266181, 0.09383058, 0.09383058, 0.17266181, 0.06503365, -0.09383058, ... -0.37440265, -0.44609959, 0.06503365, -0.09383058, -0.17266181, -0.06503365, 0.09383058, 0.17266181, -1.14594437, -0.99183842, -0.87065888, -0.87065888, -0.99183842, -1.14594437, 0.64886724, 0.73274607, 0.64886724, 0.44609959, 0.37440265, 0.44609959, 0.69699274, 0.35220388, 0.16215328, 0.35220388, 0.69699274, 0.69699274, 0.69699274, 0.35220388, 0.16215328, 0.35220388, 1.269302 , 1.269302 , 1.269302 , 1.269302 , 1.269302 , -0.69699274, -0.35220388, -0.16215328, -0.35220388, -0.69699274, -0.16215328, -0.35220388, -0.69699274, -0.69699274, -0.35220388, -0.35220388, -0.69699274, -0.69699274, -0.35220388, -0.16215328, 0.35220388, 0.16215328, 0.35220388, 0.69699274, 0.69699274, -0.35220388, -0.69699274, -0.69699274, -0.35220388, -0.16215328, -1.269302 , -1.269302 , -1.269302 , -1.269302 , -1.269302 , 0.35220388, 0.69699274, 0.69699274, 0.35220388, 0.16215328, -0.35220388, -0.16215328, -0.35220388, -0.69699274, -0.69699274, 0.35220388, 0.16215328, 0.35220388, 0.69699274, 0.69699274, 0.18871053, 0.91843819, -0.18871053, 0.18871053, 0.91843819, -0.18871053, 0.18871053, 0.91843819, 0.91843819, 0.91843819, 0.18871053, -0.18871053, -0.18871053, -0.91843819, -0.91843819, 0.18871053, -0.91843819, -0.18871053, -0.91843819, -0.91843819])
- lonVertex(n_face)float643.111 3.056 3.23 ... 4.486 3.23
array([3.11052423, 3.05564765, 3.22968038, 3.40371311, 3.34883653, 4.66035017, 4.60547359, 4.36716129, 4.31228471, 4.48631744, 5.11463597, 0.08808773, 1.34472479, 2.60136185, 3.85799891, 6.25211688, 0.20724388, 0.26212046, 0.08808773, 6.1972403 , 1.51875752, 1.34472479, 1.17069206, 1.22556864, 1.46388094, 5.11463597, 4.94060324, 4.99547982, 5.23379212, 5.2886687 , 5.56892177, 5.7429545 , 5.91698723, 5.86211065, 5.62379835, 2.42732912, 2.4822057 , 2.720518 , 2.77539458, 2.60136185, 4.48631744, 3.22968038, 1.97304332, 0.71640626, 5.7429545 , 0.83556241, 0.59725011, 0.54237353, 0.71640626, 0.89043899, 3.73884276, 3.97715506, 4.03203164, 3.85799891, 3.68396618, 1.85388717, 1.79901059, 1.97304332, 2.14707605, 2.09219947, 2.60136185, 2.75626253, 2.77694753, 2.60136185, 2.42577617, 2.44646117, 2.92896542, 3.06838395, 3.07613904, 2.90207681, 2.76265828, 2.75490319, 3.70445757, 3.69670248, 3.55728395, 3.38322172, 3.39097681, 3.53039534, 3.85799891, 3.68241323, 3.70309823, 3.85799891, 4.01289959, 4.03358459, 3.0713513 , 3.38800946, 3.56144631, 3.47871129, 2.98064947, 2.89791445, 4.01154025, 4.18560248, 4.32502101, 4.3327761 , 4.15871387, 4.01929534, 4.95333954, 4.81392101, 4.63985878, 4.64761387, ... 3.22968038, 3.0747797 , 2.12658466, 2.13433975, 2.27375828, 2.44782051, 2.44006542, 2.30064689, 4.10702982, 4.18976485, 4.01632799, 3.69966983, 3.52623298, 3.608968 , 1.52031047, 1.34472479, 1.1691391 , 1.18982411, 1.34472479, 1.49962546, 3.00003714, 2.92406128, 3.22968038, 3.53529948, 3.45932362, 4.71596068, 4.25667421, 4.18069834, 4.48631744, 4.79193654, 5.11463597, 0.08808773, 1.34472479, 2.60136185, 3.85799891, 0.31773096, 0.39370683, 0.08808773, 6.06565393, 6.1416298 , 1.34472479, 1.03910569, 1.11508155, 1.57436802, 1.65034389, 4.80901687, 4.88499274, 5.34427921, 5.42025507, 5.11463597, 5.4373354 , 5.7429545 , 6.0485736 , 5.97259774, 5.51331127, 2.29574275, 2.37171861, 2.83100509, 2.90698095, 2.60136185, 1.97304332, 0.71640626, 5.7429545 , 4.48631744, 3.22968038, 1.02202536, 0.94604949, 0.48676302, 0.41078716, 0.71640626, 4.16361801, 3.85799891, 3.55237981, 3.62835567, 4.08764215, 1.66742422, 1.97304332, 2.27866242, 2.20268655, 1.74340008, 2.60136185, 2.60136185, 3.22968038, 3.85799891, 3.85799891, 4.48631744, 5.11463597, 5.11463597, 0.08808773, 1.34472479, 0.08808773, 0.71640626, 5.7429545 , 5.7429545 , 0.71640626, 1.34472479, 1.97304332, 1.97304332, 4.48631744, 3.22968038])
- xVertex(n_face)float64-0.8268 -0.9154 ... -0.1361 -0.6047
array([-0.82676436, -0.91542953, -0.95292694, -0.88743644, -0.80946368, -0.04779277, -0.08826812, -0.27992119, -0.35789395, -0.21443069, 0.0654905 , 0.16663793, 0.0374974 , -0.14346326, -0.12616257, 0.82676436, 0.80946368, 0.88743644, 0.95292694, 0.91542953, 0.04779277, 0.21443069, 0.35789395, 0.27992119, 0.08826812, 0.37451054, 0.20787261, 0.23104729, 0.41200795, 0.50067311, 0.69423891, 0.82040148, 0.85789888, 0.75491098, 0.65376355, -0.69423891, -0.65376355, -0.75491098, -0.85789888, -0.82040148, -0.0374974 , -0.16663793, -0.0654905 , 0.12616257, 0.14346326, 0.55482877, 0.68396929, 0.78695719, 0.72146669, 0.57800344, -0.68396929, -0.55482877, -0.57800344, -0.72146669, -0.78695719, -0.23104729, -0.20787261, -0.37451054, -0.50067311, -0.41200795, -0.79818152, -0.83598707, -0.74438157, -0.63748123, -0.60120804, -0.69281354, -0.96294566, -0.99293436, -0.99574926, -0.95700836, -0.92497257, -0.92420476, -0.84394201, -0.84610422, -0.90123461, -0.96889692, -0.96480182, -0.91160432, -0.56060537, -0.68305916, -0.76361767, -0.70192631, -0.58082009, -0.50026158, -0.64273396, -0.62485955, -0.49963105, -0.38898464, -0.40685905, -0.5309875 , -0.64350339, -0.49528257, -0.37609103, -0.36977759, -0.51799841, -0.63610957, 0.23757615, 0.09985058, -0.07231343, -0.06444508, ... -0.92711762, -0.90012399, -0.5264978 , -0.53183524, -0.63686774, -0.76721414, -0.76049732, -0.6568442 , -0.23455746, -0.27311402, -0.41313977, -0.54656287, -0.50717346, -0.36798057, 0.04020847, 0.1666203 , 0.31149216, 0.33543535, 0.208623 , 0.06415166, -0.75910656, -0.91649458, -0.98305558, -0.86680452, -0.72839641, 0.00273869, -0.3374614 , -0.47586951, -0.22121034, 0.0745858 , 0.11625106, 0.29579614, 0.066561 , -0.25465917, -0.22394903, 0.72839641, 0.86680452, 0.98305558, 0.91649458, 0.75910656, 0.22121034, 0.47586951, 0.3374614 , -0.00273869, -0.0745858 , 0.09055529, 0.13169225, 0.45291242, 0.61030045, 0.38635142, 0.62239105, 0.84634008, 0.91290108, 0.73008901, 0.55054394, -0.62239105, -0.55054394, -0.73008901, -0.91290108, -0.84634008, -0.11625106, 0.22394903, 0.25465917, -0.066561 , -0.29579614, 0.4896181 , 0.44848114, 0.67771627, 0.86052834, 0.74427727, -0.4896181 , -0.74427727, -0.86052834, -0.67771627, -0.44848114, -0.09055529, -0.38635142, -0.61030045, -0.45291242, -0.13169225, -0.84236515, -0.5206103 , -0.97843856, -0.7407817 , -0.45782827, -0.2201714 , 0.38453688, 0.23765686, 0.60470829, 0.13607341, 0.97843856, 0.7407817 , 0.84236515, 0.5206103 , 0.45782827, 0.2201714 , -0.23765686, -0.38453688, -0.13607341, -0.60470829])
- yVertex(n_face)float640.02569 0.07887 ... -0.05341
array([ 0.02569453, 0.07887088, -0.08415896, -0.23809329, -0.1702001 , -0.91757708, -0.82244043, -0.77835959, -0.84625278, -0.93229392, -0.15393433, 0.01471684, 0.16302984, 0.08604114, -0.10985349, -0.02569453, 0.1702001 , 0.23809329, 0.08415896, -0.07887088, 0.91757708, 0.93229392, 0.84625278, 0.77835959, 0.82244043, -0.88028083, -0.89499767, -0.79423968, -0.71725099, -0.77042734, -0.60188386, -0.49203037, -0.32900053, -0.33809604, -0.50674722, 0.60188386, 0.50674722, 0.33809604, 0.32900053, 0.49203037, -0.16302984, -0.01471684, 0.15393433, 0.10985349, -0.08604114, 0.61348558, 0.46517259, 0.47426809, 0.62820243, 0.71424357, -0.46517259, -0.61348558, -0.71424357, -0.62820243, -0.47426809, 0.79423968, 0.89499767, 0.88028083, 0.77042734, 0.71725099, 0.4787041 , 0.33908172, 0.28414192, 0.38232516, 0.52286657, 0.57780636, 0.2078909 , 0.07282158, 0.06526862, 0.2337049 , 0.36830337, 0.37632717, -0.5324833 , -0.52471828, -0.39781799, -0.23877885, -0.24572155, -0.37344417, -0.4881357 , -0.41020817, -0.48035285, -0.61118803, -0.69028894, -0.62014426, 0.0452209 , -0.15717003, -0.22303382, -0.13633844, 0.06605249, 0.13201343, -0.76267947, -0.85157393, -0.92183359, -0.92684471, -0.83795025, -0.76588919, -0.9668398 , -0.98005757, -0.99526245, -0.99351319, ... -0.08187957, 0.06022959, 0.84768901, 0.84164892, 0.75158663, 0.63809016, 0.64254607, 0.73419253, -0.33893955, -0.47411392, -0.49443646, -0.34120507, -0.20530552, -0.18570816, 0.79575362, 0.72442565, 0.73335748, 0.83745682, 0.90704344, 0.89985297, 0.10817925, 0.20257168, -0.08681981, -0.36006601, -0.23954997, -0.76677116, -0.68852401, -0.80904006, -0.96177021, -0.9356466 , -0.2732462 , 0.02612361, 0.28939148, 0.15273016, -0.19499905, 0.23954997, 0.36006601, 0.08681981, -0.20257168, -0.10817925, 0.96177021, 0.80904006, 0.68852401, 0.76677116, 0.9356466 , -0.93423624, -0.75538246, -0.61872114, -0.71311357, -0.90811262, -0.70258593, -0.50758688, -0.21819539, -0.23434067, -0.53371049, 0.70258593, 0.53371049, 0.23434067, 0.21819539, 0.50758688, 0.2732462 , 0.19499905, -0.15273016, -0.28939148, -0.02612361, 0.80079443, 0.62194066, 0.35867279, 0.37481807, 0.64806427, -0.80079443, -0.64806427, -0.37481807, -0.35867279, -0.62194066, 0.93423624, 0.90811262, 0.71311357, 0.61872114, 0.75538246, 0.50520294, 0.31223259, -0.08641205, -0.64502057, -0.39864464, -0.95725316, -0.90384758, -0.55860853, 0.05340558, 0.59161499, 0.08641205, 0.64502057, -0.50520294, -0.31223259, 0.39864464, 0.95725316, 0.55860853, 0.90384758, -0.59161499, -0.05340558])
- zVertex(n_face)float640.562 0.3947 ... -0.7947 -0.7947
array([ 0.56196128, 0.39467474, 0.29128598, 0.39467474, 0.56196128, 0.39467474, 0.56196128, 0.56196128, 0.39467474, 0.29128598, 0.98590832, 0.98590832, 0.98590832, 0.98590832, 0.98590832, -0.56196128, -0.56196128, -0.39467474, -0.29128598, -0.39467474, -0.39467474, -0.29128598, -0.39467474, -0.56196128, -0.56196128, -0.29128598, -0.39467474, -0.56196128, -0.56196128, -0.39467474, 0.39467474, 0.29128598, 0.39467474, 0.56196128, 0.56196128, -0.39467474, -0.56196128, -0.56196128, -0.39467474, -0.29128598, -0.98590832, -0.98590832, -0.98590832, -0.98590832, -0.98590832, 0.56196128, 0.56196128, 0.39467474, 0.29128598, 0.39467474, -0.56196128, -0.56196128, -0.39467474, -0.29128598, -0.39467474, 0.56196128, 0.39467474, 0.29128598, 0.39467474, 0.56196128, 0.36571663, 0.43145012, 0.60428424, 0.66891342, 0.60428424, 0.43145012, -0.17180519, -0.09369296, 0.06498782, 0.17180519, 0.09369296, -0.06498782, -0.06498782, 0.09369296, 0.17180519, 0.06498782, -0.09369296, -0.17180519, 0.66891342, 0.60428424, 0.43145012, 0.36571663, 0.43145012, 0.60428424, 0.76475364, 0.76475364, 0.83703329, 0.91109977, 0.91109977, 0.83703329, -0.06498782, -0.17180519, -0.09369296, 0.06498782, 0.17180519, 0.09369296, 0.09369296, 0.17180519, 0.06498782, -0.09369296, ... -0.36571663, -0.43145012, 0.06498782, -0.09369296, -0.17180519, -0.06498782, 0.09369296, 0.17180519, -0.91109977, -0.83703329, -0.76475364, -0.76475364, -0.83703329, -0.91109977, 0.60428424, 0.66891342, 0.60428424, 0.43145012, 0.36571663, 0.43145012, 0.6419147 , 0.34496724, 0.16144361, 0.34496724, 0.6419147 , 0.6419147 , 0.6419147 , 0.34496724, 0.16144361, 0.34496724, 0.95489382, 0.95489382, 0.95489382, 0.95489382, 0.95489382, -0.6419147 , -0.34496724, -0.16144361, -0.34496724, -0.6419147 , -0.16144361, -0.34496724, -0.6419147 , -0.6419147 , -0.34496724, -0.34496724, -0.6419147 , -0.6419147 , -0.34496724, -0.16144361, 0.34496724, 0.16144361, 0.34496724, 0.6419147 , 0.6419147 , -0.34496724, -0.6419147 , -0.6419147 , -0.34496724, -0.16144361, -0.95489382, -0.95489382, -0.95489382, -0.95489382, -0.95489382, 0.34496724, 0.6419147 , 0.6419147 , 0.34496724, 0.16144361, -0.34496724, -0.16144361, -0.34496724, -0.6419147 , -0.6419147 , 0.34496724, 0.16144361, 0.34496724, 0.6419147 , 0.6419147 , 0.18759247, 0.79465447, -0.18759247, 0.18759247, 0.79465447, -0.18759247, 0.18759247, 0.79465447, 0.79465447, 0.79465447, 0.18759247, -0.18759247, -0.18759247, -0.79465447, -0.79465447, 0.18759247, -0.79465447, -0.18759247, -0.79465447, -0.79465447])
- indexToVertexID(n_face)int321 2 3 4 5 6 ... 316 317 318 319 320
array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320], dtype=int32)
- cellsOnCell(n_node, n_max_face_nodes)int3245 46 47 43 44 ... 160 41 96 95 39
array([[ 45, 46, 47, 43, 44, 0], [ 49, 50, 51, 52, 48, 0], [ 55, 56, 57, 53, 54, 0], [ 58, 59, 60, 61, 62, 0], [ 65, 66, 67, 63, 64, 0], [ 71, 72, 68, 69, 70, 0], [ 77, 73, 74, 75, 76, 0], [ 79, 80, 81, 82, 78, 0], [ 87, 83, 84, 85, 86, 0], [ 89, 90, 91, 92, 88, 0], [ 97, 93, 94, 95, 96, 0], [102, 98, 99, 100, 101, 0], [106, 100, 103, 104, 43, 105], [104, 109, 81, 107, 108, 44], [110, 111, 45, 108, 112, 94], [114, 46, 111, 115, 49, 113], [117, 56, 116, 105, 47, 114], [ 93, 118, 119, 50, 115, 110], [120, 72, 121, 122, 51, 119], [123, 77, 124, 125, 52, 122], ... [ 31, 147, 144, 28, 84, 83], [ 29, 58, 62, 28, 143, 147], [ 35, 85, 84, 28, 141, 140], [136, 135, 29, 64, 63, 30], [ 31, 65, 64, 29, 144, 143], [149, 30, 63, 67, 33, 156], [148, 156, 42, 88, 92, 30], [152, 151, 31, 83, 87, 38], [152, 32, 66, 65, 31, 150], [151, 150, 38, 79, 78, 32], [154, 32, 78, 82, 40, 155], [155, 33, 67, 66, 32, 153], [154, 153, 40, 99, 98, 33], [102, 42, 149, 148, 33, 98], [159, 158, 34, 97, 96, 41], [159, 35, 69, 68, 34, 157], [157, 41, 86, 85, 35, 158], [161, 38, 87, 86, 41, 162], [160, 162, 39, 80, 79, 38], [161, 160, 41, 96, 95, 39]], dtype=int32)
- edgesOnCell(n_node, n_max_face_nodes)int32186 216 187 225 ... 360 471 116 348
array([[186, 216, 187, 225, 424, 0], [181, 228, 211, 361, 277, 0], [174, 189, 459, 235, 279, 0], [ 69, 291, 217, 133, 141, 0], [190, 334, 449, 251, 298, 0], [163, 178, 169, 355, 164, 0], [152, 158, 306, 156, 157, 0], [139, 236, 173, 176, 208, 0], [128, 226, 201, 249, 207, 0], [137, 254, 196, 262, 271, 0], [170, 265, 274, 318, 229, 0], [212, 239, 223, 245, 263, 0], [ 58, 144, 154, 288, 257, 412], [192, 417, 248, 292, 301, 299], [134, 315, 264, 213, 300, 179], [175, 308, 311, 296, 389, 316], [199, 319, 234, 227, 267, 382], [168, 290, 246, 206, 326, 282], [124, 285, 305, 314, 362, 261], [ 55, 117, 113, 153, 177, 253], ... [150, 454, 268, 231, 172, 240], [ 54, 405, 413, 309, 268, 258], [ 67, 401, 402, 256, 108, 114], [ 11, 84, 478, 232, 119, 52], [ 46, 188, 284, 477, 258, 454], [ 7, 303, 349, 420, 57, 467], [ 7, 357, 71, 287, 205, 51], [ 39, 372, 111, 50, 396, 278], [ 6, 320, 416, 415, 431, 372], [ 6, 39, 344, 444, 102, 63], [ 4, 47, 123, 214, 352, 5], [ 3, 241, 418, 182, 68, 4], [ 3, 5, 185, 36, 480, 42], [147, 367, 357, 467, 358, 479], [ 2, 92, 218, 474, 356, 450], [ 15, 87, 130, 421, 38, 92], [ 2, 200, 390, 162, 247, 15], [ 1, 341, 183, 91, 99, 135], [ 1, 83, 165, 332, 350, 343], [ 83, 135, 360, 471, 116, 348]], dtype=int32)
- verticesOnCell(n_node, n_max_face_nodes)int324 5 1 2 3 0 ... 233 232 294 219 218
array([[ 4, 5, 1, 2, 3, 0], [ 9, 10, 6, 7, 8, 0], [ 14, 15, 11, 12, 13, 0], [ 18, 19, 20, 16, 17, 0], [ 25, 21, 22, 23, 24, 0], [ 26, 27, 28, 29, 30, 0], [ 31, 32, 33, 34, 35, 0], [ 38, 39, 40, 36, 37, 0], [ 43, 44, 45, 41, 42, 0], [ 47, 48, 49, 50, 46, 0], [ 53, 54, 55, 51, 52, 0], [ 57, 58, 59, 60, 56, 0], [ 65, 66, 61, 62, 63, 64], [ 71, 72, 67, 68, 69, 70], [ 74, 75, 76, 77, 78, 73], [ 80, 81, 82, 83, 84, 79], [ 88, 89, 90, 85, 86, 87], [ 92, 93, 94, 95, 96, 91], [101, 102, 97, 98, 99, 100], [104, 105, 106, 107, 108, 103], ... [170, 315, 155, 154, 282, 171], [157, 256, 156, 155, 315, 158], [195, 283, 153, 152, 314, 196], [312, 161, 160, 262, 165, 164], [169, 263, 159, 158, 315, 170], [167, 166, 261, 186, 185, 316], [316, 239, 238, 286, 168, 167], [317, 173, 172, 281, 216, 215], [179, 178, 264, 174, 173, 317], [317, 215, 214, 277, 180, 179], [176, 175, 276, 225, 224, 318], [182, 181, 265, 177, 176, 318], [318, 224, 223, 297, 183, 182], [240, 239, 316, 185, 184, 296], [319, 187, 192, 295, 231, 230], [193, 198, 267, 188, 187, 319], [230, 229, 284, 194, 193, 319], [212, 211, 285, 234, 233, 320], [320, 218, 217, 278, 213, 212], [320, 233, 232, 294, 219, 218]], dtype=int32)
- nEdgesOnCell(n_node)int325 5 5 5 5 5 5 5 ... 6 6 6 6 6 6 6 6
array([5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6], dtype=int32)
- edgesOnEdge(n_edge, maxEdges2)int32341 183 91 99 135 ... 5 185 36 0 0
array([[341, 183, 91, ..., 343, 0, 0], [ 92, 218, 474, ..., 15, 0, 0], [241, 418, 182, ..., 42, 0, 0], ..., [ 89, 473, 54, ..., 84, 0, 0], [166, 480, 76, ..., 358, 0, 0], [ 76, 239, 476, ..., 36, 0, 0]], dtype=int32)
- cellsOnEdge(n_edge, TWO)int32160 161 157 159 ... 98 156 98 155
array([[160, 161], [157, 159], [154, 155], [153, 154], [153, 155], [151, 152], [148, 149], [138, 142], [137, 138], [137, 142], [136, 146], [133, 134], [133, 139], [130, 131], [158, 159], [129, 130], [129, 131], [128, 132], [125, 126], [124, 126], ... [ 89, 90], [ 90, 133], [ 91, 92], [105, 106], [ 93, 110], [ 94, 110], [148, 156], [ 94, 112], [135, 136], [ 95, 112], [ 96, 162], [ 32, 66], [ 29, 58], [ 97, 157], [ 97, 118], [ 98, 102], [ 29, 147], [ 29, 146], [ 98, 156], [ 98, 155]], dtype=int32)
- verticesOnEdge(n_edge, TWO)int32320 212 230 319 ... 296 184 183 297
array([[320, 212], [230, 319], [318, 182], [318, 176], [224, 318], [317, 179], [316, 167], [313, 146], [313, 142], [201, 313], [312, 164], [311, 136], [208, 311], [310, 122], [319, 193], [310, 115], [236, 310], [309, 205], [308, 111], [129, 308], ... [288, 47], [209, 289], [290, 49], [302, 64], [ 91, 292], [292, 73], [185, 316], [ 78, 293], [312, 133], [293, 220], [294, 232], [177, 178], [162, 157], [295, 192], [191, 291], [ 57, 296], [158, 159], [160, 161], [296, 184], [183, 297]], dtype=int32)
- nEdgesOnEdge(n_edge)int3210 10 10 10 10 ... 10 10 10 10 10
array([10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 9, 10, 10, 10, 9, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 9, 9, 9, 10, 10, 10, 10, 9, 9, 10, 10, 10, 10, 9, 9, 10, 10, 9, 9, 10, 9, 10, 9, 10, 10, 9, 10, 10, 10, 10, 9, 9, 10, 9, 9, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 9, 9, 10, 10, 9, 9, 10, 10, 10, 9, 9, 10, 10, 10, 10, 10, 9, 10, 9, 9, 10, 9, 9, 10, 10, 10, 10, 10, 9, 9, 10, 10, 9, 10, 10, 10, 10, 10, 9, 10, 10, 10, 9, 10, 9, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 9, 9, 10, 9, 10, 10, 10, 10, 10, 9, 10, 10, 9, 10, 10, 9, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10], dtype=int32)
- cellsOnVertex(n_face, vertexDegree)int3247 43 1 43 44 ... 157 160 162 161
array([[ 47, 43, 1], [ 43, 44, 1], [ 1, 44, 45], [ 45, 46, 1], [ 47, 1, 46], [ 51, 52, 2], [ 48, 2, 52], [ 2, 48, 49], [ 49, 50, 2], [ 2, 50, 51], [ 3, 57, 53], [ 53, 54, 3], [ 55, 3, 54], [ 56, 3, 55], [ 56, 57, 3], [ 61, 62, 4], [ 4, 62, 58], [ 58, 59, 4], [ 4, 59, 60], [ 4, 60, 61], ... [109, 104, 103], [106, 105, 116], [108, 107, 112], [115, 111, 110], [113, 117, 114], [119, 118, 120], [122, 121, 123], [125, 124, 126], [128, 127, 132], [130, 129, 131], [133, 139, 134], [136, 135, 146], [138, 137, 142], [141, 140, 145], [144, 143, 147], [148, 156, 149], [151, 150, 152], [154, 153, 155], [159, 158, 157], [160, 162, 161]], dtype=int32)
- edgesOnVertex(n_face, vertexDegree)int32187 373 225 225 329 ... 92 1 135 83
array([[187, 373, 225], [225, 329, 424], [186, 424, 376], [186, 377, 216], [ 90, 187, 216], [211, 387, 361], [103, 277, 361], [181, 277, 345], [181, 383, 228], [211, 228, 386], [235, 459, 392], [235, 458, 279], [ 94, 174, 279], [ 78, 189, 174], [189, 400, 459], [133, 410, 141], [ 69, 141, 140], [ 69, 197, 291], [217, 291, 407], [133, 217, 408], ... [106, 276, 452], [ 30, 464, 31], [ 29, 364, 293], [ 28, 252, 118], [ 26, 27, 146], [ 24, 41, 25], [ 21, 22, 23], [ 19, 448, 20], [ 18, 210, 324], [ 14, 16, 17], [ 12, 13, 180], [ 11, 469, 84], [ 8, 9, 10], [108, 151, 114], [258, 268, 454], [ 7, 467, 357], [ 6, 372, 39], [ 3, 4, 5], [ 2, 15, 92], [ 1, 135, 83]], dtype=int32)
- boundaryVertex(n_face)int320 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=int32)
- areaCell(n_node)float640.06734 0.06734 ... 0.08026 0.08026
array([0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.06733674, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.07879556, 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.0763125 , 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026189, 0.08026188, 0.08026188, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026188, 0.08026188, 0.08026189, 0.08026189, 0.08026188, 0.08026188, 0.08026189, 0.08026189])
- angleEdge(n_edge)float641.977 -1.164 1.035 ... 3.024 -1.004
array([ 1.97716810e+00, -1.16442455e+00, 1.03450323e+00, 3.14142349e+00, 2.10708942e+00, -1.69154763e-04, 2.10708942e+00, -3.14142350e+00, -1.03450323e+00, -2.10708942e+00, -1.03450323e+00, -2.10708942e+00, -3.14142350e+00, -1.16442455e+00, -1.97716810e+00, 1.16442455e+00, -1.69161759e-04, -3.14142349e+00, 1.16442455e+00, 1.97716810e+00, 1.69158804e-04, 2.10708942e+00, 1.03450323e+00, -1.03450323e+00, 1.69161109e-04, 3.14142350e+00, 1.97716810e+00, 1.03450323e+00, -1.03450323e+00, 1.16442455e+00, 1.97716810e+00, -2.42083906e+00, 2.81638955e-01, 1.30135073e+00, 1.17517154e-01, -2.13790869e+00, 8.65689119e-02, -1.01530114e+00, 1.16442455e+00, -2.32174039e+00, 1.03450323e+00, -4.87208132e-02, 2.81638955e-01, -1.57079633e+00, 1.02468716e+00, 2.43700948e+00, 1.10316415e+00, 1.98348237e+00, -1.02468716e+00, 8.19852260e-01, 1.05223771e+00, -2.08935494e+00, -3.09287184e+00, -2.12629151e+00, -1.10316415e+00, 8.65689119e-02, 3.09287184e+00, 2.12629151e+00, -3.14140884e+00, 2.03842850e+00, 4.87208131e-02, -8.19852260e-01, -1.01530114e+00, 8.65689119e-02, 2.08935494e+00, 1.01360101e+00, -2.50062314e-01, 2.03842850e+00, -2.46086592e-01, 2.50062314e-01, -2.03842850e+00, -2.32174039e+00, -7.04583174e-01, -2.43700948e+00, -7.04583174e-01, -1.83807676e-04, 1.57079633e+00, -1.83810485e-04, 2.50062314e-01, 1.17517154e-01, ... 8.19852260e-01, 2.32174039e+00, -2.32174039e+00, -8.19852260e-01, -1.30135073e+00, -1.17517154e-01, -3.14140886e+00, -1.98348237e+00, 2.11690549e+00, -7.20753596e-01, -2.85995370e+00, 1.01530114e+00, -2.81638955e-01, -7.20753596e-01, -2.81638955e-01, -1.30135073e+00, 3.09287184e+00, -1.17517154e-01, 1.57079633e+00, 2.13790869e+00, -1.84024192e+00, -7.20753596e-01, 2.89153034e+00, -2.16418223e+00, -2.81638955e-01, 7.20753596e-01, -1.30135073e+00, -1.17517154e-01, -7.20753596e-01, 1.02468716e+00, 7.04583174e-01, 1.98348237e+00, -1.02468716e+00, -1.17517154e-01, -3.14140885e+00, 2.81638955e-01, 1.98348237e+00, -1.00368396e+00, -2.13790869e+00, 2.42083906e+00, 1.15811029e+00, 2.81638955e-01, -2.11690549e+00, -2.85995370e+00, -2.12629151e+00, 7.20753596e-01, -1.17517154e-01, -3.14142350e+00, 9.77410420e-01, 7.04583174e-01, 2.13790869e+00, -1.69156766e-04, 3.14140885e+00, 1.16442455e+00, 1.00368396e+00, -1.57079633e+00, 3.14140883e+00, 1.83826465e-04, -1.57079633e+00, 2.42083906e+00, -2.42083906e+00, -2.11690549e+00, 1.83807802e-04, 3.14142349e+00, 2.13790869e+00, 1.00368396e+00, 1.03450323e+00, -3.02407550e+00, 1.03450323e+00, 2.11690549e+00, -2.85995370e+00, 3.05502374e+00, 3.05502374e+00, -1.30135073e+00, 1.02468716e+00, 1.98348237e+00, -1.01530114e+00, 1.10316415e+00, 3.02407550e+00, -1.00368396e+00])
- dcEdge(n_edge)float640.3001 0.3001 ... 0.3007 0.3007
array([0.30008442, 0.30008442, 0.3000844 , 0.30008439, 0.3000844 , 0.30008441, 0.3000844 , 0.30008439, 0.3000844 , 0.3000844 , 0.3000844 , 0.3000844 , 0.30008439, 0.30008442, 0.30008442, 0.30008442, 0.30008441, 0.30008441, 0.30008442, 0.30008442, 0.30008439, 0.3000844 , 0.3000844 , 0.3000844 , 0.30008439, 0.30008441, 0.30008442, 0.3000844 , 0.3000844 , 0.30008442, 0.30008442, 0.31811637, 0.30068562, 0.30068563, 0.30068561, 0.30068562, 0.28073551, 0.31451634, 0.30008442, 0.30068563, 0.3000844 , 0.31451634, 0.30068562, 0.2807355 , 0.30068563, 0.31451635, 0.31451633, 0.31811636, 0.30068563, 0.30068563, 0.31451633, 0.31451633, 0.31451634, 0.31451634, 0.31451633, 0.28073551, 0.31451634, 0.31451634, 0.31811637, 0.31451633, 0.31451634, 0.30068563, 0.31451634, 0.28073551, 0.31451633, 0.28073551, 0.31451635, 0.31451633, 0.27283885, 0.31451635, 0.31451633, 0.30068563, 0.31451635, 0.31451635, 0.31451635, 0.31811636, 0.2807355 , 0.31811637, 0.31451635, 0.30068561, 0.31451635, 0.31451635, 0.30008441, 0.30008439, 0.31451633, 0.30068562, 0.31451635, 0.30068563, 0.31451633, 0.31811637, 0.30068563, 0.30008441, 0.2807355 , 0.31811637, 0.30068562, 0.31451635, 0.30068563, 0.28073551, 0.31451635, 0.28073551, ... 0.30068562, 0.31451635, 0.31811636, 0.31811637, 0.30068562, 0.31811636, 0.31811636, 0.30068563, 0.28073551, 0.30068563, 0.30068563, 0.31811637, 0.31811636, 0.30068561, 0.30068563, 0.30068563, 0.30068563, 0.30068563, 0.31451635, 0.31811637, 0.30068563, 0.30068563, 0.30068563, 0.30068563, 0.30068563, 0.30068561, 0.31811636, 0.31811636, 0.30068563, 0.31811637, 0.30068562, 0.31451634, 0.30068562, 0.31811637, 0.30068562, 0.30068563, 0.31451634, 0.30068561, 0.2807355 , 0.30068562, 0.30068563, 0.31811637, 0.31451635, 0.27283885, 0.30068562, 0.31811637, 0.30068563, 0.30068561, 0.31811637, 0.30068563, 0.31451635, 0.31811636, 0.30068563, 0.30068561, 0.31811636, 0.30068562, 0.31811636, 0.30068562, 0.30068562, 0.31811637, 0.31811636, 0.30068562, 0.30068563, 0.30068562, 0.31451634, 0.31811637, 0.30068561, 0.30008441, 0.27283885, 0.31451635, 0.30068562, 0.30008439, 0.31811636, 0.30008442, 0.30068562, 0.2807355 , 0.31811637, 0.31811637, 0.27283885, 0.31811637, 0.31811637, 0.30068563, 0.31811636, 0.30008441, 0.30068562, 0.30068562, 0.3000844 , 0.30068561, 0.3000844 , 0.30068563, 0.30068562, 0.28073551, 0.28073551, 0.30068563, 0.30068563, 0.31811636, 0.31451634, 0.31451633, 0.30068561, 0.30068562])
- dvEdge(n_edge)float640.1857 0.1857 ... 0.1808 0.1808
array([0.18569212, 0.18569212, 0.18569211, 0.18569212, 0.18569211, 0.18569212, 0.18569211, 0.18569212, 0.18569211, 0.18569211, 0.18569211, 0.18569211, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569212, 0.18569211, 0.18569211, 0.18569211, 0.18569212, 0.18569212, 0.18569212, 0.18569211, 0.18569211, 0.18569212, 0.18569212, 0.13341756, 0.18078901, 0.18078901, 0.18078901, 0.18078902, 0.20352982, 0.15905298, 0.18569212, 0.18078901, 0.18569211, 0.15905297, 0.18078901, 0.20352981, 0.18078901, 0.15905297, 0.15905298, 0.13341755, 0.18078901, 0.18078901, 0.15905297, 0.15905297, 0.15905297, 0.15905298, 0.15905298, 0.20352982, 0.15905297, 0.15905298, 0.13341756, 0.15905298, 0.15905297, 0.18078901, 0.15905298, 0.20352982, 0.15905297, 0.20352981, 0.15905298, 0.15905298, 0.19697539, 0.15905298, 0.15905298, 0.18078901, 0.15905297, 0.15905297, 0.15905297, 0.13341756, 0.20352981, 0.13341756, 0.15905298, 0.18078901, 0.15905297, 0.15905297, 0.18569212, 0.18569212, 0.15905298, 0.18078902, 0.15905297, 0.18078901, 0.15905298, 0.13341756, 0.18078901, 0.18569212, 0.20352982, 0.13341756, 0.18078901, 0.15905298, 0.18078901, 0.20352982, 0.15905298, 0.20352981, ... 0.18078902, 0.15905297, 0.13341755, 0.13341756, 0.18078902, 0.13341756, 0.13341755, 0.18078901, 0.20352982, 0.18078901, 0.18078901, 0.13341756, 0.13341755, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.15905298, 0.13341756, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.18078901, 0.13341756, 0.13341755, 0.18078901, 0.13341756, 0.18078901, 0.15905298, 0.18078901, 0.13341756, 0.18078901, 0.18078901, 0.15905297, 0.18078901, 0.20352982, 0.18078902, 0.18078901, 0.13341756, 0.15905298, 0.1969754 , 0.18078901, 0.13341756, 0.18078901, 0.18078901, 0.13341756, 0.18078901, 0.15905297, 0.13341755, 0.18078901, 0.18078901, 0.13341756, 0.18078901, 0.13341755, 0.18078902, 0.18078902, 0.13341756, 0.13341755, 0.18078901, 0.18078901, 0.18078901, 0.15905298, 0.13341756, 0.18078901, 0.18569212, 0.1969754 , 0.15905297, 0.18078902, 0.18569212, 0.13341756, 0.18569212, 0.18078902, 0.20352982, 0.13341756, 0.13341756, 0.1969754 , 0.13341756, 0.13341756, 0.18078901, 0.13341756, 0.18569212, 0.18078902, 0.18078902, 0.18569211, 0.18078901, 0.18569211, 0.18078901, 0.18078901, 0.20352982, 0.20352982, 0.18078901, 0.18078901, 0.13341755, 0.15905298, 0.15905298, 0.18078901, 0.18078902])
- weightsOnEdge(n_edge, maxEdges2)float64-0.1713 -0.1028 0.00413 ... 0.0 0.0
array([[-1.71295267e-01, -1.02804152e-01, 4.12950692e-03, ..., -1.71295264e-01, 0.00000000e+00, 0.00000000e+00], [ 2.08049050e-01, -8.44841545e-02, -4.12951126e-03, ..., -2.08049046e-01, 0.00000000e+00, 0.00000000e+00], [-1.71295270e-01, -1.02804153e-01, 4.12951063e-03, ..., -1.71295286e-01, 0.00000000e+00, 0.00000000e+00], ..., [ 1.65600631e-01, 1.05954228e-01, 2.18559233e-08, ..., -1.90808310e-01, 0.00000000e+00, 0.00000000e+00], [-2.17260052e-01, 8.53423319e-02, -1.50022595e-02, ..., -1.83794359e-01, 0.00000000e+00, 0.00000000e+00], [ 1.43872909e-01, -1.17280289e-01, 1.50022599e-02, ..., -1.93908129e-01, 0.00000000e+00, 0.00000000e+00]])
- areaTriangle(n_face)float640.03563 0.03563 ... 0.03944 0.03944
array([0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.03563141, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.04197859, 0.03880683, 0.03880683, 0.04197859, ... 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.03880683, 0.04197859, 0.03880683, 0.04107007, 0.04107007, 0.04107006, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107006, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107006, 0.04107007, 0.04107007, 0.04107006, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107006, 0.04107007, 0.04107006, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107006, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107006, 0.04107007, 0.04107006, 0.04107007, 0.04107007, 0.04107007, 0.04107007, 0.04107006, 0.04107007, 0.04107007, 0.04107007, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734, 0.03943734])
- kiteAreasOnVertex(n_face, vertexDegree)float640.01108 0.01108 ... 0.01315 0.01315
array([[0.01108203, 0.01108203, 0.01346735], [0.01108203, 0.01108203, 0.01346735], [0.01346735, 0.01108203, 0.01108203], [0.01108203, 0.01108203, 0.01346735], [0.01108203, 0.01346735, 0.01108203], [0.01108203, 0.01108203, 0.01346735], [0.01108203, 0.01346735, 0.01108203], [0.01346735, 0.01108203, 0.01108203], [0.01108203, 0.01108203, 0.01346735], [0.01346735, 0.01108203, 0.01108203], [0.01346735, 0.01108203, 0.01108203], [0.01108203, 0.01108203, 0.01346735], [0.01108203, 0.01346735, 0.01108203], [0.01108203, 0.01346735, 0.01108203], [0.01108203, 0.01108203, 0.01346735], [0.01108203, 0.01108203, 0.01346735], [0.01346735, 0.01108203, 0.01108203], [0.01108203, 0.01108203, 0.01346735], [0.01346735, 0.01108203, 0.01108203], [0.01346735, 0.01108203, 0.01108203], ... [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578], [0.01314578, 0.01314578, 0.01314578]])
- cellQuality(n_node)float641.0 1.0 1.0 ... 0.8565 0.8565
array([0.99999995, 0.99999995, 1. , 0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999995, 1. , 0.99999995, 0.99999995, 0.99999995, 0.78147259, 0.78147261, 0.78147261, 0.78147259, 0.78147259, 0.78147261, 0.78147261, 0.78147259, 0.78147259, 0.78147259, 0.78147259, 0.78147259, 0.78147261, 0.78147261, 0.78147259, 0.78147259, 0.78147259, 0.78147261, 0.78147259, 0.78147259, 0.78147261, 0.78147259, 0.78147259, 0.78147261, 0.78147259, 0.78147259, 0.78147259, 0.78147261, 0.78147259, 0.78147259, 0.65551845, 0.6555185 , 0.6555185 , 0.65551845, 0.6555185 , 0.6555185 , 0.65551845, 0.6555185 , 0.6555185 , 0.65551845, 0.65551852, 0.65551852, 0.65551852, 0.65551852, 0.65551852, 0.65551845, 0.6555185 , 0.6555185 , 0.65551845, 0.6555185 , 0.6555185 , 0.65551845, 0.6555185 , 0.65551845, 0.6555185 , 0.65551845, 0.6555185 , 0.65551845, 0.6555185 , 0.6555185 , 0.6555185 , 0.6555185 , 0.65551845, 0.6555185 , 0.65551845, 0.65551845, 0.6555185 , 0.65551845, 0.6555185 , 0.6555185 , 0.65551852, 0.65551852, 0.65551852, 0.65551852, 0.65551852, 0.65551845, 0.6555185 , 0.65551845, 0.6555185 , 0.6555185 , 0.6555185 , 0.6555185 , 0.65551845, 0.6555185 , 0.65551845, 0.6555185 , 0.6555185 , 0.65551845, 0.6555185 , 0.65551845, 0.85654128, 0.85654128, 0.8565413 , 0.8565413 , 0.85654128, 0.85654136, 0.85654136, 0.85654136, 0.85654128, 0.85654128, 0.8565413 , 0.8565413 , 0.85654128, 0.85654132, 0.85654132, 0.85654128, 0.85654136, 0.85654128, 0.85654136, 0.85654128, 0.85654128, 0.8565413 , 0.8565413 , 0.85654132, 0.85654132, 0.8565413 , 0.8565413 , 0.85654132, 0.8565413 , 0.8565413 , 0.85654128, 0.85654136, 0.85654128, 0.85654136, 0.85654136, 0.85654128, 0.85654128, 0.8565413 , 0.8565413 , 0.85654128, 0.85654132, 0.8565413 , 0.85654132, 0.85654128, 0.8565413 , 0.85654136, 0.85654128, 0.85654132, 0.8565413 , 0.8565413 , 0.85654128, 0.85654128, 0.85654136, 0.85654128, 0.8565413 , 0.8565413 , 0.85654132, 0.85654132, 0.8565413 , 0.8565413 ])
- gridSpacing(n_node)float640.2728 0.2728 ... 0.3051 0.3051
array([0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.27283885, 0.30325606, 0.30325606, 0.30325606, 0.30325606, 0.30325607, 0.30325606, 0.30325606, 0.30325606, 0.30325607, 0.30325607, 0.30325607, 0.30325607, 0.30325606, 0.30325606, 0.30325606, 0.30325607, 0.30325606, 0.30325606, 0.30325607, 0.30325606, 0.30325606, 0.30325606, 0.30325607, 0.30325606, 0.30325606, 0.30325607, 0.30325606, 0.30325606, 0.30325607, 0.30325606, 0.29852973, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852972, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852973, 0.29852972, 0.29852973, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852973, 0.29852973, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852972, 0.29852972, 0.29852972, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852973, 0.29852972, 0.29852972, 0.29852973, 0.29852972, 0.29852973, 0.30509545, 0.30509545, 0.30509546, 0.30509546, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509546, 0.30509546, 0.30509545, 0.30509546, 0.30509546, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509546, 0.30509546, 0.30509546, 0.30509546, 0.30509546, 0.30509546, 0.30509546, 0.30509546, 0.30509546, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509546, 0.30509546, 0.30509545, 0.30509546, 0.30509546, 0.30509546, 0.30509545, 0.30509546, 0.30509545, 0.30509545, 0.30509546, 0.30509546, 0.30509546, 0.30509545, 0.30509545, 0.30509545, 0.30509545, 0.30509546, 0.30509546, 0.30509546, 0.30509546, 0.30509546, 0.30509546])
- triangleQuality(n_face)float640.8577 0.8577 0.8577 ... 1.0 1.0
array([0.85766993, 0.85766996, 0.85766997, 0.85766996, 0.85766993, 0.85766996, 0.85766993, 0.85766993, 0.85766996, 0.85766997, 0.85766992, 0.85766992, 0.85766992, 0.85766992, 0.85766992, 0.85766993, 0.85766993, 0.85766996, 0.85766997, 0.85766996, 0.85766996, 0.85766997, 0.85766996, 0.85766993, 0.85766993, 0.85766997, 0.85766996, 0.85766993, 0.85766993, 0.85766996, 0.85766996, 0.85766997, 0.85766996, 0.85766993, 0.85766993, 0.85766996, 0.85766993, 0.85766993, 0.85766996, 0.85766997, 0.85766992, 0.85766992, 0.85766992, 0.85766992, 0.85766992, 0.85766993, 0.85766993, 0.85766996, 0.85766997, 0.85766996, 0.85766993, 0.85766993, 0.85766996, 0.85766997, 0.85766996, 0.85766993, 0.85766996, 0.85766997, 0.85766996, 0.85766993, 0.95411387, 0.89259439, 0.89259436, 0.95411389, 0.89259436, 0.89259439, 0.89259438, 0.95411386, 0.89259435, 0.89259438, 0.95411386, 0.89259435, 0.89259435, 0.95411386, 0.89259438, 0.89259435, 0.95411386, 0.89259438, 0.95411389, 0.89259436, 0.89259439, 0.95411387, 0.89259439, 0.89259436, 0.8925943 , 0.8925943 , 0.95411389, 0.89259429, 0.89259429, 0.95411389, 0.89259435, 0.89259438, 0.95411386, 0.89259435, 0.89259438, 0.95411386, 0.95411386, 0.89259438, 0.89259435, 0.95411386, ... 0.95411387, 0.89259439, 0.89259435, 0.95411386, 0.89259438, 0.89259435, 0.95411386, 0.89259438, 0.89259429, 0.95411389, 0.8925943 , 0.8925943 , 0.95411389, 0.89259429, 0.89259436, 0.95411389, 0.89259436, 0.89259439, 0.95411387, 0.89259439, 0.94520636, 0.94520637, 0.9452064 , 0.94520637, 0.94520636, 0.94520636, 0.94520636, 0.94520637, 0.9452064 , 0.94520637, 0.94520638, 0.94520638, 0.94520638, 0.94520638, 0.94520638, 0.94520636, 0.94520637, 0.9452064 , 0.94520637, 0.94520636, 0.9452064 , 0.94520637, 0.94520636, 0.94520636, 0.94520637, 0.94520637, 0.94520636, 0.94520636, 0.94520637, 0.9452064 , 0.94520637, 0.9452064 , 0.94520637, 0.94520636, 0.94520636, 0.94520637, 0.94520636, 0.94520636, 0.94520637, 0.9452064 , 0.94520638, 0.94520638, 0.94520638, 0.94520638, 0.94520638, 0.94520637, 0.94520636, 0.94520636, 0.94520637, 0.9452064 , 0.94520637, 0.9452064 , 0.94520637, 0.94520636, 0.94520636, 0.94520637, 0.9452064 , 0.94520637, 0.94520636, 0.94520636, 0.99999999, 0.99999998, 0.99999999, 0.99999999, 0.99999998, 0.99999999, 0.99999999, 0.99999998, 0.99999998, 0.99999998, 0.99999999, 0.99999999, 0.99999999, 0.99999998, 0.99999998, 0.99999999, 0.99999998, 0.99999999, 0.99999998, 0.99999998])
- triangleAngleQuality(n_face)float640.8315 0.8315 0.7619 ... 1.0 1.0
array([0.83148253, 0.83148258, 0.76191637, 0.83148257, 0.76191633, 0.83148257, 0.76191633, 0.76191635, 0.83148258, 0.76191637, 0.76191629, 0.83148252, 0.76191629, 0.76191629, 0.83148252, 0.83148254, 0.76191635, 0.83148258, 0.76191637, 0.76191638, 0.76191637, 0.76191637, 0.76191637, 0.76191632, 0.83148253, 0.83148258, 0.76191638, 0.83148254, 0.76191635, 0.76191637, 0.83148258, 0.83148258, 0.76191637, 0.83148254, 0.76191632, 0.83148257, 0.76191632, 0.83148253, 0.76191637, 0.83148258, 0.76191629, 0.76191629, 0.83148252, 0.76191629, 0.76191629, 0.76191632, 0.83148253, 0.76191637, 0.83148258, 0.83148257, 0.76191632, 0.76191632, 0.83148258, 0.76191637, 0.76191637, 0.76191632, 0.83148258, 0.76191637, 0.83148257, 0.83148254, 0.95063114, 0.85081463, 0.82954545, 0.92651341, 0.88255966, 0.88409029, 0.82954546, 0.95063112, 0.85081457, 0.8611144 , 0.95063112, 0.85081457, 0.86111438, 0.92651336, 0.85081461, 0.88409024, 0.92651336, 0.85081461, 0.92651341, 0.82954545, 0.8295455 , 0.92651337, 0.8295455 , 0.86111439, 0.82954535, 0.82954535, 0.9265134 , 0.82954534, 0.86111431, 0.9265134 , 0.85081457, 0.82954546, 0.92651337, 0.85081457, 0.82954546, 0.92651337, 0.92651336, 0.88255968, 0.88409024, 0.92651336, ... 0.92651337, 0.8295455 , 0.88409024, 0.92651336, 0.85081461, 0.82954543, 0.92651336, 0.88255968, 0.86111431, 0.9265134 , 0.88255959, 0.8611143 , 0.9265134 , 0.88255959, 0.88409025, 0.92651341, 0.82954545, 0.86111444, 0.95063114, 0.8825597 , 0.93801757, 0.90902836, 0.93801761, 0.90902836, 0.90902835, 0.90902835, 0.93801757, 0.93801755, 0.93801761, 0.90902836, 0.93801758, 0.93801758, 0.90902837, 0.90902837, 0.90902837, 0.90902836, 0.90902842, 0.93801761, 0.90902836, 0.90902839, 0.90902841, 0.90902836, 0.93801755, 0.90902836, 0.90902836, 0.93801758, 0.93801755, 0.90902835, 0.90902842, 0.90902841, 0.93801755, 0.90902841, 0.90902838, 0.90902839, 0.90902836, 0.93801758, 0.90902839, 0.93801757, 0.90902836, 0.90902841, 0.93801758, 0.93801758, 0.90902837, 0.90902837, 0.90902837, 0.90902836, 0.93801755, 0.93801757, 0.93801755, 0.90902841, 0.90902836, 0.90902841, 0.90902838, 0.90902839, 0.90902836, 0.90902842, 0.93801761, 0.90902836, 0.93801755, 0.90902836, 0.99999998, 0.99999998, 0.99999998, 0.99999999, 0.99999997, 0.99999998, 0.99999998, 0.99999998, 0.99999997, 0.99999997, 0.99999999, 0.99999998, 0.99999998, 0.99999998, 0.99999997, 0.99999998, 0.99999997, 0.99999999, 0.99999997, 0.99999997])
- obtuseTriangle(n_face)int320 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=int32)
- meshDensity(n_node)float641.0 1.0 1.0 1.0 ... 1.0 1.0 1.0 1.0
array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])
Show Grid Information
<uxarray.Grid> Original Grid Type: User Defined Topology Grid Dimensions: * n_node: 162 * n_face: 320 * n_max_face_nodes: 3 Grid Coordinates (Spherical): * node_lon: (162,) * node_lat: (162,) Grid Coordinates (Cartesian): Grid Connectivity Variables: * face_node_connectivity: (320, 3) Grid Descriptor Variables:
- n_node: 162
- n_face: 320
- n_max_face_nodes: 3
- node_lon(n_node)float64-175.0 -103.0 0.0 ... 172.4 -162.3
- standard_name :
- longitude
- long name :
- Longitude of the corner nodes of each face
- units :
- degrees_east
array([-174.95294504, -102.95294504, 0. , 5.04705496, 77.04705496, -66.95294504, -30.95294504, 149.04705496, 0. , 41.04705496, -138.95294504, 113.04705496, 149.04705496, 167.04705496, -156.95294504, -138.95294504, -174.95294504, -120.95294504, -84.95294504, -66.95294504, -102.95294504, 41.04705496, 113.04705496, -30.95294504, 23.04705496, -12.95294504, -30.95294504, 5.04705496, 41.04705496, 59.04705496, 77.04705496, 113.04705496, 95.04705496, -102.95294504, -66.95294504, -48.95294504, 5.04705496, 149.04705496, -174.95294504, 131.04705496, -138.95294504, 77.04705496, 167.77251723, 175.66717516, -165.57306524, -157.67840731, -174.95294504, -102.95294504, -120.22748277, -112.33282484, -93.57306524, -85.67840731, -30.95294504, 41.04705496, 113.04705496, -174.95294504, -102.95294504, 22.32159269, 14.42693476, -4.33282484, -12.22748277, 5.04705496, 67.66717516, 59.77251723, 77.04705496, 94.32159269, 86.42693476, -84.22748277, -66.95294504, -49.67840731, -57.57306524, -76.33282484, -40.33282484, -21.57306524, -13.67840731, -30.95294504, -48.22748277, 131.77251723, 149.04705496, 166.32159269, ... -66.95294504, -138.95294504, 149.04705496, 58.32159269, 41.04705496, 23.77251723, 31.66717516, 50.42693476, -129.57306524, -148.33282484, -156.22748277, -138.95294504, -121.67840731, 103.66717516, 122.42693476, 130.32159269, 113.04705496, 95.77251723, 140.11719882, 157.9769111 , 161.68736903, 136.40674089, 176.11719882, -174.95294504, 149.04705496, -138.95294504, -147.88280118, -166.0230889 , -126.31263097, -151.59325911, -130.0230889 , 149.04705496, -138.95294504, -111.88280118, -102.95294504, -94.0230889 , -66.95294504, -75.88280118, -58.0230889 , -54.31263097, -79.59325911, -66.95294504, 5.04705496, 17.68736903, 64.40674089, 77.04705496, 89.68736903, -7.59325911, 13.9769111 , 5.04705496, 32.11719882, 41.04705496, -30.95294504, -22.0230889 , -3.88280118, -43.59325911, -18.31263097, -39.88280118, 41.04705496, 28.40674089, -30.95294504, 49.9769111 , 53.68736903, 77.04705496, 68.11719882, 113.04705496, 100.40674089, 125.68736903, 121.9769111 , 104.11719882, 113.04705496, 85.9769111 , -115.59325911, -90.31263097, -102.95294504, -174.95294504, 172.40674089, -162.31263097])
- node_lat(n_node)float6426.57 26.57 90.0 ... -46.91 -46.91
- standard_name :
- latitude
- long name :
- Latitude of the corner nodes of each face
- units :
- degrees_north
array([ 2.65650512e+01, 2.65650512e+01, 9.00000000e+01, -2.65650512e+01, -2.65650512e+01, -2.65650512e+01, 2.65650512e+01, -2.65650512e+01, -9.00000000e+01, 2.65650512e+01, -2.65650512e+01, 2.65650512e+01, 3.17174744e+01, -1.08861981e-11, -5.78687373e-11, 3.17174744e+01, 5.82825256e+01, -6.93278932e-11, -5.21391594e-11, 3.17174744e+01, 5.82825256e+01, 5.82825256e+01, 5.82825256e+01, 5.82825256e+01, 5.78687373e-11, 1.08861981e-11, -3.17174744e+01, -5.82825256e+01, -3.17174744e+01, 6.93278932e-11, -5.82825256e+01, -3.17174744e+01, 5.21391594e-11, -3.17174744e+01, -5.82825256e+01, -2.69290164e-11, 3.17174744e+01, -5.82825256e+01, -3.17174744e+01, 2.69290164e-11, -5.82825256e+01, 3.17174744e+01, 3.03412934e+01, 1.36319094e+01, 1.36319094e+01, 3.03412934e+01, 4.21975660e+01, 4.21975660e+01, 3.03412934e+01, 1.36319094e+01, 1.36319094e+01, 3.03412934e+01, 7.43674852e+01, 7.43674852e+01, 7.43674852e+01, 7.43674852e+01, 7.43674852e+01, -3.03412934e+01, -1.36319094e+01, -1.36319094e+01, -3.03412934e+01, -4.21975660e+01, -1.36319094e+01, -3.03412934e+01, -4.21975660e+01, -3.03412934e+01, -1.36319094e+01, -3.03412934e+01, -4.21975660e+01, -3.03412934e+01, -1.36319094e+01, -1.36319094e+01, 1.36319094e+01, 1.36319094e+01, 3.03412934e+01, 4.21975660e+01, 3.03412934e+01, -3.03412934e+01, -4.21975660e+01, -3.03412934e+01, ... -7.43674852e+01, -7.43674852e+01, -7.43674852e+01, 3.03412934e+01, 4.21975660e+01, 3.03412934e+01, 1.36319094e+01, 1.36319094e+01, -1.36319094e+01, -1.36319094e+01, -3.03412934e+01, -4.21975660e+01, -3.03412934e+01, 1.36319094e+01, 1.36319094e+01, 3.03412934e+01, 4.21975660e+01, 3.03412934e+01, 1.56373155e+01, 1.56373155e+01, 4.69146420e+01, 4.69146420e+01, -1.56373155e+01, -8.73033316e-01, 8.73033316e-01, 8.73033316e-01, 1.56373155e+01, -1.56373155e+01, 4.69146420e+01, 4.69146420e+01, 1.56373155e+01, 6.25619155e+01, 6.25619155e+01, -1.56373155e+01, -8.73033316e-01, -1.56373155e+01, 8.73033316e-01, 1.56373155e+01, 1.56373155e+01, 4.69146420e+01, 4.69146420e+01, 6.25619155e+01, 6.25619155e+01, 4.69146420e+01, 4.69146420e+01, 6.25619155e+01, 4.69146420e+01, 4.69146420e+01, 1.56373155e+01, 8.73033316e-01, -1.56373155e+01, -8.73033316e-01, -8.73033316e-01, -1.56373155e+01, 1.56373155e+01, -4.69146420e+01, -4.69146420e+01, -1.56373155e+01, -6.25619155e+01, -4.69146420e+01, -6.25619155e+01, -1.56373155e+01, -4.69146420e+01, 8.73033316e-01, 1.56373155e+01, -6.25619155e+01, -4.69146420e+01, -4.69146420e+01, -1.56373155e+01, -1.56373155e+01, -8.73033316e-01, 1.56373155e+01, -4.69146420e+01, -4.69146420e+01, -6.25619155e+01, -6.25619155e+01, -4.69146420e+01, -4.69146420e+01])
- face_node_connectivity(n_face, n_max_face_nodes)int6446 42 0 42 43 ... 156 159 161 160
- cf_role :
- face_node_connectivity
- long name :
- Maps every face to its corner nodes.
- start_index :
- 0
- _FillValue :
- -9223372036854775808
array([[ 46, 42, 0], [ 42, 43, 0], [ 0, 43, 44], [ 44, 45, 0], [ 46, 0, 45], [ 50, 51, 1], [ 47, 1, 51], [ 1, 47, 48], [ 48, 49, 1], [ 1, 49, 50], [ 2, 56, 52], [ 52, 53, 2], [ 54, 2, 53], [ 55, 2, 54], [ 55, 56, 2], [ 60, 61, 3], [ 3, 61, 57], [ 57, 58, 3], [ 3, 58, 59], [ 3, 59, 60], ... [108, 103, 102], [105, 104, 115], [107, 106, 111], [114, 110, 109], [112, 116, 113], [118, 117, 119], [121, 120, 122], [124, 123, 125], [127, 126, 131], [129, 128, 130], [132, 138, 133], [135, 134, 145], [137, 136, 141], [140, 139, 144], [143, 142, 146], [147, 155, 148], [150, 149, 151], [153, 152, 154], [158, 157, 156], [159, 161, 160]])
As you can see, transforms the whole dataset. We can now take any variable and plot it, as shown below.
uxds_dual["latVertex"].plot.polygons(
rasterize=True,
backend="matplotlib",
title="latVertex from UxDataset dual mesh",
cmap=ux.cmaps.sequential_green_blue,
projection=ccrs.Orthographic(),
).opts(fig_size=120)