libsim  Versione7.2.6

◆ geo_proj_read_unit()

subroutine geo_proj_read_unit ( type(geo_proj), intent(out)  this,
integer, intent(in)  unit 
)

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]thisobject to be read
[in]unitunit from which to read, it must be an opened Fortran file unit

Definizione alla linea 761 del file geo_proj_class.F90.

761  this%polar%latin2 == that%polar%latin2 .AND. & ! intentionally not checked
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
765 
766 END FUNCTION geo_proj_eq
767 
768 
769 ELEMENTAL FUNCTION geo_proj_ne(this, that) RESULT(ne)
770 TYPE(geo_proj),INTENT(in) :: this, that
771 LOGICAL :: ne
772 

Generated with Doxygen.