You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ncsst_na =@select(ncsst_first,300<= lon <=360&&0<= lat <=46)
74
74
nicemaps(ncsst_na)
75
75
76
-
# Select all data from a given month
76
+
# Select all data from a given month: the julia function `Dates.month` is
77
+
# first applied element-wise to all elements of time before comparing to 3.
77
78
78
79
ncsst_march =@select(ncsst,Dates.month(time) ==3)
79
80
nicemaps(ncsst_march, timeindex =1, title ="SST 1st March 2023")
80
81
81
82
82
-
# Select multiple months using e.g. an interval (from [IntervalSets](https://github.com/JuliaMath/IntervalSets.jl)).
83
+
# Select multiple months using e.g. an interval (from [IntervalSets](https://github.com/JuliaMath/IntervalSets.jl)). The upper bound of the interval is inclusive.
83
84
# ∈ can be typed by writing `\in` directly followed by the TAB key.
0 commit comments