├── .readthedocs.yaml ├── LICENSE ├── MATLAB Functions ├── __init__.m ├── add_scientimate_to_path.m ├── colormap │ ├── gencolormap.m │ ├── seqcolormap.m │ └── topocolormap.m ├── data_downloading │ ├── downloadndbcdata.m │ └── downloadtidecurrentdata.m ├── data_manipulating │ ├── downsamplex.m │ ├── downsamplexy.m │ ├── downsamplexyz.m │ ├── interpgrid2xyz.m │ ├── interpxyz2grid.m │ ├── interpxyz2xyz.m │ ├── replacemissing1d.m │ ├── replacemissing2d.m │ ├── replaceoutlier.m │ ├── replacespike3dps.m │ ├── replacespikediff.m │ └── replacespikeenvelope.m ├── data_reading │ ├── readdatafile.m │ └── readxyzfile.m ├── hurricane │ ├── hurricanebackgroundwind.m │ ├── hurricanedpcpt.m │ ├── hurricanepressureh80.m │ ├── hurricanetranslationvel.m │ ├── hurricanewavecontourcem.m │ ├── hurricanewavecontourh16.m │ ├── hurricanewavecontoury88.m │ ├── hurricanewavemax.m │ ├── hurricanewindh08.m │ ├── hurricanewindh80.m │ ├── hurricanewindinflowangle.m │ ├── hurricanewindvel.m │ ├── hurricanewindvelmax.m │ ├── hurricanewindvelmaxh08.m │ ├── hurricanewindvelmaxh80.m │ ├── readnhchurricane.m │ └── stormsurge1d.m ├── mapping │ ├── convertdir.m │ ├── distancecart.m │ ├── distancegc.m │ ├── endpointcart.m │ ├── globalrelief.m │ ├── gridgenerator.m │ ├── intersectgc.m │ ├── intersectlineedge.m │ ├── pointscart.m │ ├── reckongc.m │ ├── waypointsgc.m │ ├── windfetch.m │ └── zprofilepath.m ├── ocean_wave_data_analysis │ ├── diagnostictail.m │ ├── pressure2surfaceelevfft.m │ ├── pressure2surfaceelevzcross.m │ ├── seaswell1d.m │ ├── velocity2surfaceelevfft.m │ ├── velocity2surfaceelevzcross.m │ ├── wavefrompressurepsd.m │ ├── wavefrompressurezcross.m │ ├── wavefromsurfaceelevpsd.m │ ├── wavefromsurfaceelevzcross.m │ ├── wavefromvelocitypsd.m │ ├── wavefromvelocityzcross.m │ └── wavepropfrompsd.m ├── ocean_wave_directional_analysis │ ├── directionalpsd.m │ ├── directionalpsdetauv.m │ ├── directionalpsdpuv.m │ ├── enu2truenorth.m │ ├── wavediretauv.m │ └── wavedirpuv.m ├── ocean_wave_parametric_model │ ├── asymptlimit.m │ ├── equivalentfetchdeep.m │ ├── equivalentfetchshallow.m │ ├── fullydevwave.m │ ├── mindurationdeep.m │ ├── mindurationshallow.m │ ├── parametricwavedeep.m │ ├── parametricwaveshallow.m │ ├── wavedim2dimless.m │ └── wavedimless2dim.m ├── ocean_wave_properties │ ├── incidentreflectedwave.m │ ├── linearwavegenerator.m │ ├── linearwavesuperposition.m │ ├── pressureresponse.m │ ├── stokeswavegenerator.m │ ├── stokeswavesuperposition.m │ ├── wavebedstress.m │ ├── wavedispersion.m │ ├── wavedispersionds.m │ ├── waveorbitalvelocity.m │ ├── wavepower.m │ ├── wavepowerfrompsd.m │ ├── wavespectrum2timeseries.m │ └── wavevel2wlconvfactor.m ├── ocean_wave_spectrum │ ├── bretpsd.m │ ├── donelanpsd.m │ ├── jonswappsd.m │ ├── pmpsd.m │ └── tmapsd.m ├── plotting │ ├── plot2d.m │ ├── plot2dsubplot.m │ ├── plot2dtimeseries.m │ ├── plot3d.m │ ├── plot3ddem.m │ ├── plot3dhillshades.m │ └── plot3dtopo.m ├── remove_scientimate_from_path.m ├── signal_processing │ ├── bartlettpsd.m │ ├── fftfrequency.m │ ├── filtertimeseries.m │ ├── periodogrampsd.m │ ├── psd2timeseries.m │ ├── smoothsignal.m │ ├── spectrogrampsd.m │ └── welchpsd.m ├── statistics │ ├── curvefit2d.m │ ├── curvefit3d.m │ ├── dataoverview.m │ ├── findextremum.m │ ├── findknn.m │ ├── fitgoodness.m │ ├── levelcrossing.m │ ├── movingwindow.m │ ├── probability1d.m │ ├── probability2d.m │ └── similaritymeasure.m ├── swan_wave_model │ ├── swandepthgrid.m │ ├── swanvectorvarspconst.m │ ├── swanvectorvarspvariedgrid.m │ ├── swanvectorvarspvariedsct.m │ ├── swanwaterlevelspconst.m │ ├── swanwaterlevelspvariedgrid.m │ ├── swanwaterlevelspvariedsct.m │ ├── swanwindspconst.m │ ├── swanwindspvariedgrid.m │ └── swanwindspvariedsct.m └── wind_engineering │ ├── directionavg.m │ ├── smoothwind.m │ ├── surfaceroughness.m │ ├── sustainedwindduration.m │ ├── windavg.m │ ├── winddrag.m │ ├── windgustfactor.m │ ├── windspectrum.m │ ├── windspectrum2timeseries.m │ └── windvelz1toz2.m ├── Python Functions ├── __init__.py ├── colormap │ ├── __init__.py │ ├── gencolormap.py │ ├── seqcolormap.py │ └── topocolormap.py ├── data_downloading │ ├── __init__.py │ ├── downloadndbcdata.py │ └── downloadtidecurrentdata.py ├── data_manipulating │ ├── __init__.py │ ├── downsamplex.py │ ├── downsamplexy.py │ ├── downsamplexyz.py │ ├── interpgrid2xyz.py │ ├── interpxyz2grid.py │ ├── interpxyz2xyz.py │ ├── replacemissing1d.py │ ├── replacemissing2d.py │ ├── replaceoutlier.py │ ├── replacespike3dps.py │ ├── replacespikediff.py │ └── replacespikeenvelope.py ├── data_reading │ ├── __init__.py │ ├── readasciitable.py │ ├── readdatafile.py │ ├── readtimeseriestable.py │ └── readxyzfile.py ├── hurricane │ ├── __init__.py │ ├── hurricanebackgroundwind.py │ ├── hurricanedpcpt.py │ ├── hurricanepressureh80.py │ ├── hurricanetranslationvel.py │ ├── hurricanewavecontourcem.py │ ├── hurricanewavecontourh16.py │ ├── hurricanewavecontoury88.py │ ├── hurricanewavemax.py │ ├── hurricanewindh08.py │ ├── hurricanewindh80.py │ ├── hurricanewindinflowangle.py │ ├── hurricanewindvel.py │ ├── hurricanewindvelmax.py │ ├── hurricanewindvelmaxh08.py │ ├── hurricanewindvelmaxh80.py │ ├── readnhchurricane.py │ └── stormsurge1d.py ├── mapping │ ├── __init__.py │ ├── convertdir.py │ ├── distancecart.py │ ├── distancegc.py │ ├── endpointcart.py │ ├── globalrelief.py │ ├── gridgenerator.py │ ├── intersectgc.py │ ├── intersectlineedge.py │ ├── pointscart.py │ ├── reckongc.py │ ├── waypointsgc.py │ ├── windfetch.py │ └── zprofilepath.py ├── ocean_wave_data_analysis │ ├── __init__.py │ ├── diagnostictail.py │ ├── pressure2surfaceelevfft.py │ ├── pressure2surfaceelevzcross.py │ ├── seaswell1d.py │ ├── velocity2surfaceelevfft.py │ ├── velocity2surfaceelevzcross.py │ ├── wavefrompressurepsd.py │ ├── wavefrompressurezcross.py │ ├── wavefromsurfaceelevpsd.py │ ├── wavefromsurfaceelevzcross.py │ ├── wavefromvelocitypsd.py │ ├── wavefromvelocityzcross.py │ └── wavepropfrompsd.py ├── ocean_wave_directional_analysis │ ├── __init__.py │ ├── directionalpsd.py │ ├── directionalpsdetauv.py │ ├── directionalpsdpuv.py │ ├── enu2truenorth.py │ ├── wavediretauv.py │ └── wavedirpuv.py ├── ocean_wave_parametric_model │ ├── __init__.py │ ├── asymptlimit.py │ ├── equivalentfetchdeep.py │ ├── equivalentfetchshallow.py │ ├── fullydevwave.py │ ├── mindurationdeep.py │ ├── mindurationshallow.py │ ├── parametricwavedeep.py │ ├── parametricwaveshallow.py │ ├── wavedim2dimless.py │ └── wavedimless2dim.py ├── ocean_wave_properties │ ├── __init__.py │ ├── incidentreflectedwave.py │ ├── linearwavegenerator.py │ ├── linearwavesuperposition.py │ ├── pressureresponse.py │ ├── stokeswavegenerator.py │ ├── stokeswavesuperposition.py │ ├── wavebedstress.py │ ├── wavedispersion.py │ ├── wavedispersionds.py │ ├── waveorbitalvelocity.py │ ├── wavepower.py │ ├── wavepowerfrompsd.py │ ├── wavespectrum2timeseries.py │ └── wavevel2wlconvfactor.py ├── ocean_wave_spectrum │ ├── __init__.py │ ├── bretpsd.py │ ├── donelanpsd.py │ ├── jonswappsd.py │ ├── pmpsd.py │ └── tmapsd.py ├── plotting │ ├── __init__.py │ ├── plot2d.py │ ├── plot2dsubplot.py │ ├── plot2dtimeseries.py │ ├── plot3d.py │ ├── plot3ddem.py │ ├── plot3dhillshades.py │ └── plot3dtopo.py ├── signal_processing │ ├── __init__.py │ ├── bartlettpsd.py │ ├── fftfrequency.py │ ├── filtertimeseries.py │ ├── periodogrampsd.py │ ├── psd2timeseries.py │ ├── smoothsignal.py │ ├── spectrogrampsd.py │ └── welchpsd.py ├── statistics │ ├── __init__.py │ ├── curvefit2d.py │ ├── curvefit3d.py │ ├── dataoverview.py │ ├── findextremum.py │ ├── findknn.py │ ├── fitgoodness.py │ ├── levelcrossing.py │ ├── movingwindow.py │ ├── probability1d.py │ ├── probability2d.py │ └── similaritymeasure.py ├── swan_wave_model │ ├── __init__.py │ ├── swandepthgrid.py │ ├── swanvectorvarspconst.py │ ├── swanvectorvarspvariedgrid.py │ ├── swanvectorvarspvariedsct.py │ ├── swanwaterlevelspconst.py │ ├── swanwaterlevelspvariedgrid.py │ ├── swanwaterlevelspvariedsct.py │ ├── swanwindspconst.py │ ├── swanwindspvariedgrid.py │ └── swanwindspvariedsct.py └── wind_engineering │ ├── __init__.py │ ├── directionavg.py │ ├── smoothwind.py │ ├── surfaceroughness.py │ ├── sustainedwindduration.py │ ├── windavg.py │ ├── winddrag.py │ ├── windgustfactor.py │ ├── windspectrum.py │ ├── windspectrum2timeseries.py │ └── windvelz1toz2.py ├── README.rst ├── docs ├── 1_Introduction.rst ├── 2_Getting_Started_Matlab.rst ├── 3_Getting_Started_Python.rst ├── 4_Functions_List_Matlab.rst ├── 5_Functions_List_Python.rst ├── 6_Changelog.rst ├── 7_Contribute.rst ├── Makefile ├── conf.py ├── figures │ ├── Figure_AsanPlot_Screenshot.jpg │ ├── Figure_Book_Coastal.jpg │ ├── Figure_Book_Matlab.jpg │ ├── Figure_Book_Python.jpg │ ├── Figure_Oceanlyz_Logo.png │ └── Figure_ScientiMate_Logo.png ├── index.rst ├── make.bat ├── matlab_functions │ ├── colormap │ │ ├── gencolormap.rst │ │ ├── seqcolormap.rst │ │ └── topocolormap.rst │ ├── data_downloading │ │ ├── downloadndbcdata.rst │ │ └── downloadtidecurrentdata.rst │ ├── data_manipulating │ │ ├── downsamplex.rst │ │ ├── downsamplexy.rst │ │ ├── downsamplexyz.rst │ │ ├── interpgrid2xyz.rst │ │ ├── interpxyz2grid.rst │ │ ├── interpxyz2xyz.rst │ │ ├── replacemissing1d.rst │ │ ├── replacemissing2d.rst │ │ ├── replaceoutlier.rst │ │ ├── replacespike3dps.rst │ │ ├── replacespikediff.rst │ │ └── replacespikeenvelope.rst │ ├── data_reading │ │ ├── readdatafile.rst │ │ └── readxyzfile.rst │ ├── hurricane │ │ ├── hurricanebackgroundwind.rst │ │ ├── hurricanedpcpt.rst │ │ ├── hurricanepressureh80.rst │ │ ├── hurricanetranslationvel.rst │ │ ├── hurricanewavecontourcem.rst │ │ ├── hurricanewavecontourh16.rst │ │ ├── hurricanewavecontoury88.rst │ │ ├── hurricanewavemax.rst │ │ ├── hurricanewindh08.rst │ │ ├── hurricanewindh80.rst │ │ ├── hurricanewindinflowangle.rst │ │ ├── hurricanewindvel.rst │ │ ├── hurricanewindvelmax.rst │ │ ├── hurricanewindvelmaxh08.rst │ │ ├── hurricanewindvelmaxh80.rst │ │ ├── readnhchurricane.rst │ │ └── stormsurge1d.rst │ ├── mapping │ │ ├── convertdir.rst │ │ ├── distancecart.rst │ │ ├── distancegc.rst │ │ ├── endpointcart.rst │ │ ├── globalrelief.rst │ │ ├── gridgenerator.rst │ │ ├── intersectgc.rst │ │ ├── intersectlineedge.rst │ │ ├── pointscart.rst │ │ ├── reckongc.rst │ │ ├── waypointsgc.rst │ │ ├── windfetch.rst │ │ └── zprofilepath.rst │ ├── ocean_wave_data_analysis │ │ ├── diagnostictail.rst │ │ ├── pressure2surfaceelevfft.rst │ │ ├── pressure2surfaceelevzcross.rst │ │ ├── seaswell1d.rst │ │ ├── velocity2surfaceelevfft.rst │ │ ├── velocity2surfaceelevzcross.rst │ │ ├── wavefrompressurepsd.rst │ │ ├── wavefrompressurezcross.rst │ │ ├── wavefromsurfaceelevpsd.rst │ │ ├── wavefromsurfaceelevzcross.rst │ │ ├── wavefromvelocitypsd.rst │ │ ├── wavefromvelocityzcross.rst │ │ └── wavepropfrompsd.rst │ ├── ocean_wave_directional_analysis │ │ ├── directionalpsd.rst │ │ ├── directionalpsdetauv.rst │ │ ├── directionalpsdpuv.rst │ │ ├── enu2truenorth.rst │ │ ├── wavediretauv.rst │ │ └── wavedirpuv.rst │ ├── ocean_wave_parametric_model │ │ ├── asymptlimit.rst │ │ ├── equivalentfetchdeep.rst │ │ ├── equivalentfetchshallow.rst │ │ ├── fullydevwave.rst │ │ ├── mindurationdeep.rst │ │ ├── mindurationshallow.rst │ │ ├── parametricwavedeep.rst │ │ ├── parametricwaveshallow.rst │ │ ├── wavedim2dimless.rst │ │ └── wavedimless2dim.rst │ ├── ocean_wave_properties │ │ ├── incidentreflectedwave.rst │ │ ├── linearwavegenerator.rst │ │ ├── linearwavesuperposition.rst │ │ ├── pressureresponse.rst │ │ ├── stokeswavegenerator.rst │ │ ├── stokeswavesuperposition.rst │ │ ├── wavebedstress.rst │ │ ├── wavedispersion.rst │ │ ├── wavedispersionds.rst │ │ ├── waveorbitalvelocity.rst │ │ ├── wavepower.rst │ │ ├── wavepowerfrompsd.rst │ │ ├── wavespectrum2timeseries.rst │ │ └── wavevel2wlconvfactor.rst │ ├── ocean_wave_spectrum │ │ ├── bretpsd.rst │ │ ├── donelanpsd.rst │ │ ├── jonswappsd.rst │ │ ├── pmpsd.rst │ │ └── tmapsd.rst │ ├── plotting │ │ ├── plot2d.rst │ │ ├── plot2dsubplot.rst │ │ ├── plot2dtimeseries.rst │ │ ├── plot3d.rst │ │ ├── plot3ddem.rst │ │ ├── plot3dhillshades.rst │ │ └── plot3dtopo.rst │ ├── signal_processing │ │ ├── bartlettpsd.rst │ │ ├── fftfrequency.rst │ │ ├── filtertimeseries.rst │ │ ├── periodogrampsd.rst │ │ ├── psd2timeseries.rst │ │ ├── smoothsignal.rst │ │ ├── spectrogrampsd.rst │ │ └── welchpsd.rst │ ├── statistics │ │ ├── curvefit2d.rst │ │ ├── curvefit3d.rst │ │ ├── dataoverview.rst │ │ ├── findextremum.rst │ │ ├── findknn.rst │ │ ├── fitgoodness.rst │ │ ├── levelcrossing.rst │ │ ├── movingwindow.rst │ │ ├── probability1d.rst │ │ ├── probability2d.rst │ │ └── similaritymeasure.rst │ ├── swan_wave_model │ │ ├── swandepthgrid.rst │ │ ├── swanvectorvarspconst.rst │ │ ├── swanvectorvarspvariedgrid.rst │ │ ├── swanvectorvarspvariedsct.rst │ │ ├── swanwaterlevelspconst.rst │ │ ├── swanwaterlevelspvariedgrid.rst │ │ ├── swanwaterlevelspvariedsct.rst │ │ ├── swanwindspconst.rst │ │ ├── swanwindspvariedgrid.rst │ │ └── swanwindspvariedsct.rst │ └── wind_engineering │ │ ├── directionavg.rst │ │ ├── smoothwind.rst │ │ ├── surfaceroughness.rst │ │ ├── sustainedwindduration.rst │ │ ├── windavg.rst │ │ ├── winddrag.rst │ │ ├── windgustfactor.rst │ │ ├── windspectrum.rst │ │ ├── windspectrum2timeseries.rst │ │ └── windvelz1toz2.rst ├── python_functions │ ├── colormap │ │ ├── gencolormap.rst │ │ ├── seqcolormap.rst │ │ └── topocolormap.rst │ ├── data_downloading │ │ ├── downloadndbcdata.rst │ │ └── downloadtidecurrentdata.rst │ ├── data_manipulating │ │ ├── downsamplex.rst │ │ ├── downsamplexy.rst │ │ ├── downsamplexyz.rst │ │ ├── interpgrid2xyz.rst │ │ ├── interpxyz2grid.rst │ │ ├── interpxyz2xyz.rst │ │ ├── replacemissing1d.rst │ │ ├── replacemissing2d.rst │ │ ├── replaceoutlier.rst │ │ ├── replacespike3dps.rst │ │ ├── replacespikediff.rst │ │ └── replacespikeenvelope.rst │ ├── data_reading │ │ ├── readasciitable.rst │ │ ├── readdatafile.rst │ │ ├── readtimeseriesfile.rst │ │ └── readxyzfile.rst │ ├── hurricane │ │ ├── hurricanebackgroundwind.rst │ │ ├── hurricanedpcpt.rst │ │ ├── hurricanepressureh80.rst │ │ ├── hurricanetranslationvel.rst │ │ ├── hurricanewavecontourcem.rst │ │ ├── hurricanewavecontourh16.rst │ │ ├── hurricanewavecontoury88.rst │ │ ├── hurricanewavemax.rst │ │ ├── hurricanewindh08.rst │ │ ├── hurricanewindh80.rst │ │ ├── hurricanewindinflowangle.rst │ │ ├── hurricanewindvel.rst │ │ ├── hurricanewindvelmax.rst │ │ ├── hurricanewindvelmaxh08.rst │ │ ├── hurricanewindvelmaxh80.rst │ │ ├── readnhchurricane.rst │ │ └── stormsurge1d.rst │ ├── mapping │ │ ├── convertdir.rst │ │ ├── distancecart.rst │ │ ├── distancegc.rst │ │ ├── endpointcart.rst │ │ ├── globalrelief.rst │ │ ├── gridgenerator.rst │ │ ├── intersectgc.rst │ │ ├── intersectlineedge.rst │ │ ├── pointscart.rst │ │ ├── reckongc.rst │ │ ├── waypointsgc.rst │ │ ├── windfetch.rst │ │ └── zprofilepath.rst │ ├── ocean_wave_data_analysis │ │ ├── diagnostictail.rst │ │ ├── pressure2surfaceelevfft.rst │ │ ├── pressure2surfaceelevzcross.rst │ │ ├── seaswell1d.rst │ │ ├── velocity2surfaceelevfft.rst │ │ ├── velocity2surfaceelevzcross.rst │ │ ├── wavefrompressurepsd.rst │ │ ├── wavefrompressurezcross.rst │ │ ├── wavefromsurfaceelevpsd.rst │ │ ├── wavefromsurfaceelevzcross.rst │ │ ├── wavefromvelocitypsd.rst │ │ ├── wavefromvelocityzcross.rst │ │ └── wavepropfrompsd.rst │ ├── ocean_wave_directional_analysis │ │ ├── directionalpsd.rst │ │ ├── directionalpsdetauv.rst │ │ ├── directionalpsdpuv.rst │ │ ├── enu2truenorth.rst │ │ ├── wavediretauv.rst │ │ └── wavedirpuv.rst │ ├── ocean_wave_parametric_model │ │ ├── asymptlimit.rst │ │ ├── equivalentfetchdeep.rst │ │ ├── equivalentfetchshallow.rst │ │ ├── fullydevwave.rst │ │ ├── mindurationdeep.rst │ │ ├── mindurationshallow.rst │ │ ├── parametricwavedeep.rst │ │ ├── parametricwaveshallow.rst │ │ ├── wavedim2dimless.rst │ │ └── wavedimless2dim.rst │ ├── ocean_wave_properties │ │ ├── incidentreflectedwave.rst │ │ ├── linearwavegenerator.rst │ │ ├── linearwavesuperposition.rst │ │ ├── pressureresponse.rst │ │ ├── stokeswavegenerator.rst │ │ ├── stokeswavesuperposition.rst │ │ ├── wavebedstress.rst │ │ ├── wavedispersion.rst │ │ ├── wavedispersionds.rst │ │ ├── waveorbitalvelocity.rst │ │ ├── wavepower.rst │ │ ├── wavepowerfrompsd.rst │ │ ├── wavespectrum2timeseries.rst │ │ └── wavevel2wlconvfactor.rst │ ├── ocean_wave_spectrum │ │ ├── bretpsd.rst │ │ ├── donelanpsd.rst │ │ ├── jonswappsd.rst │ │ ├── pmpsd.rst │ │ └── tmapsd.rst │ ├── plotting │ │ ├── plot2d.rst │ │ ├── plot2dsubplot.rst │ │ ├── plot2dtimeseries.rst │ │ ├── plot3d.rst │ │ ├── plot3ddem.rst │ │ ├── plot3dhillshades.rst │ │ └── plot3dtopo.rst │ ├── signal_processing │ │ ├── bartlettpsd.rst │ │ ├── fftfrequency.rst │ │ ├── filtertimeseries.rst │ │ ├── periodogrampsd.rst │ │ ├── psd2timeseries.rst │ │ ├── smoothsignal.rst │ │ ├── spectrogrampsd.rst │ │ └── welchpsd.rst │ ├── statistics │ │ ├── curvefit2d.rst │ │ ├── curvefit3d.rst │ │ ├── dataoverview.rst │ │ ├── findextremum.rst │ │ ├── findknn.rst │ │ ├── fitgoodness.rst │ │ ├── levelcrossing.rst │ │ ├── movingwindow.rst │ │ ├── probability1d.rst │ │ ├── probability2d.rst │ │ └── similaritymeasure.rst │ ├── swan_wave_model │ │ ├── swandepthgrid.rst │ │ ├── swanvectorvarspconst.rst │ │ ├── swanvectorvarspvariedgrid.rst │ │ ├── swanvectorvarspvariedsct.rst │ │ ├── swanwaterlevelspconst.rst │ │ ├── swanwaterlevelspvariedgrid.rst │ │ ├── swanwaterlevelspvariedsct.rst │ │ ├── swanwindspconst.rst │ │ ├── swanwindspvariedgrid.rst │ │ └── swanwindspvariedsct.rst │ └── wind_engineering │ │ ├── directionavg.rst │ │ ├── smoothwind.rst │ │ ├── surfaceroughness.rst │ │ ├── sustainedwindduration.rst │ │ ├── windavg.rst │ │ ├── winddrag.rst │ │ ├── windgustfactor.rst │ │ ├── windspectrum.rst │ │ ├── windspectrum2timeseries.rst │ │ └── windvelz1toz2.rst └── requirements.txt └── figures ├── Figure_AsanPlot_Screenshot.jpg ├── Figure_Book_Coastal.jpg ├── Figure_Book_Matlab.jpg ├── Figure_Book_Python.jpg ├── Figure_Oceanlyz_Logo.png └── Figure_ScientiMate_Logo.png /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/LICENSE -------------------------------------------------------------------------------- /MATLAB Functions/__init__.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/__init__.m -------------------------------------------------------------------------------- /MATLAB Functions/add_scientimate_to_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/add_scientimate_to_path.m -------------------------------------------------------------------------------- /MATLAB Functions/colormap/gencolormap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/colormap/gencolormap.m -------------------------------------------------------------------------------- /MATLAB Functions/colormap/seqcolormap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/colormap/seqcolormap.m -------------------------------------------------------------------------------- /MATLAB Functions/colormap/topocolormap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/colormap/topocolormap.m -------------------------------------------------------------------------------- /MATLAB Functions/data_downloading/downloadndbcdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_downloading/downloadndbcdata.m -------------------------------------------------------------------------------- /MATLAB Functions/data_downloading/downloadtidecurrentdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_downloading/downloadtidecurrentdata.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/downsamplex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/downsamplex.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/downsamplexy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/downsamplexy.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/downsamplexyz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/downsamplexyz.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/interpgrid2xyz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/interpgrid2xyz.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/interpxyz2grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/interpxyz2grid.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/interpxyz2xyz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/interpxyz2xyz.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/replacemissing1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/replacemissing1d.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/replacemissing2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/replacemissing2d.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/replaceoutlier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/replaceoutlier.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/replacespike3dps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/replacespike3dps.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/replacespikediff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/replacespikediff.m -------------------------------------------------------------------------------- /MATLAB Functions/data_manipulating/replacespikeenvelope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_manipulating/replacespikeenvelope.m -------------------------------------------------------------------------------- /MATLAB Functions/data_reading/readdatafile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_reading/readdatafile.m -------------------------------------------------------------------------------- /MATLAB Functions/data_reading/readxyzfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/data_reading/readxyzfile.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanebackgroundwind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanebackgroundwind.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanedpcpt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanedpcpt.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanepressureh80.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanepressureh80.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanetranslationvel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanetranslationvel.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewavecontourcem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewavecontourcem.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewavecontourh16.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewavecontourh16.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewavecontoury88.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewavecontoury88.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewavemax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewavemax.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewindh08.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewindh08.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewindh80.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewindh80.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewindinflowangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewindinflowangle.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewindvel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewindvel.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewindvelmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewindvelmax.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewindvelmaxh08.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewindvelmaxh08.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/hurricanewindvelmaxh80.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/hurricanewindvelmaxh80.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/readnhchurricane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/readnhchurricane.m -------------------------------------------------------------------------------- /MATLAB Functions/hurricane/stormsurge1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/hurricane/stormsurge1d.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/convertdir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/convertdir.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/distancecart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/distancecart.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/distancegc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/distancegc.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/endpointcart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/endpointcart.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/globalrelief.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/globalrelief.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/gridgenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/gridgenerator.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/intersectgc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/intersectgc.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/intersectlineedge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/intersectlineedge.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/pointscart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/pointscart.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/reckongc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/reckongc.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/waypointsgc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/waypointsgc.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/windfetch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/windfetch.m -------------------------------------------------------------------------------- /MATLAB Functions/mapping/zprofilepath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/mapping/zprofilepath.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/diagnostictail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/diagnostictail.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/pressure2surfaceelevfft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/pressure2surfaceelevfft.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/pressure2surfaceelevzcross.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/pressure2surfaceelevzcross.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/seaswell1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/seaswell1d.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/velocity2surfaceelevfft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/velocity2surfaceelevfft.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/velocity2surfaceelevzcross.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/velocity2surfaceelevzcross.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/wavefrompressurepsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/wavefrompressurepsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/wavefrompressurezcross.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/wavefrompressurezcross.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/wavefromsurfaceelevpsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/wavefromsurfaceelevpsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/wavefromsurfaceelevzcross.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/wavefromsurfaceelevzcross.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/wavefromvelocitypsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/wavefromvelocitypsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/wavefromvelocityzcross.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/wavefromvelocityzcross.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_data_analysis/wavepropfrompsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_data_analysis/wavepropfrompsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_directional_analysis/directionalpsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_directional_analysis/directionalpsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_directional_analysis/directionalpsdetauv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_directional_analysis/directionalpsdetauv.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_directional_analysis/directionalpsdpuv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_directional_analysis/directionalpsdpuv.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_directional_analysis/enu2truenorth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_directional_analysis/enu2truenorth.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_directional_analysis/wavediretauv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_directional_analysis/wavediretauv.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_directional_analysis/wavedirpuv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_directional_analysis/wavedirpuv.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/asymptlimit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/asymptlimit.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/equivalentfetchdeep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/equivalentfetchdeep.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/equivalentfetchshallow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/equivalentfetchshallow.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/fullydevwave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/fullydevwave.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/mindurationdeep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/mindurationdeep.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/mindurationshallow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/mindurationshallow.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/parametricwavedeep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/parametricwavedeep.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/parametricwaveshallow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/parametricwaveshallow.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/wavedim2dimless.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/wavedim2dimless.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_parametric_model/wavedimless2dim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_parametric_model/wavedimless2dim.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/incidentreflectedwave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/incidentreflectedwave.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/linearwavegenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/linearwavegenerator.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/linearwavesuperposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/linearwavesuperposition.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/pressureresponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/pressureresponse.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/stokeswavegenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/stokeswavegenerator.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/stokeswavesuperposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/stokeswavesuperposition.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/wavebedstress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/wavebedstress.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/wavedispersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/wavedispersion.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/wavedispersionds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/wavedispersionds.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/waveorbitalvelocity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/waveorbitalvelocity.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/wavepower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/wavepower.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/wavepowerfrompsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/wavepowerfrompsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/wavespectrum2timeseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/wavespectrum2timeseries.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_properties/wavevel2wlconvfactor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_properties/wavevel2wlconvfactor.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_spectrum/bretpsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_spectrum/bretpsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_spectrum/donelanpsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_spectrum/donelanpsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_spectrum/jonswappsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_spectrum/jonswappsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_spectrum/pmpsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_spectrum/pmpsd.m -------------------------------------------------------------------------------- /MATLAB Functions/ocean_wave_spectrum/tmapsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/ocean_wave_spectrum/tmapsd.m -------------------------------------------------------------------------------- /MATLAB Functions/plotting/plot2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/plotting/plot2d.m -------------------------------------------------------------------------------- /MATLAB Functions/plotting/plot2dsubplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/plotting/plot2dsubplot.m -------------------------------------------------------------------------------- /MATLAB Functions/plotting/plot2dtimeseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/plotting/plot2dtimeseries.m -------------------------------------------------------------------------------- /MATLAB Functions/plotting/plot3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/plotting/plot3d.m -------------------------------------------------------------------------------- /MATLAB Functions/plotting/plot3ddem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/plotting/plot3ddem.m -------------------------------------------------------------------------------- /MATLAB Functions/plotting/plot3dhillshades.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/plotting/plot3dhillshades.m -------------------------------------------------------------------------------- /MATLAB Functions/plotting/plot3dtopo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/plotting/plot3dtopo.m -------------------------------------------------------------------------------- /MATLAB Functions/remove_scientimate_from_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/remove_scientimate_from_path.m -------------------------------------------------------------------------------- /MATLAB Functions/signal_processing/bartlettpsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/signal_processing/bartlettpsd.m -------------------------------------------------------------------------------- /MATLAB Functions/signal_processing/fftfrequency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/signal_processing/fftfrequency.m -------------------------------------------------------------------------------- /MATLAB Functions/signal_processing/filtertimeseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/signal_processing/filtertimeseries.m -------------------------------------------------------------------------------- /MATLAB Functions/signal_processing/periodogrampsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/signal_processing/periodogrampsd.m -------------------------------------------------------------------------------- /MATLAB Functions/signal_processing/psd2timeseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/signal_processing/psd2timeseries.m -------------------------------------------------------------------------------- /MATLAB Functions/signal_processing/smoothsignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/signal_processing/smoothsignal.m -------------------------------------------------------------------------------- /MATLAB Functions/signal_processing/spectrogrampsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/signal_processing/spectrogrampsd.m -------------------------------------------------------------------------------- /MATLAB Functions/signal_processing/welchpsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/signal_processing/welchpsd.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/curvefit2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/curvefit2d.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/curvefit3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/curvefit3d.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/dataoverview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/dataoverview.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/findextremum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/findextremum.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/findknn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/findknn.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/fitgoodness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/fitgoodness.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/levelcrossing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/levelcrossing.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/movingwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/movingwindow.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/probability1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/probability1d.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/probability2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/probability2d.m -------------------------------------------------------------------------------- /MATLAB Functions/statistics/similaritymeasure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/statistics/similaritymeasure.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swandepthgrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swandepthgrid.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanvectorvarspconst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanvectorvarspconst.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanvectorvarspvariedgrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanvectorvarspvariedgrid.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanvectorvarspvariedsct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanvectorvarspvariedsct.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanwaterlevelspconst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanwaterlevelspconst.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanwaterlevelspvariedgrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanwaterlevelspvariedgrid.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanwaterlevelspvariedsct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanwaterlevelspvariedsct.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanwindspconst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanwindspconst.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanwindspvariedgrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanwindspvariedgrid.m -------------------------------------------------------------------------------- /MATLAB Functions/swan_wave_model/swanwindspvariedsct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/swan_wave_model/swanwindspvariedsct.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/directionavg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/directionavg.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/smoothwind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/smoothwind.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/surfaceroughness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/surfaceroughness.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/sustainedwindduration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/sustainedwindduration.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/windavg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/windavg.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/winddrag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/winddrag.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/windgustfactor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/windgustfactor.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/windspectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/windspectrum.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/windspectrum2timeseries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/windspectrum2timeseries.m -------------------------------------------------------------------------------- /MATLAB Functions/wind_engineering/windvelz1toz2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/MATLAB Functions/wind_engineering/windvelz1toz2.m -------------------------------------------------------------------------------- /Python Functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/__init__.py -------------------------------------------------------------------------------- /Python Functions/colormap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/colormap/__init__.py -------------------------------------------------------------------------------- /Python Functions/colormap/gencolormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/colormap/gencolormap.py -------------------------------------------------------------------------------- /Python Functions/colormap/seqcolormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/colormap/seqcolormap.py -------------------------------------------------------------------------------- /Python Functions/colormap/topocolormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/colormap/topocolormap.py -------------------------------------------------------------------------------- /Python Functions/data_downloading/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_downloading/__init__.py -------------------------------------------------------------------------------- /Python Functions/data_downloading/downloadndbcdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_downloading/downloadndbcdata.py -------------------------------------------------------------------------------- /Python Functions/data_downloading/downloadtidecurrentdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_downloading/downloadtidecurrentdata.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/__init__.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/downsamplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/downsamplex.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/downsamplexy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/downsamplexy.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/downsamplexyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/downsamplexyz.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/interpgrid2xyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/interpgrid2xyz.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/interpxyz2grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/interpxyz2grid.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/interpxyz2xyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/interpxyz2xyz.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/replacemissing1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/replacemissing1d.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/replacemissing2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/replacemissing2d.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/replaceoutlier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/replaceoutlier.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/replacespike3dps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/replacespike3dps.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/replacespikediff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/replacespikediff.py -------------------------------------------------------------------------------- /Python Functions/data_manipulating/replacespikeenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_manipulating/replacespikeenvelope.py -------------------------------------------------------------------------------- /Python Functions/data_reading/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_reading/__init__.py -------------------------------------------------------------------------------- /Python Functions/data_reading/readasciitable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_reading/readasciitable.py -------------------------------------------------------------------------------- /Python Functions/data_reading/readdatafile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_reading/readdatafile.py -------------------------------------------------------------------------------- /Python Functions/data_reading/readtimeseriestable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_reading/readtimeseriestable.py -------------------------------------------------------------------------------- /Python Functions/data_reading/readxyzfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/data_reading/readxyzfile.py -------------------------------------------------------------------------------- /Python Functions/hurricane/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/__init__.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanebackgroundwind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanebackgroundwind.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanedpcpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanedpcpt.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanepressureh80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanepressureh80.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanetranslationvel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanetranslationvel.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewavecontourcem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewavecontourcem.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewavecontourh16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewavecontourh16.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewavecontoury88.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewavecontoury88.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewavemax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewavemax.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewindh08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewindh08.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewindh80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewindh80.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewindinflowangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewindinflowangle.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewindvel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewindvel.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewindvelmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewindvelmax.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewindvelmaxh08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewindvelmaxh08.py -------------------------------------------------------------------------------- /Python Functions/hurricane/hurricanewindvelmaxh80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/hurricanewindvelmaxh80.py -------------------------------------------------------------------------------- /Python Functions/hurricane/readnhchurricane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/readnhchurricane.py -------------------------------------------------------------------------------- /Python Functions/hurricane/stormsurge1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/hurricane/stormsurge1d.py -------------------------------------------------------------------------------- /Python Functions/mapping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/__init__.py -------------------------------------------------------------------------------- /Python Functions/mapping/convertdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/convertdir.py -------------------------------------------------------------------------------- /Python Functions/mapping/distancecart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/distancecart.py -------------------------------------------------------------------------------- /Python Functions/mapping/distancegc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/distancegc.py -------------------------------------------------------------------------------- /Python Functions/mapping/endpointcart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/endpointcart.py -------------------------------------------------------------------------------- /Python Functions/mapping/globalrelief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/globalrelief.py -------------------------------------------------------------------------------- /Python Functions/mapping/gridgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/gridgenerator.py -------------------------------------------------------------------------------- /Python Functions/mapping/intersectgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/intersectgc.py -------------------------------------------------------------------------------- /Python Functions/mapping/intersectlineedge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/intersectlineedge.py -------------------------------------------------------------------------------- /Python Functions/mapping/pointscart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/pointscart.py -------------------------------------------------------------------------------- /Python Functions/mapping/reckongc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/reckongc.py -------------------------------------------------------------------------------- /Python Functions/mapping/waypointsgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/waypointsgc.py -------------------------------------------------------------------------------- /Python Functions/mapping/windfetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/windfetch.py -------------------------------------------------------------------------------- /Python Functions/mapping/zprofilepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/mapping/zprofilepath.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/__init__.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/diagnostictail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/diagnostictail.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/pressure2surfaceelevfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/pressure2surfaceelevfft.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/pressure2surfaceelevzcross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/pressure2surfaceelevzcross.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/seaswell1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/seaswell1d.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/velocity2surfaceelevfft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/velocity2surfaceelevfft.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/velocity2surfaceelevzcross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/velocity2surfaceelevzcross.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/wavefrompressurepsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/wavefrompressurepsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/wavefrompressurezcross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/wavefrompressurezcross.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/wavefromsurfaceelevpsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/wavefromsurfaceelevpsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/wavefromsurfaceelevzcross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/wavefromsurfaceelevzcross.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/wavefromvelocitypsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/wavefromvelocitypsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/wavefromvelocityzcross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/wavefromvelocityzcross.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_data_analysis/wavepropfrompsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_data_analysis/wavepropfrompsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_directional_analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_directional_analysis/__init__.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_directional_analysis/directionalpsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_directional_analysis/directionalpsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_directional_analysis/directionalpsdetauv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_directional_analysis/directionalpsdetauv.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_directional_analysis/directionalpsdpuv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_directional_analysis/directionalpsdpuv.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_directional_analysis/enu2truenorth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_directional_analysis/enu2truenorth.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_directional_analysis/wavediretauv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_directional_analysis/wavediretauv.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_directional_analysis/wavedirpuv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_directional_analysis/wavedirpuv.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/__init__.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/asymptlimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/asymptlimit.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/equivalentfetchdeep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/equivalentfetchdeep.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/equivalentfetchshallow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/equivalentfetchshallow.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/fullydevwave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/fullydevwave.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/mindurationdeep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/mindurationdeep.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/mindurationshallow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/mindurationshallow.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/parametricwavedeep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/parametricwavedeep.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/parametricwaveshallow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/parametricwaveshallow.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/wavedim2dimless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/wavedim2dimless.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_parametric_model/wavedimless2dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_parametric_model/wavedimless2dim.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/__init__.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/incidentreflectedwave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/incidentreflectedwave.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/linearwavegenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/linearwavegenerator.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/linearwavesuperposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/linearwavesuperposition.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/pressureresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/pressureresponse.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/stokeswavegenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/stokeswavegenerator.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/stokeswavesuperposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/stokeswavesuperposition.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/wavebedstress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/wavebedstress.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/wavedispersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/wavedispersion.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/wavedispersionds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/wavedispersionds.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/waveorbitalvelocity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/waveorbitalvelocity.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/wavepower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/wavepower.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/wavepowerfrompsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/wavepowerfrompsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/wavespectrum2timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/wavespectrum2timeseries.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_properties/wavevel2wlconvfactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_properties/wavevel2wlconvfactor.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_spectrum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_spectrum/__init__.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_spectrum/bretpsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_spectrum/bretpsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_spectrum/donelanpsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_spectrum/donelanpsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_spectrum/jonswappsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_spectrum/jonswappsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_spectrum/pmpsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_spectrum/pmpsd.py -------------------------------------------------------------------------------- /Python Functions/ocean_wave_spectrum/tmapsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/ocean_wave_spectrum/tmapsd.py -------------------------------------------------------------------------------- /Python Functions/plotting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/plotting/__init__.py -------------------------------------------------------------------------------- /Python Functions/plotting/plot2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/plotting/plot2d.py -------------------------------------------------------------------------------- /Python Functions/plotting/plot2dsubplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/plotting/plot2dsubplot.py -------------------------------------------------------------------------------- /Python Functions/plotting/plot2dtimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/plotting/plot2dtimeseries.py -------------------------------------------------------------------------------- /Python Functions/plotting/plot3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/plotting/plot3d.py -------------------------------------------------------------------------------- /Python Functions/plotting/plot3ddem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/plotting/plot3ddem.py -------------------------------------------------------------------------------- /Python Functions/plotting/plot3dhillshades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/plotting/plot3dhillshades.py -------------------------------------------------------------------------------- /Python Functions/plotting/plot3dtopo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/plotting/plot3dtopo.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/__init__.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/bartlettpsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/bartlettpsd.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/fftfrequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/fftfrequency.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/filtertimeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/filtertimeseries.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/periodogrampsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/periodogrampsd.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/psd2timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/psd2timeseries.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/smoothsignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/smoothsignal.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/spectrogrampsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/spectrogrampsd.py -------------------------------------------------------------------------------- /Python Functions/signal_processing/welchpsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/signal_processing/welchpsd.py -------------------------------------------------------------------------------- /Python Functions/statistics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/__init__.py -------------------------------------------------------------------------------- /Python Functions/statistics/curvefit2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/curvefit2d.py -------------------------------------------------------------------------------- /Python Functions/statistics/curvefit3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/curvefit3d.py -------------------------------------------------------------------------------- /Python Functions/statistics/dataoverview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/dataoverview.py -------------------------------------------------------------------------------- /Python Functions/statistics/findextremum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/findextremum.py -------------------------------------------------------------------------------- /Python Functions/statistics/findknn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/findknn.py -------------------------------------------------------------------------------- /Python Functions/statistics/fitgoodness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/fitgoodness.py -------------------------------------------------------------------------------- /Python Functions/statistics/levelcrossing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/levelcrossing.py -------------------------------------------------------------------------------- /Python Functions/statistics/movingwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/movingwindow.py -------------------------------------------------------------------------------- /Python Functions/statistics/probability1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/probability1d.py -------------------------------------------------------------------------------- /Python Functions/statistics/probability2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/probability2d.py -------------------------------------------------------------------------------- /Python Functions/statistics/similaritymeasure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/statistics/similaritymeasure.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/__init__.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swandepthgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swandepthgrid.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanvectorvarspconst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanvectorvarspconst.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanvectorvarspvariedgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanvectorvarspvariedgrid.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanvectorvarspvariedsct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanvectorvarspvariedsct.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanwaterlevelspconst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanwaterlevelspconst.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanwaterlevelspvariedgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanwaterlevelspvariedgrid.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanwaterlevelspvariedsct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanwaterlevelspvariedsct.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanwindspconst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanwindspconst.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanwindspvariedgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanwindspvariedgrid.py -------------------------------------------------------------------------------- /Python Functions/swan_wave_model/swanwindspvariedsct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/swan_wave_model/swanwindspvariedsct.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/__init__.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/directionavg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/directionavg.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/smoothwind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/smoothwind.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/surfaceroughness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/surfaceroughness.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/sustainedwindduration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/sustainedwindduration.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/windavg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/windavg.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/winddrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/winddrag.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/windgustfactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/windgustfactor.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/windspectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/windspectrum.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/windspectrum2timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/windspectrum2timeseries.py -------------------------------------------------------------------------------- /Python Functions/wind_engineering/windvelz1toz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/Python Functions/wind_engineering/windvelz1toz2.py -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/README.rst -------------------------------------------------------------------------------- /docs/1_Introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/1_Introduction.rst -------------------------------------------------------------------------------- /docs/2_Getting_Started_Matlab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/2_Getting_Started_Matlab.rst -------------------------------------------------------------------------------- /docs/3_Getting_Started_Python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/3_Getting_Started_Python.rst -------------------------------------------------------------------------------- /docs/4_Functions_List_Matlab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/4_Functions_List_Matlab.rst -------------------------------------------------------------------------------- /docs/5_Functions_List_Python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/5_Functions_List_Python.rst -------------------------------------------------------------------------------- /docs/6_Changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/6_Changelog.rst -------------------------------------------------------------------------------- /docs/7_Contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/7_Contribute.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/figures/Figure_AsanPlot_Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/figures/Figure_AsanPlot_Screenshot.jpg -------------------------------------------------------------------------------- /docs/figures/Figure_Book_Coastal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/figures/Figure_Book_Coastal.jpg -------------------------------------------------------------------------------- /docs/figures/Figure_Book_Matlab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/figures/Figure_Book_Matlab.jpg -------------------------------------------------------------------------------- /docs/figures/Figure_Book_Python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/figures/Figure_Book_Python.jpg -------------------------------------------------------------------------------- /docs/figures/Figure_Oceanlyz_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/figures/Figure_Oceanlyz_Logo.png -------------------------------------------------------------------------------- /docs/figures/Figure_ScientiMate_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/figures/Figure_ScientiMate_Logo.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/matlab_functions/colormap/gencolormap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/colormap/gencolormap.rst -------------------------------------------------------------------------------- /docs/matlab_functions/colormap/seqcolormap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/colormap/seqcolormap.rst -------------------------------------------------------------------------------- /docs/matlab_functions/colormap/topocolormap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/colormap/topocolormap.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_downloading/downloadndbcdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_downloading/downloadndbcdata.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_downloading/downloadtidecurrentdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_downloading/downloadtidecurrentdata.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/downsamplex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/downsamplex.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/downsamplexy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/downsamplexy.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/downsamplexyz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/downsamplexyz.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/interpgrid2xyz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/interpgrid2xyz.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/interpxyz2grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/interpxyz2grid.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/interpxyz2xyz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/interpxyz2xyz.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/replacemissing1d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/replacemissing1d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/replacemissing2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/replacemissing2d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/replaceoutlier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/replaceoutlier.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/replacespike3dps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/replacespike3dps.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/replacespikediff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/replacespikediff.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_manipulating/replacespikeenvelope.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_manipulating/replacespikeenvelope.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_reading/readdatafile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_reading/readdatafile.rst -------------------------------------------------------------------------------- /docs/matlab_functions/data_reading/readxyzfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/data_reading/readxyzfile.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanebackgroundwind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanebackgroundwind.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanedpcpt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanedpcpt.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanepressureh80.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanepressureh80.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanetranslationvel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanetranslationvel.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewavecontourcem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewavecontourcem.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewavecontourh16.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewavecontourh16.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewavecontoury88.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewavecontoury88.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewavemax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewavemax.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewindh08.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewindh08.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewindh80.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewindh80.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewindinflowangle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewindinflowangle.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewindvel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewindvel.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewindvelmax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewindvelmax.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewindvelmaxh08.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewindvelmaxh08.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/hurricanewindvelmaxh80.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/hurricanewindvelmaxh80.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/readnhchurricane.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/readnhchurricane.rst -------------------------------------------------------------------------------- /docs/matlab_functions/hurricane/stormsurge1d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/hurricane/stormsurge1d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/convertdir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/convertdir.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/distancecart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/distancecart.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/distancegc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/distancegc.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/endpointcart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/endpointcart.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/globalrelief.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/globalrelief.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/gridgenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/gridgenerator.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/intersectgc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/intersectgc.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/intersectlineedge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/intersectlineedge.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/pointscart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/pointscart.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/reckongc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/reckongc.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/waypointsgc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/waypointsgc.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/windfetch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/windfetch.rst -------------------------------------------------------------------------------- /docs/matlab_functions/mapping/zprofilepath.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/mapping/zprofilepath.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/diagnostictail.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/diagnostictail.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/pressure2surfaceelevfft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/pressure2surfaceelevfft.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/pressure2surfaceelevzcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/pressure2surfaceelevzcross.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/seaswell1d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/seaswell1d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/velocity2surfaceelevfft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/velocity2surfaceelevfft.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/velocity2surfaceelevzcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/velocity2surfaceelevzcross.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/wavefrompressurepsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/wavefrompressurepsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/wavefrompressurezcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/wavefrompressurezcross.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/wavefromsurfaceelevpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/wavefromsurfaceelevpsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/wavefromsurfaceelevzcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/wavefromsurfaceelevzcross.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/wavefromvelocitypsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/wavefromvelocitypsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/wavefromvelocityzcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/wavefromvelocityzcross.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_data_analysis/wavepropfrompsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_data_analysis/wavepropfrompsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_directional_analysis/directionalpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_directional_analysis/directionalpsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_directional_analysis/directionalpsdetauv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_directional_analysis/directionalpsdetauv.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_directional_analysis/directionalpsdpuv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_directional_analysis/directionalpsdpuv.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_directional_analysis/enu2truenorth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_directional_analysis/enu2truenorth.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_directional_analysis/wavediretauv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_directional_analysis/wavediretauv.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_directional_analysis/wavedirpuv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_directional_analysis/wavedirpuv.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/asymptlimit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/asymptlimit.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/equivalentfetchdeep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/equivalentfetchdeep.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/equivalentfetchshallow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/equivalentfetchshallow.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/fullydevwave.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/fullydevwave.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/mindurationdeep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/mindurationdeep.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/mindurationshallow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/mindurationshallow.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/parametricwavedeep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/parametricwavedeep.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/parametricwaveshallow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/parametricwaveshallow.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/wavedim2dimless.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/wavedim2dimless.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_parametric_model/wavedimless2dim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_parametric_model/wavedimless2dim.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/incidentreflectedwave.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/incidentreflectedwave.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/linearwavegenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/linearwavegenerator.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/linearwavesuperposition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/linearwavesuperposition.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/pressureresponse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/pressureresponse.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/stokeswavegenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/stokeswavegenerator.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/stokeswavesuperposition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/stokeswavesuperposition.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/wavebedstress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/wavebedstress.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/wavedispersion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/wavedispersion.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/wavedispersionds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/wavedispersionds.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/waveorbitalvelocity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/waveorbitalvelocity.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/wavepower.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/wavepower.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/wavepowerfrompsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/wavepowerfrompsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/wavespectrum2timeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/wavespectrum2timeseries.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_properties/wavevel2wlconvfactor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_properties/wavevel2wlconvfactor.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_spectrum/bretpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_spectrum/bretpsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_spectrum/donelanpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_spectrum/donelanpsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_spectrum/jonswappsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_spectrum/jonswappsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_spectrum/pmpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_spectrum/pmpsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/ocean_wave_spectrum/tmapsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/ocean_wave_spectrum/tmapsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/plotting/plot2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/plotting/plot2d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/plotting/plot2dsubplot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/plotting/plot2dsubplot.rst -------------------------------------------------------------------------------- /docs/matlab_functions/plotting/plot2dtimeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/plotting/plot2dtimeseries.rst -------------------------------------------------------------------------------- /docs/matlab_functions/plotting/plot3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/plotting/plot3d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/plotting/plot3ddem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/plotting/plot3ddem.rst -------------------------------------------------------------------------------- /docs/matlab_functions/plotting/plot3dhillshades.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/plotting/plot3dhillshades.rst -------------------------------------------------------------------------------- /docs/matlab_functions/plotting/plot3dtopo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/plotting/plot3dtopo.rst -------------------------------------------------------------------------------- /docs/matlab_functions/signal_processing/bartlettpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/signal_processing/bartlettpsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/signal_processing/fftfrequency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/signal_processing/fftfrequency.rst -------------------------------------------------------------------------------- /docs/matlab_functions/signal_processing/filtertimeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/signal_processing/filtertimeseries.rst -------------------------------------------------------------------------------- /docs/matlab_functions/signal_processing/periodogrampsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/signal_processing/periodogrampsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/signal_processing/psd2timeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/signal_processing/psd2timeseries.rst -------------------------------------------------------------------------------- /docs/matlab_functions/signal_processing/smoothsignal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/signal_processing/smoothsignal.rst -------------------------------------------------------------------------------- /docs/matlab_functions/signal_processing/spectrogrampsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/signal_processing/spectrogrampsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/signal_processing/welchpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/signal_processing/welchpsd.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/curvefit2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/curvefit2d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/curvefit3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/curvefit3d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/dataoverview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/dataoverview.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/findextremum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/findextremum.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/findknn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/findknn.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/fitgoodness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/fitgoodness.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/levelcrossing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/levelcrossing.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/movingwindow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/movingwindow.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/probability1d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/probability1d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/probability2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/probability2d.rst -------------------------------------------------------------------------------- /docs/matlab_functions/statistics/similaritymeasure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/statistics/similaritymeasure.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swandepthgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swandepthgrid.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanvectorvarspconst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanvectorvarspconst.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanvectorvarspvariedgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanvectorvarspvariedgrid.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanvectorvarspvariedsct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanvectorvarspvariedsct.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanwaterlevelspconst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanwaterlevelspconst.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanwaterlevelspvariedgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanwaterlevelspvariedgrid.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanwaterlevelspvariedsct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanwaterlevelspvariedsct.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanwindspconst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanwindspconst.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanwindspvariedgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanwindspvariedgrid.rst -------------------------------------------------------------------------------- /docs/matlab_functions/swan_wave_model/swanwindspvariedsct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/swan_wave_model/swanwindspvariedsct.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/directionavg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/directionavg.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/smoothwind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/smoothwind.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/surfaceroughness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/surfaceroughness.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/sustainedwindduration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/sustainedwindduration.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/windavg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/windavg.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/winddrag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/winddrag.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/windgustfactor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/windgustfactor.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/windspectrum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/windspectrum.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/windspectrum2timeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/windspectrum2timeseries.rst -------------------------------------------------------------------------------- /docs/matlab_functions/wind_engineering/windvelz1toz2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/matlab_functions/wind_engineering/windvelz1toz2.rst -------------------------------------------------------------------------------- /docs/python_functions/colormap/gencolormap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/colormap/gencolormap.rst -------------------------------------------------------------------------------- /docs/python_functions/colormap/seqcolormap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/colormap/seqcolormap.rst -------------------------------------------------------------------------------- /docs/python_functions/colormap/topocolormap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/colormap/topocolormap.rst -------------------------------------------------------------------------------- /docs/python_functions/data_downloading/downloadndbcdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_downloading/downloadndbcdata.rst -------------------------------------------------------------------------------- /docs/python_functions/data_downloading/downloadtidecurrentdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_downloading/downloadtidecurrentdata.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/downsamplex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/downsamplex.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/downsamplexy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/downsamplexy.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/downsamplexyz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/downsamplexyz.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/interpgrid2xyz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/interpgrid2xyz.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/interpxyz2grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/interpxyz2grid.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/interpxyz2xyz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/interpxyz2xyz.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/replacemissing1d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/replacemissing1d.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/replacemissing2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/replacemissing2d.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/replaceoutlier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/replaceoutlier.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/replacespike3dps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/replacespike3dps.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/replacespikediff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/replacespikediff.rst -------------------------------------------------------------------------------- /docs/python_functions/data_manipulating/replacespikeenvelope.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_manipulating/replacespikeenvelope.rst -------------------------------------------------------------------------------- /docs/python_functions/data_reading/readasciitable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_reading/readasciitable.rst -------------------------------------------------------------------------------- /docs/python_functions/data_reading/readdatafile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_reading/readdatafile.rst -------------------------------------------------------------------------------- /docs/python_functions/data_reading/readtimeseriesfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_reading/readtimeseriesfile.rst -------------------------------------------------------------------------------- /docs/python_functions/data_reading/readxyzfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/data_reading/readxyzfile.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanebackgroundwind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanebackgroundwind.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanedpcpt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanedpcpt.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanepressureh80.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanepressureh80.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanetranslationvel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanetranslationvel.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewavecontourcem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewavecontourcem.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewavecontourh16.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewavecontourh16.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewavecontoury88.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewavecontoury88.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewavemax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewavemax.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewindh08.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewindh08.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewindh80.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewindh80.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewindinflowangle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewindinflowangle.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewindvel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewindvel.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewindvelmax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewindvelmax.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewindvelmaxh08.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewindvelmaxh08.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/hurricanewindvelmaxh80.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/hurricanewindvelmaxh80.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/readnhchurricane.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/readnhchurricane.rst -------------------------------------------------------------------------------- /docs/python_functions/hurricane/stormsurge1d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/hurricane/stormsurge1d.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/convertdir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/convertdir.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/distancecart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/distancecart.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/distancegc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/distancegc.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/endpointcart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/endpointcart.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/globalrelief.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/globalrelief.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/gridgenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/gridgenerator.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/intersectgc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/intersectgc.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/intersectlineedge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/intersectlineedge.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/pointscart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/pointscart.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/reckongc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/reckongc.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/waypointsgc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/waypointsgc.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/windfetch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/windfetch.rst -------------------------------------------------------------------------------- /docs/python_functions/mapping/zprofilepath.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/mapping/zprofilepath.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/diagnostictail.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/diagnostictail.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/pressure2surfaceelevfft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/pressure2surfaceelevfft.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/pressure2surfaceelevzcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/pressure2surfaceelevzcross.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/seaswell1d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/seaswell1d.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/velocity2surfaceelevfft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/velocity2surfaceelevfft.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/velocity2surfaceelevzcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/velocity2surfaceelevzcross.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/wavefrompressurepsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/wavefrompressurepsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/wavefrompressurezcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/wavefrompressurezcross.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/wavefromsurfaceelevpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/wavefromsurfaceelevpsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/wavefromsurfaceelevzcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/wavefromsurfaceelevzcross.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/wavefromvelocitypsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/wavefromvelocitypsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/wavefromvelocityzcross.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/wavefromvelocityzcross.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_data_analysis/wavepropfrompsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_data_analysis/wavepropfrompsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_directional_analysis/directionalpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_directional_analysis/directionalpsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_directional_analysis/directionalpsdetauv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_directional_analysis/directionalpsdetauv.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_directional_analysis/directionalpsdpuv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_directional_analysis/directionalpsdpuv.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_directional_analysis/enu2truenorth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_directional_analysis/enu2truenorth.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_directional_analysis/wavediretauv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_directional_analysis/wavediretauv.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_directional_analysis/wavedirpuv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_directional_analysis/wavedirpuv.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/asymptlimit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/asymptlimit.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/equivalentfetchdeep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/equivalentfetchdeep.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/equivalentfetchshallow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/equivalentfetchshallow.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/fullydevwave.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/fullydevwave.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/mindurationdeep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/mindurationdeep.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/mindurationshallow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/mindurationshallow.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/parametricwavedeep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/parametricwavedeep.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/parametricwaveshallow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/parametricwaveshallow.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/wavedim2dimless.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/wavedim2dimless.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_parametric_model/wavedimless2dim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_parametric_model/wavedimless2dim.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/incidentreflectedwave.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/incidentreflectedwave.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/linearwavegenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/linearwavegenerator.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/linearwavesuperposition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/linearwavesuperposition.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/pressureresponse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/pressureresponse.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/stokeswavegenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/stokeswavegenerator.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/stokeswavesuperposition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/stokeswavesuperposition.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/wavebedstress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/wavebedstress.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/wavedispersion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/wavedispersion.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/wavedispersionds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/wavedispersionds.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/waveorbitalvelocity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/waveorbitalvelocity.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/wavepower.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/wavepower.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/wavepowerfrompsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/wavepowerfrompsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/wavespectrum2timeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/wavespectrum2timeseries.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_properties/wavevel2wlconvfactor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_properties/wavevel2wlconvfactor.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_spectrum/bretpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_spectrum/bretpsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_spectrum/donelanpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_spectrum/donelanpsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_spectrum/jonswappsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_spectrum/jonswappsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_spectrum/pmpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_spectrum/pmpsd.rst -------------------------------------------------------------------------------- /docs/python_functions/ocean_wave_spectrum/tmapsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/ocean_wave_spectrum/tmapsd.rst -------------------------------------------------------------------------------- /docs/python_functions/plotting/plot2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/plotting/plot2d.rst -------------------------------------------------------------------------------- /docs/python_functions/plotting/plot2dsubplot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/plotting/plot2dsubplot.rst -------------------------------------------------------------------------------- /docs/python_functions/plotting/plot2dtimeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/plotting/plot2dtimeseries.rst -------------------------------------------------------------------------------- /docs/python_functions/plotting/plot3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/plotting/plot3d.rst -------------------------------------------------------------------------------- /docs/python_functions/plotting/plot3ddem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/plotting/plot3ddem.rst -------------------------------------------------------------------------------- /docs/python_functions/plotting/plot3dhillshades.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/plotting/plot3dhillshades.rst -------------------------------------------------------------------------------- /docs/python_functions/plotting/plot3dtopo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/plotting/plot3dtopo.rst -------------------------------------------------------------------------------- /docs/python_functions/signal_processing/bartlettpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/signal_processing/bartlettpsd.rst -------------------------------------------------------------------------------- /docs/python_functions/signal_processing/fftfrequency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/signal_processing/fftfrequency.rst -------------------------------------------------------------------------------- /docs/python_functions/signal_processing/filtertimeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/signal_processing/filtertimeseries.rst -------------------------------------------------------------------------------- /docs/python_functions/signal_processing/periodogrampsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/signal_processing/periodogrampsd.rst -------------------------------------------------------------------------------- /docs/python_functions/signal_processing/psd2timeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/signal_processing/psd2timeseries.rst -------------------------------------------------------------------------------- /docs/python_functions/signal_processing/smoothsignal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/signal_processing/smoothsignal.rst -------------------------------------------------------------------------------- /docs/python_functions/signal_processing/spectrogrampsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/signal_processing/spectrogrampsd.rst -------------------------------------------------------------------------------- /docs/python_functions/signal_processing/welchpsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/signal_processing/welchpsd.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/curvefit2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/curvefit2d.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/curvefit3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/curvefit3d.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/dataoverview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/dataoverview.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/findextremum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/findextremum.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/findknn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/findknn.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/fitgoodness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/fitgoodness.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/levelcrossing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/levelcrossing.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/movingwindow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/movingwindow.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/probability1d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/probability1d.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/probability2d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/probability2d.rst -------------------------------------------------------------------------------- /docs/python_functions/statistics/similaritymeasure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/statistics/similaritymeasure.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swandepthgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swandepthgrid.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanvectorvarspconst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanvectorvarspconst.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanvectorvarspvariedgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanvectorvarspvariedgrid.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanvectorvarspvariedsct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanvectorvarspvariedsct.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanwaterlevelspconst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanwaterlevelspconst.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanwaterlevelspvariedgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanwaterlevelspvariedgrid.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanwaterlevelspvariedsct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanwaterlevelspvariedsct.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanwindspconst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanwindspconst.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanwindspvariedgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanwindspvariedgrid.rst -------------------------------------------------------------------------------- /docs/python_functions/swan_wave_model/swanwindspvariedsct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/swan_wave_model/swanwindspvariedsct.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/directionavg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/directionavg.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/smoothwind.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/smoothwind.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/surfaceroughness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/surfaceroughness.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/sustainedwindduration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/sustainedwindduration.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/windavg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/windavg.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/winddrag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/winddrag.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/windgustfactor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/windgustfactor.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/windspectrum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/windspectrum.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/windspectrum2timeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/windspectrum2timeseries.rst -------------------------------------------------------------------------------- /docs/python_functions/wind_engineering/windvelz1toz2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/python_functions/wind_engineering/windvelz1toz2.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /figures/Figure_AsanPlot_Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/figures/Figure_AsanPlot_Screenshot.jpg -------------------------------------------------------------------------------- /figures/Figure_Book_Coastal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/figures/Figure_Book_Coastal.jpg -------------------------------------------------------------------------------- /figures/Figure_Book_Matlab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/figures/Figure_Book_Matlab.jpg -------------------------------------------------------------------------------- /figures/Figure_Book_Python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/figures/Figure_Book_Python.jpg -------------------------------------------------------------------------------- /figures/Figure_Oceanlyz_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/figures/Figure_Oceanlyz_Logo.png -------------------------------------------------------------------------------- /figures/Figure_ScientiMate_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akarimp/ScientiMate/HEAD/figures/Figure_ScientiMate_Logo.png --------------------------------------------------------------------------------