-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Splitting the definitions, need more elaborations on the different ty…
…pes of grids are
- Loading branch information
1 parent
3499eaf
commit 1d2a06d
Showing
6 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Generalized | ||
|
||
The `GeneralizedGrid` type can be further subdivided into two different types based on the `GeoRegion` type: | ||
* Mapping generalized gridded lon-lat data to a `RectRegion` or `PolyRegion` returns a `GeneralMask` type. | ||
* Mapping generalized gridded lon-lat data to a `TiltRegion` returns a `GeneralTilt` type. | ||
|
||
```@docs | ||
GeneralMask | ||
GeneralTilt | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Rectilinear | ||
|
||
The `RectilinearGrid` type can be further subdivided into three different types based on the `GeoRegion` type: | ||
* Mapping rectilinearly-gridded lon-lat data to a `RectRegion` or `PolyRegion` returns a `RLinearMask` type. | ||
* Mapping rectilinearly-gridded lon-lat data to a `TiltRegion` returns a `RLinearTilt` type. | ||
|
||
```@docs | ||
RLinearMask | ||
RLinearTilt | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Unstructured | ||
|
||
The `UnstructuredGrid` type can be further subdivided into two different types based on the `GeoRegion` type: | ||
* Mapping unstructured lon-lat data to a `RectRegion` or `PolyRegion` returns a `VectorMask` type. | ||
* Mapping unstructured lon-lat data to a `TiltRegion` returns a `VectorTilt` type. | ||
|
||
```@docs | ||
VectorMask | ||
VectorTilt | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters