├── .gitignore ├── EUPL v1_2 PT.txt ├── README ├── install.py ├── okean ├── __init__.py ├── air_sea.py ├── animflc.py ├── bin │ ├── disp │ ├── qstate │ ├── rgui │ ├── romsview │ ├── show │ └── show_nctime ├── calc.py ├── chull.py ├── cookbook.py ├── data │ ├── cities_more.txt │ ├── cities_world.txt │ └── ncview_cmaps │ │ ├── cmaps_ncview2mpl.py │ │ ├── colormaps.png │ │ ├── colormaps_3gauss.h │ │ ├── colormaps_3saw.h │ │ ├── colormaps_banded.h │ │ ├── colormaps_blu_red.h │ │ ├── colormaps_blue_red.h │ │ ├── colormaps_bright.h │ │ ├── colormaps_bw.h │ │ ├── colormaps_default.h │ │ ├── colormaps_detail.h │ │ ├── colormaps_extrema.h │ │ ├── colormaps_helix.h │ │ ├── colormaps_helix2.h │ │ ├── colormaps_hotres.h │ │ ├── colormaps_jaisn2.h │ │ ├── colormaps_jaisnb.h │ │ ├── colormaps_jaisnc.h │ │ ├── colormaps_jaisnd.h │ │ ├── colormaps_jaison.h │ │ ├── colormaps_jet.h │ │ ├── colormaps_manga.h │ │ ├── colormaps_rainbow.h │ │ ├── colormaps_roullet.h │ │ ├── colormaps_ssec.h │ │ └── colormaps_wheel.h ├── datasets │ ├── __init__.py │ ├── aoscat.py │ ├── ascat.py │ ├── ccmp.py │ ├── cfsr.py │ ├── cordex.py │ ├── era5.py │ ├── gfs.py │ ├── hycom.py │ ├── interim.py │ ├── interim_past.py │ ├── narr.py │ ├── ostia.py │ ├── rtg_sst.py │ ├── smos.py │ └── wrf.py ├── dateu.py ├── devel │ └── seta2d.py ├── ext │ ├── Makefile │ ├── README │ ├── alg.f │ ├── lu.f90 │ ├── pnpoly.c │ ├── pnpoly.f │ ├── pppack.f90 │ └── pppack.f90_original ├── filters.py ├── gnome.py ├── gribu.py ├── gshhg.py ├── gshhs.py ├── locations.py ├── misc │ └── hull_code.tar.gz ├── nc │ ├── __init__.py │ ├── ncdump.py │ ├── nctypes.py │ └── pync4.py ├── netcdf.py ├── netcdf_new.py ├── phys.py ├── pl_plots.py ├── pl_tools.py ├── projections.py ├── roms │ ├── __init__.py │ ├── derived.py │ ├── ext │ │ ├── Makefile │ │ ├── __init__.py │ │ └── rtools.f90 │ ├── glider.py │ ├── gui │ │ ├── __init__.py │ │ ├── gui_tools.py │ │ ├── icons │ │ │ ├── hov_off.gif │ │ │ ├── hov_off.png │ │ │ ├── hov_on.gif │ │ │ ├── hov_on.png │ │ │ ├── hov_over.gif │ │ │ ├── hov_over.png │ │ │ ├── nozoom_off.gif │ │ │ ├── nozoom_off.png │ │ │ ├── nozoom_on.gif │ │ │ ├── nozoom_on.png │ │ │ ├── nozoom_over.gif │ │ │ ├── nozoom_over.png │ │ │ ├── path_off.gif │ │ │ ├── path_off.png │ │ │ ├── path_on.gif │ │ │ ├── path_on.png │ │ │ ├── path_over.gif │ │ │ ├── path_over.png │ │ │ ├── pathm_off.gif │ │ │ ├── pathm_off.png │ │ │ ├── pathm_on.gif │ │ │ ├── pathm_on.png │ │ │ ├── pathm_over.gif │ │ │ ├── pathm_over.png │ │ │ ├── prof_off.gif │ │ │ ├── prof_off.png │ │ │ ├── prof_on.gif │ │ │ ├── prof_on.png │ │ │ ├── prof_over.gif │ │ │ ├── prof_over.png │ │ │ ├── ts_off.gif │ │ │ ├── ts_off.png │ │ │ ├── ts_on.gif │ │ │ ├── ts_on.png │ │ │ ├── ts_over.gif │ │ │ ├── ts_over.png │ │ │ ├── zoom_off.gif │ │ │ ├── zoom_off.png │ │ │ ├── zoom_off_.png │ │ │ ├── zoom_on.gif │ │ │ ├── zoom_on.png │ │ │ ├── zoom_on_.png │ │ │ ├── zoom_over.gif │ │ │ └── zoom_over.png │ │ ├── rgui.png │ │ ├── romsgui.derived │ │ └── romsgui.py │ ├── inputs │ │ ├── __init__.py │ │ ├── gennc.py │ │ ├── prognostic.py │ │ ├── rivers.py │ │ ├── roms2roms.py │ │ └── surface.py │ ├── roms.py │ └── roms_tools.py ├── ssa.py ├── swanu.py ├── telemac.py ├── ticks.py ├── util │ ├── __init__.py │ └── tidal_ellipse.py └── vis.py ├── set_version.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/.gitignore -------------------------------------------------------------------------------- /EUPL v1_2 PT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/EUPL v1_2 PT.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | readme file ... 2 | -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/install.py -------------------------------------------------------------------------------- /okean/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/__init__.py -------------------------------------------------------------------------------- /okean/air_sea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/air_sea.py -------------------------------------------------------------------------------- /okean/animflc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/animflc.py -------------------------------------------------------------------------------- /okean/bin/disp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/bin/disp -------------------------------------------------------------------------------- /okean/bin/qstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/bin/qstate -------------------------------------------------------------------------------- /okean/bin/rgui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/bin/rgui -------------------------------------------------------------------------------- /okean/bin/romsview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/bin/romsview -------------------------------------------------------------------------------- /okean/bin/show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/bin/show -------------------------------------------------------------------------------- /okean/bin/show_nctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/bin/show_nctime -------------------------------------------------------------------------------- /okean/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/calc.py -------------------------------------------------------------------------------- /okean/chull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/chull.py -------------------------------------------------------------------------------- /okean/cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/cookbook.py -------------------------------------------------------------------------------- /okean/data/cities_more.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/cities_more.txt -------------------------------------------------------------------------------- /okean/data/cities_world.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/cities_world.txt -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/cmaps_ncview2mpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/cmaps_ncview2mpl.py -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps.png -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_3gauss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_3gauss.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_3saw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_3saw.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_banded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_banded.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_blu_red.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_blu_red.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_blue_red.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_blue_red.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_bright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_bright.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_bw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_bw.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_default.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_detail.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_extrema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_extrema.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_helix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_helix.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_helix2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_helix2.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_hotres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_hotres.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_jaisn2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_jaisn2.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_jaisnb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_jaisnb.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_jaisnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_jaisnc.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_jaisnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_jaisnd.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_jaison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_jaison.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_jet.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_manga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_manga.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_rainbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_rainbow.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_roullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_roullet.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_ssec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_ssec.h -------------------------------------------------------------------------------- /okean/data/ncview_cmaps/colormaps_wheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/data/ncview_cmaps/colormaps_wheel.h -------------------------------------------------------------------------------- /okean/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | ''' 2 | ''' 3 | -------------------------------------------------------------------------------- /okean/datasets/aoscat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/aoscat.py -------------------------------------------------------------------------------- /okean/datasets/ascat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/ascat.py -------------------------------------------------------------------------------- /okean/datasets/ccmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/ccmp.py -------------------------------------------------------------------------------- /okean/datasets/cfsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/cfsr.py -------------------------------------------------------------------------------- /okean/datasets/cordex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/cordex.py -------------------------------------------------------------------------------- /okean/datasets/era5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/era5.py -------------------------------------------------------------------------------- /okean/datasets/gfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/gfs.py -------------------------------------------------------------------------------- /okean/datasets/hycom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/hycom.py -------------------------------------------------------------------------------- /okean/datasets/interim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/interim.py -------------------------------------------------------------------------------- /okean/datasets/interim_past.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/interim_past.py -------------------------------------------------------------------------------- /okean/datasets/narr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/narr.py -------------------------------------------------------------------------------- /okean/datasets/ostia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/ostia.py -------------------------------------------------------------------------------- /okean/datasets/rtg_sst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/rtg_sst.py -------------------------------------------------------------------------------- /okean/datasets/smos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/smos.py -------------------------------------------------------------------------------- /okean/datasets/wrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/datasets/wrf.py -------------------------------------------------------------------------------- /okean/dateu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/dateu.py -------------------------------------------------------------------------------- /okean/devel/seta2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/devel/seta2d.py -------------------------------------------------------------------------------- /okean/ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ext/Makefile -------------------------------------------------------------------------------- /okean/ext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ext/README -------------------------------------------------------------------------------- /okean/ext/alg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ext/alg.f -------------------------------------------------------------------------------- /okean/ext/lu.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ext/lu.f90 -------------------------------------------------------------------------------- /okean/ext/pnpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ext/pnpoly.c -------------------------------------------------------------------------------- /okean/ext/pnpoly.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ext/pnpoly.f -------------------------------------------------------------------------------- /okean/ext/pppack.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ext/pppack.f90 -------------------------------------------------------------------------------- /okean/ext/pppack.f90_original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ext/pppack.f90_original -------------------------------------------------------------------------------- /okean/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/filters.py -------------------------------------------------------------------------------- /okean/gnome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/gnome.py -------------------------------------------------------------------------------- /okean/gribu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/gribu.py -------------------------------------------------------------------------------- /okean/gshhg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/gshhg.py -------------------------------------------------------------------------------- /okean/gshhs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/gshhs.py -------------------------------------------------------------------------------- /okean/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/locations.py -------------------------------------------------------------------------------- /okean/misc/hull_code.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/misc/hull_code.tar.gz -------------------------------------------------------------------------------- /okean/nc/__init__.py: -------------------------------------------------------------------------------- 1 | '''netcdf utilities 2 | 3 | ''' 4 | -------------------------------------------------------------------------------- /okean/nc/ncdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/nc/ncdump.py -------------------------------------------------------------------------------- /okean/nc/nctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/nc/nctypes.py -------------------------------------------------------------------------------- /okean/nc/pync4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/nc/pync4.py -------------------------------------------------------------------------------- /okean/netcdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/netcdf.py -------------------------------------------------------------------------------- /okean/netcdf_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/netcdf_new.py -------------------------------------------------------------------------------- /okean/phys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/phys.py -------------------------------------------------------------------------------- /okean/pl_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/pl_plots.py -------------------------------------------------------------------------------- /okean/pl_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/pl_tools.py -------------------------------------------------------------------------------- /okean/projections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/projections.py -------------------------------------------------------------------------------- /okean/roms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/__init__.py -------------------------------------------------------------------------------- /okean/roms/derived.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/derived.py -------------------------------------------------------------------------------- /okean/roms/ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/ext/Makefile -------------------------------------------------------------------------------- /okean/roms/ext/__init__.py: -------------------------------------------------------------------------------- 1 | ''' 2 | ''' 3 | -------------------------------------------------------------------------------- /okean/roms/ext/rtools.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/ext/rtools.f90 -------------------------------------------------------------------------------- /okean/roms/glider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/glider.py -------------------------------------------------------------------------------- /okean/roms/gui/__init__.py: -------------------------------------------------------------------------------- 1 | ''' 2 | ''' 3 | -------------------------------------------------------------------------------- /okean/roms/gui/gui_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/gui_tools.py -------------------------------------------------------------------------------- /okean/roms/gui/icons/hov_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/hov_off.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/hov_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/hov_off.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/hov_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/hov_on.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/hov_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/hov_on.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/hov_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/hov_over.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/hov_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/hov_over.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/nozoom_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/nozoom_off.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/nozoom_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/nozoom_off.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/nozoom_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/nozoom_on.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/nozoom_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/nozoom_on.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/nozoom_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/nozoom_over.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/nozoom_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/nozoom_over.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/path_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/path_off.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/path_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/path_off.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/path_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/path_on.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/path_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/path_on.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/path_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/path_over.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/path_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/path_over.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/pathm_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/pathm_off.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/pathm_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/pathm_off.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/pathm_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/pathm_on.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/pathm_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/pathm_on.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/pathm_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/pathm_over.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/pathm_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/pathm_over.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/prof_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/prof_off.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/prof_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/prof_off.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/prof_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/prof_on.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/prof_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/prof_on.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/prof_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/prof_over.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/prof_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/prof_over.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/ts_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/ts_off.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/ts_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/ts_off.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/ts_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/ts_on.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/ts_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/ts_on.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/ts_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/ts_over.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/ts_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/ts_over.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/zoom_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/zoom_off.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/zoom_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/zoom_off.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/zoom_off_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/zoom_off_.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/zoom_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/zoom_on.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/zoom_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/zoom_on.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/zoom_on_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/zoom_on_.png -------------------------------------------------------------------------------- /okean/roms/gui/icons/zoom_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/zoom_over.gif -------------------------------------------------------------------------------- /okean/roms/gui/icons/zoom_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/icons/zoom_over.png -------------------------------------------------------------------------------- /okean/roms/gui/rgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/rgui.png -------------------------------------------------------------------------------- /okean/roms/gui/romsgui.derived: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/romsgui.derived -------------------------------------------------------------------------------- /okean/roms/gui/romsgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/gui/romsgui.py -------------------------------------------------------------------------------- /okean/roms/inputs/__init__.py: -------------------------------------------------------------------------------- 1 | """ roms from py_pack 2 | 3 | """ 4 | 5 | -------------------------------------------------------------------------------- /okean/roms/inputs/gennc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/inputs/gennc.py -------------------------------------------------------------------------------- /okean/roms/inputs/prognostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/inputs/prognostic.py -------------------------------------------------------------------------------- /okean/roms/inputs/rivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/inputs/rivers.py -------------------------------------------------------------------------------- /okean/roms/inputs/roms2roms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/inputs/roms2roms.py -------------------------------------------------------------------------------- /okean/roms/inputs/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/inputs/surface.py -------------------------------------------------------------------------------- /okean/roms/roms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/roms.py -------------------------------------------------------------------------------- /okean/roms/roms_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/roms/roms_tools.py -------------------------------------------------------------------------------- /okean/ssa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ssa.py -------------------------------------------------------------------------------- /okean/swanu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/swanu.py -------------------------------------------------------------------------------- /okean/telemac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/telemac.py -------------------------------------------------------------------------------- /okean/ticks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/ticks.py -------------------------------------------------------------------------------- /okean/util/__init__.py: -------------------------------------------------------------------------------- 1 | '''some utilities... probably from other authors 2 | ''' 3 | -------------------------------------------------------------------------------- /okean/util/tidal_ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/util/tidal_ellipse.py -------------------------------------------------------------------------------- /okean/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/okean/vis.py -------------------------------------------------------------------------------- /set_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/set_version.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martalmeida/okean/HEAD/setup.py --------------------------------------------------------------------------------