File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -42,12 +42,12 @@ metadata()
42
42
provenance()
43
43
Return the dataset's provenance information.
44
44
45
- source(index):
45
+ source(index)
46
46
For debugging. Given the index of variable, this will return from
47
47
which Zarr store it will be loaded. This is useful to debug combining
48
48
datasets with :ref: `join `.
49
49
50
- tree():
50
+ tree()
51
51
For debugging. Return the dataset's internal tree structure.
52
52
53
53
************
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Subsetting is the action of filtering the dataset by its first dimension
14
14
*******
15
15
16
16
This option let you subset the dataset by time. You can pass a date or a
17
+ string:
17
18
18
19
.. literalinclude :: code/start_.py
19
20
@@ -34,6 +35,15 @@ The following are equivalent way of describing ``start`` or ``end``:
34
35
- ``202306 ``, ``"202306" `` and ``"2023-06" ``
35
36
- ``20200301 ``, ``"20200301" `` and ``"2020-03-01" ``
36
37
38
+ Note that the ``start="2020" `` is equivalent to ``start="2020-01-01" ``
39
+ while ``end="2020" `` is equivalent to ``end="2020-12-31" ``.
40
+
41
+ Note also how the ``frequency `` of the dataset will change how the
42
+ ``end `` option is interpreted: - ``end="2020" `` with a ``frequency `` of
43
+ one hour is equivalent to ``end="2020-12-31 23:00" `` - ``end="2020" ``
44
+ with a ``frequency `` of 6 hours is equivalent to ``end="2020-12-31
45
+ 18:00" ``
46
+
37
47
.. _frequency :
38
48
39
49
***********
You can’t perform that action at this time.
0 commit comments