/* CSS stylesheet for displaying xarray objects in jupyterlab.
*
*/
:root {
--xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));
--xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));
--xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));
--xr-border-color: var(--jp-border-color2, #e0e0e0);
--xr-disabled-color: var(--jp-layout-color3, #bdbdbd);
--xr-background-color: var(--jp-layout-color0, white);
--xr-background-color-row-even: var(--jp-layout-color1, white);
--xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);
}
html[theme=dark],
body.vscode-dark {
--xr-font-color0: rgba(255, 255, 255, 1);
--xr-font-color2: rgba(255, 255, 255, 0.54);
--xr-font-color3: rgba(255, 255, 255, 0.38);
--xr-border-color: #1F1F1F;
--xr-disabled-color: #515151;
--xr-background-color: #111111;
--xr-background-color-row-even: #111111;
--xr-background-color-row-odd: #313131;
}
.xr-wrap {
display: block;
min-width: 300px;
max-width: 700px;
}
.xr-text-repr-fallback {
/* fallback to plain text repr when CSS is not injected (untrusted notebook) */
display: none;
}
.xr-header {
padding-top: 6px;
padding-bottom: 6px;
margin-bottom: 4px;
border-bottom: solid 1px var(--xr-border-color);
}
.xr-header > div,
.xr-header > ul {
display: inline;
margin-top: 0;
margin-bottom: 0;
}
.xr-obj-type,
.xr-array-name {
margin-left: 2px;
margin-right: 10px;
}
.xr-obj-type {
color: var(--xr-font-color2);
}
.xr-sections {
padding-left: 0 !important;
display: grid;
grid-template-columns: 150px auto auto 1fr 20px 20px;
}
.xr-section-item {
display: contents;
}
.xr-section-item input {
display: none;
}
.xr-section-item input + label {
color: var(--xr-disabled-color);
}
.xr-section-item input:enabled + label {
cursor: pointer;
color: var(--xr-font-color2);
}
.xr-section-item input:enabled + label:hover {
color: var(--xr-font-color0);
}
.xr-section-summary {
grid-column: 1;
color: var(--xr-font-color2);
font-weight: 500;
}
.xr-section-summary > span {
display: inline-block;
padding-left: 0.5em;
}
.xr-section-summary-in:disabled + label {
color: var(--xr-font-color2);
}
.xr-section-summary-in + label:before {
display: inline-block;
content: 'â–º';
font-size: 11px;
width: 15px;
text-align: center;
}
.xr-section-summary-in:disabled + label:before {
color: var(--xr-disabled-color);
}
.xr-section-summary-in:checked + label:before {
content: 'â–¼';
}
.xr-section-summary-in:checked + label > span {
display: none;
}
.xr-section-summary,
.xr-section-inline-details {
padding-top: 4px;
padding-bottom: 4px;
}
.xr-section-inline-details {
grid-column: 2 / -1;
}
.xr-section-details {
display: none;
grid-column: 1 / -1;
margin-bottom: 5px;
}
.xr-section-summary-in:checked ~ .xr-section-details {
display: contents;
}
.xr-array-wrap {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 20px auto;
}
.xr-array-wrap > label {
grid-column: 1;
vertical-align: top;
}
.xr-preview {
color: var(--xr-font-color3);
}
.xr-array-preview,
.xr-array-data {
padding: 0 5px !important;
grid-column: 2;
}
.xr-array-data,
.xr-array-in:checked ~ .xr-array-preview {
display: none;
}
.xr-array-in:checked ~ .xr-array-data,
.xr-array-preview {
display: inline-block;
}
.xr-dim-list {
display: inline-block !important;
list-style: none;
padding: 0 !important;
margin: 0;
}
.xr-dim-list li {
display: inline-block;
padding: 0;
margin: 0;
}
.xr-dim-list:before {
content: '(';
}
.xr-dim-list:after {
content: ')';
}
.xr-dim-list li:not(:last-child):after {
content: ',';
padding-right: 5px;
}
.xr-has-index {
font-weight: bold;
}
.xr-var-list,
.xr-var-item {
display: contents;
}
.xr-var-item > div,
.xr-var-item label,
.xr-var-item > .xr-var-name span {
background-color: var(--xr-background-color-row-even);
margin-bottom: 0;
}
.xr-var-item > .xr-var-name:hover span {
padding-right: 5px;
}
.xr-var-list > li:nth-child(odd) > div,
.xr-var-list > li:nth-child(odd) > label,
.xr-var-list > li:nth-child(odd) > .xr-var-name span {
background-color: var(--xr-background-color-row-odd);
}
.xr-var-name {
grid-column: 1;
}
.xr-var-dims {
grid-column: 2;
}
.xr-var-dtype {
grid-column: 3;
text-align: right;
color: var(--xr-font-color2);
}
.xr-var-preview {
grid-column: 4;
}
.xr-var-name,
.xr-var-dims,
.xr-var-dtype,
.xr-preview,
.xr-attrs dt {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 10px;
}
.xr-var-name:hover,
.xr-var-dims:hover,
.xr-var-dtype:hover,
.xr-attrs dt:hover {
overflow: visible;
width: auto;
z-index: 1;
}
.xr-var-attrs,
.xr-var-data {
display: none;
background-color: var(--xr-background-color) !important;
padding-bottom: 5px !important;
}
.xr-var-attrs-in:checked ~ .xr-var-attrs,
.xr-var-data-in:checked ~ .xr-var-data {
display: block;
}
.xr-var-data > table {
float: right;
}
.xr-var-name span,
.xr-var-data,
.xr-attrs {
padding-left: 25px !important;
}
.xr-attrs,
.xr-var-attrs,
.xr-var-data {
grid-column: 1 / -1;
}
dl.xr-attrs {
padding: 0;
margin: 0;
display: grid;
grid-template-columns: 125px auto;
}
.xr-attrs dt,
.xr-attrs dd {
padding: 0;
margin: 0;
float: left;
padding-right: 10px;
width: auto;
}
.xr-attrs dt {
font-weight: normal;
grid-column: 1;
}
.xr-attrs dt:hover span {
display: inline-block;
background: var(--xr-background-color);
padding-right: 10px;
}
.xr-attrs dd {
grid-column: 2;
white-space: pre-wrap;
word-break: break-all;
}
.xr-icon-database,
.xr-icon-file-text2 {
display: inline-block;
vertical-align: middle;
width: 1em;
height: 1.5em !important;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
<xarray.DataArray (yh: 280)>
array([58898.13457414, 59048.50518971, 59201.47842058, 59356.98772962,
59514.96605495, 59675.34585926, 59838.05917809, 60003.03766718,
60170.21264869, 60339.51515633, 60510.87597943, 60684.22570578,
60859.49476336, 61036.61346082, 61215.51202681, 61396.12064808,
61578.36950631, 61762.1888138 , 61947.50884785, 62134.259984 ,
62322.37272798, 62511.77774648, 62702.40589678, 62894.1882551 ,
63087.05614385, 63280.94115771, 63475.77518861, 63671.49044953,
63868.0194973 , 64065.29525424, 64263.25102887, 64461.82053552,
64660.93791296, 64860.53774212, 65060.55506283, 65260.92538964,
65461.58472681, 65662.4695824 , 65863.51698156, 66064.66447904,
66265.85017087, 66467.01270535, 66668.09129336, 66869.02571785,
67069.75634286, 67270.22412174, 67470.37060485, 67670.13794666,
67869.4689123 , 68068.30688356, 68266.59586443, 68464.28048607,
68661.30601141, 68857.61833927, 69053.16400805, 69247.89019906,
69441.74473944, 69634.67610475, 69826.6334212 , 70017.5664676 ,
70207.42567695, 70396.1621378 , 70583.72759534, 70770.07445218,
70955.15576898, 71138.92526478, 71321.33731721, 71502.34696238,
71681.90989475, 71859.98246669, 72036.52168796, 72211.48522503,
72384.83140028, 72556.51919102, 72726.50822848, 72894.75879661,
73061.23183087, 73225.88891688, 73388.69228898, 73549.60482876,
...
73549.60482876, 73388.69228898, 73225.88891688, 73061.23183087,
72894.75879661, 72726.50822848, 72556.51919102, 72384.83140028,
72211.48522503, 72036.52168796, 71859.98246669, 71681.90989475,
71502.34696238, 71321.33731721, 71138.92526478, 70955.15576898,
70770.07445218, 70583.72759534, 70396.1621378 , 70207.42567695,
70017.5664676 , 69826.6334212 , 69634.67610475, 69441.74473944,
69247.89019906, 69053.16400805, 68857.61833927, 68661.30601141,
68464.28048607, 68266.59586443, 68068.30688356, 67869.4689123 ,
67670.13794666, 67470.37060485, 67270.22412174, 67069.75634286,
66869.02571785, 66668.09129336, 66467.01270535, 66265.85017087,
66064.66447904, 65863.51698156, 65662.4695824 , 65461.58472681,
65260.92538964, 65060.55506283, 64860.53774212, 64660.93791296,
64461.82053552, 64263.25102887, 64065.29525424, 63868.0194973 ,
63671.49044953, 63475.77518861, 63280.94115771, 63087.05614385,
62894.1882551 , 62702.40589678, 62511.77774648, 62322.37272798,
62134.259984 , 61947.50884785, 61762.1888138 , 61578.36950631,
61396.12064808, 61215.51202681, 61036.61346082, 60859.49476336,
60684.22570578, 60510.87597943, 60339.51515633, 60170.21264869,
60003.03766718, 59838.05917809, 59675.34585926, 59514.96605495,
59356.98772962, 59201.47842058, 59048.50518971, 58898.13457414])
Coordinates:
* yh (yh) float64 -69.75 -69.25 -68.75 -68.25 ... 68.75 69.25 69.75
5.89e+04 5.905e+04 5.92e+04 5.936e+04 ... 5.92e+04 5.905e+04 5.89e+04
array([58898.13457414, 59048.50518971, 59201.47842058, 59356.98772962,
59514.96605495, 59675.34585926, 59838.05917809, 60003.03766718,
60170.21264869, 60339.51515633, 60510.87597943, 60684.22570578,
60859.49476336, 61036.61346082, 61215.51202681, 61396.12064808,
61578.36950631, 61762.1888138 , 61947.50884785, 62134.259984 ,
62322.37272798, 62511.77774648, 62702.40589678, 62894.1882551 ,
63087.05614385, 63280.94115771, 63475.77518861, 63671.49044953,
63868.0194973 , 64065.29525424, 64263.25102887, 64461.82053552,
64660.93791296, 64860.53774212, 65060.55506283, 65260.92538964,
65461.58472681, 65662.4695824 , 65863.51698156, 66064.66447904,
66265.85017087, 66467.01270535, 66668.09129336, 66869.02571785,
67069.75634286, 67270.22412174, 67470.37060485, 67670.13794666,
67869.4689123 , 68068.30688356, 68266.59586443, 68464.28048607,
68661.30601141, 68857.61833927, 69053.16400805, 69247.89019906,
69441.74473944, 69634.67610475, 69826.6334212 , 70017.5664676 ,
70207.42567695, 70396.1621378 , 70583.72759534, 70770.07445218,
70955.15576898, 71138.92526478, 71321.33731721, 71502.34696238,
71681.90989475, 71859.98246669, 72036.52168796, 72211.48522503,
72384.83140028, 72556.51919102, 72726.50822848, 72894.75879661,
73061.23183087, 73225.88891688, 73388.69228898, 73549.60482876,
...
73549.60482876, 73388.69228898, 73225.88891688, 73061.23183087,
72894.75879661, 72726.50822848, 72556.51919102, 72384.83140028,
72211.48522503, 72036.52168796, 71859.98246669, 71681.90989475,
71502.34696238, 71321.33731721, 71138.92526478, 70955.15576898,
70770.07445218, 70583.72759534, 70396.1621378 , 70207.42567695,
70017.5664676 , 69826.6334212 , 69634.67610475, 69441.74473944,
69247.89019906, 69053.16400805, 68857.61833927, 68661.30601141,
68464.28048607, 68266.59586443, 68068.30688356, 67869.4689123 ,
67670.13794666, 67470.37060485, 67270.22412174, 67069.75634286,
66869.02571785, 66668.09129336, 66467.01270535, 66265.85017087,
66064.66447904, 65863.51698156, 65662.4695824 , 65461.58472681,
65260.92538964, 65060.55506283, 64860.53774212, 64660.93791296,
64461.82053552, 64263.25102887, 64065.29525424, 63868.0194973 ,
63671.49044953, 63475.77518861, 63280.94115771, 63087.05614385,
62894.1882551 , 62702.40589678, 62511.77774648, 62322.37272798,
62134.259984 , 61947.50884785, 61762.1888138 , 61578.36950631,
61396.12064808, 61215.51202681, 61036.61346082, 60859.49476336,
60684.22570578, 60510.87597943, 60339.51515633, 60170.21264869,
60003.03766718, 59838.05917809, 59675.34585926, 59514.96605495,
59356.98772962, 59201.47842058, 59048.50518971, 58898.13457414])
- Coordinates: (1)
- Attributes: (0)