Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# pip installer
*.egg-info

# vim
.*.swp

# python
*.pyc
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: python
python:
- 2.7
- 3.2
matrix:
fast_finish: true
allow_failures:
- python: 3.2
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy python-scipy python3-numpy python3-scipy
install:
- LAPACK=/usr/lib/liblapack.so ATLAS=/usr/lib/libatlas.so BLAS=/usr/lib/libblas.so pip install -r requirements_for_travis.txt
script:
- ./run_tests.sh
notifications:
email: false
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pytides
=======
[![Build Status](https://travis-ci.org/sam-cox/pytides.svg)](https://travis-ci.org/sam-cox/pytides)
####About
Pytides is small Python package for the analysis and prediction of tides. Pytides can be used to extrapolate the tidal behaviour at a given location from its previous behaviour. The method used is that of harmonic constituents, in particular as presented by P. Schureman in Special Publication 98. The fitting of amplitudes and phases is handled by Scipy's leastsq minimisation function. Pytides currently supports the constituents used by NOAA, with plans to add more constituent sets. It is therefore possible to use the amplitudes and phases published by NOAA directly, without the need to perform the analysis again (although there may be slight discrepancies for some constituents).

Expand Down
Loading