-
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.
Link to supported grid types in documentation
- Loading branch information
1 parent
1d2a06d
commit 23c7639
Showing
3 changed files
with
38 additions
and
3 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,30 @@ | ||
```@raw html | ||
<script setup lang="ts"> | ||
import Gallery from "../components/Gallery.vue"; | ||
const types = [ | ||
{ | ||
href: "types/rectilinear", | ||
src: "images/isin.png", | ||
caption: "Rectilinear", | ||
desc: "Rectilinear Lon/Lat Grids" | ||
}, | ||
{ | ||
href: "types/generalized", | ||
src: "images/ison.png", | ||
caption: "Generalized", | ||
desc: "Curvilinear or Nonlinear Lon/Lat Grids" | ||
}, | ||
{ | ||
href: "types/unstructured", | ||
src: "images/isequal.png", | ||
caption: "Unstructured", | ||
desc: "Unstructured Lon/Lat Grids and Meshes" | ||
} | ||
]; | ||
</script> | ||
# Types of GeoRegions | ||
<Gallery :images="types" /> | ||
``` |