#! /usr/bin/env julia

module constants

export REARTH, GMR, NTAB

const REARTH::Float64 = 6369.0 * 3280.84       # radius of the Earth (ft)
const GMR::Float64 = 34.163195 * (3280.84/1.8) # hydrostatic constant (deg R/ft)
const NTAB::Int64 = 8                          # number of entries in the
                                               # defining tables

end

