|
◆ 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 608 del file grid_class.F90.
611 SUBROUTINE griddim_gen_coord(this, x, y) 612 TYPE(griddim_def), INTENT(in) :: this 613 DOUBLE PRECISION, INTENT(out) :: x(:,:) 614 DOUBLE PRECISION, INTENT(out) :: y(:,:)
|