├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── SingleTime.py └── TimeSeries.py ├── longmantide ├── __init__.py ├── longmantide.py └── tests │ ├── __init__.py │ └── test_longmantide.py ├── setup.py └── tests └── test_basics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/README.md -------------------------------------------------------------------------------- /examples/SingleTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/examples/SingleTime.py -------------------------------------------------------------------------------- /examples/TimeSeries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/examples/TimeSeries.py -------------------------------------------------------------------------------- /longmantide/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longmantide/longmantide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/longmantide/longmantide.py -------------------------------------------------------------------------------- /longmantide/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /longmantide/tests/test_longmantide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/longmantide/tests/test_longmantide.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrleeman/LongmanTide/HEAD/tests/test_basics.py --------------------------------------------------------------------------------