NCEPLIBS-ip 5.3.0
All Data Structures Namespaces Files Functions Variables Pages
ip_constants_mod.F90
Go to the documentation of this file.
1!> @file
2!! @brief Constants for use in NCEPLIBS-ip.
3!! @author Kyle Gerheiser, George Gayno, Alex Richert
4!! @date July 2021
5
6!> @brief Module containing common constants.
7!!
8!! @author Kyle Gerheiser, George Gayno, Alex Richert
10 implicit none
11
12 public
13
14 real, parameter :: pi=3.14159265358979 !< PI
15 real, parameter :: dpr=180.0/pi !< Radians to degrees
16 real, parameter :: pi2=pi/2.0 !< PI / 2.0
17 real, parameter :: pi4=pi/4.0 !< PI / 4.0
18 real, parameter :: rerth_wgs84=6.378137e6 !< Radius of the Earth defined by WGS-84
19 real, parameter :: e2_wgs84 = 0.00669437999013 !< Eccentricity squared of Earth defined by WGS-84
20
21end module ip_constants_mod
22
Module containing common constants.
real, parameter pi2
PI / 2.0.
real, parameter pi
PI.
real, parameter pi4
PI / 4.0.
real, parameter rerth_wgs84
Radius of the Earth defined by WGS-84.
real, parameter dpr
Radians to degrees.
real, parameter e2_wgs84
Eccentricity squared of Earth defined by WGS-84.