libsim Versione 7.1.11
|
◆ geo_coord_lt()
Logical less operator. Returns true if the first point lies to the west of the second or if lon is equal south Definizione alla linea 538 del file geo_coord_class.F90. 539 this%vsize = min(SIZE(lon), SIZE(lat))
540 ALLOCATE(this%ll(this%vsize,2))
541 this%ll(1:this%vsize,1) = lon(1:this%vsize)
542 this%ll(1:this%vsize,2) = lat(1:this%vsize)
543ELSE
544 this%vsize = 0
545 NULLIFY(this%ll)
546ENDIF
547this%vtype = 0 !?
548
|