├── .gitignore ├── MANIFEST.in ├── README.md ├── pawlowicz.changelog ├── setup.py ├── todo └── ttide ├── __init__.py ├── base.py ├── data ├── t_constituents_const.nc ├── t_constituents_sat.nc └── t_constituents_shallow.nc ├── t_18constituents_const.csv ├── t_18constituents_sat.csv ├── t_18constituents_shallow.csv ├── t_astron.py ├── t_getconsts.py ├── t_predic.py ├── t_tide.py ├── t_utils.py ├── t_vuf.py ├── tests ├── __init__.py ├── base.py ├── data │ ├── predict │ │ ├── 5constit.elev │ │ ├── 5constit.vel │ │ ├── M2-Stime.shallowM10 │ │ ├── M2.shallowM10 │ │ ├── M2only-Stime-lat.elev │ │ ├── M2only-Stime-lat.vel │ │ ├── M2only-Stime.elev │ │ ├── M2only-Stime.vel │ │ ├── M2only.elev │ │ ├── M2only.vel │ │ ├── NoArgs.elev │ │ ├── NoArgs.vel │ │ ├── NoOutput.elev │ │ ├── NoOutput.vel │ │ ├── PandasOut.elev │ │ └── PandasOut.vel │ └── print │ │ ├── 5constit.elev │ │ ├── 5constit.vel │ │ ├── M2-Stime.shallowM10 │ │ ├── M2.shallowM10 │ │ ├── M2only-Stime-lat.elev │ │ ├── M2only-Stime-lat.vel │ │ ├── M2only-Stime.elev │ │ ├── M2only-Stime.vel │ │ ├── M2only.elev │ │ ├── M2only.vel │ │ ├── NoArgs.elev │ │ ├── NoArgs.vel │ │ ├── NoOutput.elev │ │ ├── NoOutput.vel │ │ ├── PandasOut.elev │ │ └── PandasOut.vel ├── predict_tests.py └── print_tests.py └── time.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/README.md -------------------------------------------------------------------------------- /pawlowicz.changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/pawlowicz.changelog -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/setup.py -------------------------------------------------------------------------------- /todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/todo -------------------------------------------------------------------------------- /ttide/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/__init__.py -------------------------------------------------------------------------------- /ttide/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/base.py -------------------------------------------------------------------------------- /ttide/data/t_constituents_const.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/data/t_constituents_const.nc -------------------------------------------------------------------------------- /ttide/data/t_constituents_sat.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/data/t_constituents_sat.nc -------------------------------------------------------------------------------- /ttide/data/t_constituents_shallow.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/data/t_constituents_shallow.nc -------------------------------------------------------------------------------- /ttide/t_18constituents_const.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_18constituents_const.csv -------------------------------------------------------------------------------- /ttide/t_18constituents_sat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_18constituents_sat.csv -------------------------------------------------------------------------------- /ttide/t_18constituents_shallow.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_18constituents_shallow.csv -------------------------------------------------------------------------------- /ttide/t_astron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_astron.py -------------------------------------------------------------------------------- /ttide/t_getconsts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_getconsts.py -------------------------------------------------------------------------------- /ttide/t_predic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_predic.py -------------------------------------------------------------------------------- /ttide/t_tide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_tide.py -------------------------------------------------------------------------------- /ttide/t_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_utils.py -------------------------------------------------------------------------------- /ttide/t_vuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/t_vuf.py -------------------------------------------------------------------------------- /ttide/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ttide/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/base.py -------------------------------------------------------------------------------- /ttide/tests/data/predict/5constit.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/5constit.elev -------------------------------------------------------------------------------- /ttide/tests/data/predict/5constit.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/5constit.vel -------------------------------------------------------------------------------- /ttide/tests/data/predict/M2-Stime.shallowM10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/M2-Stime.shallowM10 -------------------------------------------------------------------------------- /ttide/tests/data/predict/M2.shallowM10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/M2.shallowM10 -------------------------------------------------------------------------------- /ttide/tests/data/predict/M2only-Stime-lat.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/M2only-Stime-lat.elev -------------------------------------------------------------------------------- /ttide/tests/data/predict/M2only-Stime-lat.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/M2only-Stime-lat.vel -------------------------------------------------------------------------------- /ttide/tests/data/predict/M2only-Stime.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/M2only-Stime.elev -------------------------------------------------------------------------------- /ttide/tests/data/predict/M2only-Stime.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/M2only-Stime.vel -------------------------------------------------------------------------------- /ttide/tests/data/predict/M2only.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/M2only.elev -------------------------------------------------------------------------------- /ttide/tests/data/predict/M2only.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/M2only.vel -------------------------------------------------------------------------------- /ttide/tests/data/predict/NoArgs.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/NoArgs.elev -------------------------------------------------------------------------------- /ttide/tests/data/predict/NoArgs.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/NoArgs.vel -------------------------------------------------------------------------------- /ttide/tests/data/predict/NoOutput.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/NoOutput.elev -------------------------------------------------------------------------------- /ttide/tests/data/predict/NoOutput.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/NoOutput.vel -------------------------------------------------------------------------------- /ttide/tests/data/predict/PandasOut.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/PandasOut.elev -------------------------------------------------------------------------------- /ttide/tests/data/predict/PandasOut.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/predict/PandasOut.vel -------------------------------------------------------------------------------- /ttide/tests/data/print/5constit.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/5constit.elev -------------------------------------------------------------------------------- /ttide/tests/data/print/5constit.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/5constit.vel -------------------------------------------------------------------------------- /ttide/tests/data/print/M2-Stime.shallowM10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/M2-Stime.shallowM10 -------------------------------------------------------------------------------- /ttide/tests/data/print/M2.shallowM10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/M2.shallowM10 -------------------------------------------------------------------------------- /ttide/tests/data/print/M2only-Stime-lat.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/M2only-Stime-lat.elev -------------------------------------------------------------------------------- /ttide/tests/data/print/M2only-Stime-lat.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/M2only-Stime-lat.vel -------------------------------------------------------------------------------- /ttide/tests/data/print/M2only-Stime.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/M2only-Stime.elev -------------------------------------------------------------------------------- /ttide/tests/data/print/M2only-Stime.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/M2only-Stime.vel -------------------------------------------------------------------------------- /ttide/tests/data/print/M2only.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/M2only.elev -------------------------------------------------------------------------------- /ttide/tests/data/print/M2only.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/M2only.vel -------------------------------------------------------------------------------- /ttide/tests/data/print/NoArgs.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/NoArgs.elev -------------------------------------------------------------------------------- /ttide/tests/data/print/NoArgs.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/NoArgs.vel -------------------------------------------------------------------------------- /ttide/tests/data/print/NoOutput.elev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ttide/tests/data/print/NoOutput.vel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ttide/tests/data/print/PandasOut.elev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/PandasOut.elev -------------------------------------------------------------------------------- /ttide/tests/data/print/PandasOut.vel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/data/print/PandasOut.vel -------------------------------------------------------------------------------- /ttide/tests/predict_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/predict_tests.py -------------------------------------------------------------------------------- /ttide/tests/print_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/tests/print_tests.py -------------------------------------------------------------------------------- /ttide/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moflaher/ttide_py/HEAD/ttide/time.py --------------------------------------------------------------------------------