File tree 1 file changed +18
-10
lines changed
1 file changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -35,30 +35,32 @@ tree():
35
35
shape:
36
36
A tuple of the dataset's dimensions.
37
37
38
- dtype:
39
- The dataset's data type.
40
-
41
38
field_shape:
42
- The dataset's field shape.
39
+ The original shape of a single field, either 1D or 2D. When building
40
+ datasets, the fields are flattened to 1D.
41
+
42
+ dtype:
43
+ The dataset's `NumPy data type `_.
43
44
44
45
dates:
45
- The dataset's dates.
46
+ The dataset's dates, as a NumPy vector of datetime64 _ objects.
47
+
48
+ frequency:
49
+ The dataset's frequency (i.e the delta between two consecutive dates)
50
+ in hours.
46
51
47
52
latitudes:
48
- The dataset's latitudes.
53
+ The dataset's latitudes as a NumPy vector .
49
54
50
55
longitudes:
51
- The dataset's longitudes.
56
+ The dataset's longitudes as a NumPy vector .
52
57
53
58
statistics:
54
59
The dataset's statistics.
55
60
56
61
resolution:
57
62
The dataset's resolution.
58
63
59
- frequency:
60
- The dataset's frequency.
61
-
62
64
name_to_index:
63
65
A dictionary mapping variable names to their indices.
64
66
@@ -70,3 +72,9 @@ missing:
70
72
71
73
grids:
72
74
The dataset's grids.
75
+
76
+ .. _datetime64 : https://docs.scipy.org/doc/numpy/reference/arrays.datetime.html
77
+
78
+ .. _numpy data type : https://docs.scipy.org/doc/numpy/user/basics.types.html
79
+
80
+ """
You can’t perform that action at this time.
0 commit comments