Changeset 3618 for palm/trunk/UTIL/inifor/src/inifor_transform.f90
- Timestamp:
- Dec 10, 2018 1:25:22 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/UTIL/inifor/src/inifor_transform.f90
r3615 r3618 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Prefixed all INIFOR modules with inifor_, removed unused variables 29 ! 30 ! 31 ! 3615 2018-12-10 07:21:03Z raasch 28 32 ! bugfix: abort replaced by inifor_abort 29 33 ! … … 76 80 !> int2lm's utility routines. 77 81 !------------------------------------------------------------------------------! 78 MODULE transform79 80 USE control81 USE defs,&82 MODULE inifor_transform 83 84 USE inifor_control 85 USE inifor_defs, & 82 86 ONLY: G, TO_DEGREES, TO_RADIANS, PI, dp 83 USE types84 USE util, &87 USE inifor_types 88 USE inifor_util, & 85 89 ONLY: real_to_str, str 86 90 … … 622 626 lamr(i) * TO_DEGREES, & 623 627 phip * TO_DEGREES, & 624 lamp * TO_DEGREES, &625 628 gam * TO_DEGREES) * TO_RADIANS 626 629 … … 1162 1165 !> Compute the geographical latitude of a point given in rotated-pole cordinates 1163 1166 !------------------------------------------------------------------------------! 1164 FUNCTION phirot2phi (phirot, rlarot, polphi, pol lam, polgam)1167 FUNCTION phirot2phi (phirot, rlarot, polphi, polgam) 1165 1168 1166 1169 REAL(dp), INTENT (IN) :: polphi !< latitude of the rotated north pole 1167 REAL(dp), INTENT (IN) :: pollam !< longitude of the rotated north pole1168 1170 REAL(dp), INTENT (IN) :: phirot !< latitude in the rotated system 1169 1171 REAL(dp), INTENT (IN) :: rlarot !< longitude in the rotated system … … 1396 1398 END SUBROUTINE uvrot2uv 1397 1399 1398 END MODULE 1399 1400 END MODULE inifor_transform 1401
Note: See TracChangeset
for help on using the changeset viewer.