libsim  Versione 7.1.6

◆ 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]thisobject to be written
[in]unitunit where to write, it must be an opened Fortran file unit

Definizione alla linea 776 del file geo_proj_class.F90.

777 
780 ELEMENTAL FUNCTION geo_lon_eq(l1, l2) RESULT(eq)
781 DOUBLE PRECISION,INTENT(in) :: l1
782 DOUBLE PRECISION,INTENT(in) :: l2
783 
784 LOGICAL :: eq
785 
786 !eq = (l1 == l2) .OR. (ABS(l2-l1) == 360.0D0)
787 eq = modulo(l2-l1, 360.0d0) == 0.0d0
788 

Generated with Doxygen.