libsim Versione 7.2.0
|
◆ geo_proj_set_val()
Definizione alla linea 678 del file geo_proj_class.F90. 684 this%polar%latin2, this%lov, this%polar%lad, &
685 this%polar%projection_center_flag)
686
687CASE("polar_stereographic")
688 CALL proj_polar_stereographic(lon, lat, x, y, this%lov, &
689 this%polar%lad, this%polar%projection_center_flag)
690
691CASE("mercator")
692 CALL proj_mercator(lon, lat, x, y, this%lov, this%polar%lad)
693
694CASE("UTM")
695 CALL proj_utm(lon, lat, x, y, this%lov, this%xoff, this%yoff, this%ellips)
696
697CASE default
698 x = dmiss
699 y = dmiss
700
701END SELECT
702
703END SUBROUTINE geo_proj_proj
704
705
708ELEMENTAL SUBROUTINE geo_proj_unproj(this, x, y, lon, lat)
709TYPE(geo_proj),INTENT(in) :: this
711DOUBLE PRECISION, INTENT(in) :: x, y
713DOUBLE PRECISION, INTENT(out) :: lon, lat
714
715SELECT CASE(this%proj_type)
716
717CASE("regular_ll")
718 CALL unproj_regular_ll(x, y, lon, lat)
719
720CASE("rotated_ll")
721 CALL unproj_rotated_ll(x, y, lon, lat, this%rotated%longitude_south_pole, &
722 this%rotated%latitude_south_pole, this%rotated%angle_rotation)
723
724CASE("lambert")
725 CALL unproj_lambert(x, y, lon, lat, this%polar%latin1, &
726 this%polar%latin2, this%lov, this%polar%lad, &
727 this%polar%projection_center_flag)
728
729CASE("polar_stereographic")
730 CALL unproj_polar_stereographic(x, y, lon, lat, this%lov, &
731 this%polar%lad, this%polar%projection_center_flag)
732
733CASE("mercator")
|