Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 1.99 KB

compute.rst

File metadata and controls

56 lines (37 loc) · 1.99 KB

compute

  • Calculates tidal elevations at points and times
    • Can use OTIS format tidal solutions provided by Ohio State University and ESR
    • Can use Global Tide Model (GOT) solutions provided by Richard Ray at GSFC
    • Can use Finite Element Solution (FES) models provided by AVISO
  • Calculates tidal currents at points and times
    • Can use OTIS format tidal solutions provided by Ohio State University and ESR
    • Can use Finite Element Solution (FES) models provided by AVISO
  • Calculates long-period equilibrium tides (LPET) at points and times
  • Calculates radial pole load tides (LPT) at points and times
  • Calculates radial ocean pole load tides (OPT) at points and times
  • Calculates radial solid earth tides (SET) at points and times

Calling Sequence

import pyTMD
tide_h = pyTMD.compute.tide_elevations(x, y, delta_time,
    DIRECTORY=DIRECTORY, MODEL=MODEL, EPOCH=(2000,1,1,0,0,0),
    EPSG=3031, TYPE='drift')
tide_uv = pyTMD.compute.tide_currents(x, y, delta_time,
    DIRECTORY=DIRECTORY, MODEL=MODEL, EPOCH=(2000,1,1,0,0,0),
    EPSG=3031, TYPE='drift')

Source code

pyTMD.compute.corrections

pyTMD.compute.tide_elevations

pyTMD.compute.tide_currents

pyTMD.compute.LPET_elevations

pyTMD.compute.LPT_displacements

pyTMD.compute.OPT_displacements

pyTMD.compute.SET_displacements