File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,10 @@ export
1919Abstract supertype for LandSea Datasets. All `LandSeaData` types contain the following fields:
2020* `lon` - Vector containing the longitude points for the Land-Sea Dataset
2121* `lat` - Vector containing the latitude points for the Land-Sea Dataset
22- * `lsm` - Array containing data regarding the Land-Sea Mask. 1 is Land, 0 is Ocean, NaN is outside the bounds of the GeoRegion
22+ * `lsm` - Vector or Array containing data regarding the Land-Sea Mask. 1 is Land, 0 is Ocean, NaN is outside the bounds of the GeoRegion
23+
24+ !!! info
25+ If `lsm` is a vector, then `lon`, `lat` and `lsm` all must have the same length
2326"""
2427abstract type LandSeaData end
2528
@@ -29,7 +32,10 @@ abstract type LandSeaData end
2932A LandSea Dataset that also contains information on the topographic height.
3033
3134A `LandSeaTopo` type will also contain the following field:
32- * `z` - Array containing data regarding the Orographic Height in meters. NaN is outside the bounds of the GeoRegion
35+ * `z` - Vector or Array containing data regarding the Orographic Height in meters. NaN is outside the bounds of the GeoRegion
36+
37+ !!! info
38+ If `z` or `lsm` are vectors, then `lon`, `lat`, `lsm` and `z` all must be vectors of the same length
3339"""
3440struct LandSeaTopo{FT1<: Real ,FT2<: Real } <: LandSeaData
3541
You can’t perform that action at this time.
0 commit comments