libsim  Versione 7.2.1

◆ 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 780 del file geo_proj_class.F90.

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 
789 END FUNCTION geo_lon_eq
790 
791 ! =====================
792 ! == transformations ==

Generated with Doxygen.