libsim Versione 7.2.6
|
◆ 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 770 del file geo_proj_class.F90. 771LOGICAL :: ne
772
773ne = .NOT. (this == that)
774
775END FUNCTION geo_proj_ne
776
777
778!> Compare two longitudes and return .TRUE. if they
779!! represent the same longitude modulo 360.
780ELEMENTAL FUNCTION geo_lon_eq(l1, l2) RESULT(eq)
781DOUBLE PRECISION,INTENT(in) :: l1 !< first longitude
782DOUBLE PRECISION,INTENT(in) :: l2 !< second longitude
|