-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor the Overview introductory tutorial (#429)
Use data from Ensaio instead of a synthetic. Move some definitions to a dedicated section. Use more admonitions and explain things in a bit more detail. Rename to "A taste of Verde".
- Loading branch information
Showing
10 changed files
with
500 additions
and
185 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
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 @@ | ||
.. _conventions: | ||
|
||
Definitions and conventions | ||
=========================== | ||
|
||
Here are a few of the conventions and definitions we use across Verde: | ||
|
||
.. glossary:: | ||
|
||
Coordinate types | ||
Coordinates can be **Cartesian or Geographic**. We generally make **no | ||
assumptions** about which one you're using. | ||
|
||
Order of coordinates | ||
Coordinates are usually given as West-East and South-North. For example, | ||
``longitude, latitude`` or ``easting, northing``. All functions and | ||
classes expect coordinates **in this order**. This applies to the | ||
actual coordinate values, bounding regions, grid spacing, etc. | ||
**Exceptions** to this rule are the ``dims`` and ``shape`` arguments. | ||
|
||
Coordinate names | ||
We **don't use names like "x" and "y"** to avoid ambiguity. Cartesian | ||
coordinates are "easting" and "northing" and Geographic coordinates are | ||
"longitude" and "latitude". Sometimes this doesn't make sense, like | ||
when using a polar projection, but we keep the convention for the sake | ||
of consistency. | ||
|
||
Region | ||
The term "region" means **the bounding box of the data**. It is ordered | ||
west, east, south, north. |
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
Oops, something went wrong.