libsim Versione 7.1.11
|
◆ geo_proj_write_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.
Definizione alla linea 776 del file geo_proj_class.F90. 777
780ELEMENTAL FUNCTION geo_lon_eq(l1, l2) RESULT(eq)
781DOUBLE PRECISION,INTENT(in) :: l1
782DOUBLE PRECISION,INTENT(in) :: l2
783
784LOGICAL :: eq
785
786!eq = (l1 == l2) .OR. (ABS(l2-l1) == 360.0D0)
787eq = modulo(l2-l1, 360.0d0) == 0.0d0
788
|