This method reads from a Fortran file unit the contents of the object this.
The record to be read must have been written with the ::write_unit method. The method works both on formatted and unformatted files.
- Parametri
-
[out] | this | object to be read |
[in] | unit | unit from which to read, it must be an opened Fortran file unit |
Definizione alla linea 760 del file geo_proj_class.F90.
761 this%polar%latin2 == that%polar%latin2 .AND. &
762 this%polar%lad == that%polar%lad .AND. &
763 this%polar%projection_center_flag == that%polar%projection_center_flag .AND. &
764 this%ellips%f == that%ellips%f .AND. this%ellips%a == that%ellips%a
766 END FUNCTION geo_proj_eq
769 ELEMENTAL FUNCTION geo_proj_ne(this, that)
RESULT(ne)
770 TYPE(geo_proj),
INTENT(in) :: this, that