-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
34 additions
and
5 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,28 @@ | ||
using DimensionalData: @dim, YDim, XDim, ZDim, TimeDim | ||
export Lat, lat, latitude, Latitude | ||
export rlat, lat_c | ||
export Lon, lon, longitude, long, Longitude | ||
export rlon, lon_c | ||
export height, depth | ||
|
||
@dim Lat YDim "Latitude" | ||
@dim lat YDim "Latitude" | ||
@dim latitude YDim "Latitude" | ||
@dim Latitude YDim "Latitude" | ||
@dim rlat YDim | ||
@dim lat_c YDim | ||
|
||
@dim Lon XDim "Longitude" | ||
@dim lon XDim "Longitude" | ||
@dim long XDim "Longitude" | ||
@dim longitude XDim "Longitude" | ||
@dim Longitude XDim "Longitude" | ||
@dim rlon XDim | ||
@dim lon_c XDim | ||
|
||
@dim height ZDim | ||
@dim depth ZDim | ||
|
||
@dim time TimeDim "time" | ||
@dim Time TimeDim "time" | ||
|