|
◆ geo_proj_write_unit()
subroutine geo_proj_write_unit |
( |
type(geo_proj), intent(in) |
this, |
|
|
integer, intent(in) |
unit |
|
) |
| |
This method writes on a Fortran file unit the contents of the object this.
The record can successively be read by the ::read_unit method. The method works both on formatted and unformatted files.
- Parametri
-
[in] | this | object to be written |
[in] | unit | unit where to write, it must be an opened Fortran file unit |
Definizione alla linea 796 del file geo_proj_class.F90.
799 END SUBROUTINE unproj_regular_ll 802 ELEMENTAL SUBROUTINE proj_rotated_ll(lon,lat,x,y, & 803 longitude_south_pole, latitude_south_pole, angle_rotation) 804 DOUBLE PRECISION, INTENT(in) :: lon,lat 805 DOUBLE PRECISION, INTENT(out) :: x,y 806 DOUBLE PRECISION, INTENT(in) :: longitude_south_pole, latitude_south_pole, &
|