|
◆ griddim_coord_proj()
elemental subroutine griddim_coord_proj |
( |
type(griddim_def), intent(in) |
this, |
|
|
double precision, intent(in) |
lon, |
|
|
double precision, intent(in) |
lat, |
|
|
double precision, intent(out) |
x, |
|
|
double precision, intent(out) |
y |
|
) |
| |
Computes and returns coordinates in the projected system given the geographical coordinates.
- Parametri
-
[in] | this | definition of projection |
[in] | lon | geographical coordinates |
[in] | lat | geographical coordinates |
[out] | x | projected coordinates |
[out] | y | projected coordinates |
Definizione alla linea 592 del file grid_class.F90.
594 lon = modulo(lonsp + 180.0d0, 360.0d0)
|