├── .dvc ├── .gitignore └── config ├── .dvcignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ ├── release_candidate_checklist.md │ └── release_checklist.md ├── PULL_REQUEST_TEMPLATE.md ├── codecov.yml ├── config.yml ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── build.yml │ ├── check-links.yml │ ├── ci-caches.yml │ ├── code-validator.yml │ ├── docker.yml │ ├── docs.yml │ ├── draft-release.yml │ ├── dvc-diff.yml │ ├── lint-checker.yml │ ├── release-baseline-images.yml │ ├── release-drafter.yml │ ├── remind.yml │ └── tests.yml ├── .gitignore ├── BUILDING.md ├── CITATION.cff ├── CMakeLists.txt ├── CODE_CONVENTIONS.md ├── CONTRIBUTING.md ├── COPYING.LESSERv3 ├── COPYINGv3 ├── INSTALL.md ├── LICENSE.TXT ├── README.md ├── THANKS.md ├── admin ├── ConfigReleaseBuild.cmake ├── ConfigReleaseBuildSigning.cmake ├── Licenses │ ├── FFmpeg-LGPL-License.txt │ ├── GDAL-License.txt │ ├── GMT-License.txt │ ├── GNU-GPL-3.txt │ ├── GNU-LGPL-3.txt │ ├── Ghostscript-AGPL-License.txt │ └── GraphicsMagick-License.txt ├── PS_orig_for_gs.png ├── PS_orig_for_gs.ps ├── RELEASE.md ├── add_windows_cpack.txt ├── bashrc_for_gmt ├── build-cmocean-cpt.sh ├── build-macos-cmake-cache.sh ├── build-macos-external-list.sh ├── build-release.sh ├── build-scientific-colors-cpt.sh ├── copyright_year.sh ├── examine-failure-log.sh ├── git_release_history.sh ├── gmt_make_pattern_include.sh ├── gs_check.sh ├── image_optimize.sh ├── list_known_failures.sh ├── otoolr.c ├── place-release.sh ├── remote_files_used.sh ├── run_cppcheck.sh ├── src_convention_check.c ├── src_convention_check.sh └── src_replace_word.sh ├── ci ├── build-gmt.sh ├── config-gmt-unix.sh ├── config-gmt-windows.sh ├── deploy-gh-pages.sh ├── download-coastlines.sh ├── install-dependencies-linux.sh ├── install-dependencies-macos.sh ├── install-dependencies-windows.sh ├── simple-gmt-tests.bat └── simple-gmt-tests.sh ├── cmake ├── ConfigDefault.cmake ├── ConfigUserAdvancedTemplate.cmake ├── ConfigUserTemplate.cmake ├── dist │ ├── CMakeLists.txt │ ├── GMT.icns │ ├── Info.plist.in │ ├── cpack_package_description.txt │ ├── startup_macosx.sh.in │ └── startup_win.bat └── modules │ ├── COPYING-CMAKE-SCRIPTS │ ├── CheckPrototypeExists.cmake │ ├── CheckTypeExists.cmake │ ├── ConfigCMake.cmake │ ├── ConfigureChecks.cmake │ ├── CopyDirIfDifferent.cmake │ ├── CreateDebugSym.cmake │ ├── FindDCW.cmake │ ├── FindFFTW3.cmake │ ├── FindGDAL.cmake │ ├── FindGEOS.cmake │ ├── FindGLIB.cmake │ ├── FindGMT.cmake │ ├── FindGSHHG.cmake │ ├── FindNETCDF.cmake │ ├── FindPCRE.cmake │ ├── FindPCRE2.cmake │ ├── FindREGEX.cmake │ ├── FindSphinx.cmake │ ├── GmtGenExtraHeaders.cmake │ ├── GmtHelperMacros.cmake │ ├── ManageString.cmake │ ├── NSIS.InstallOptions.ini.in │ └── NSIS.template.in ├── doc ├── CMakeLists.txt ├── examples │ ├── CMakeLists.txt │ ├── README.examples │ ├── anim01 │ │ └── anim01.sh │ ├── anim02 │ │ └── anim02.sh │ ├── anim03 │ │ └── anim03.sh │ ├── anim04 │ │ └── anim04.sh │ ├── anim05 │ │ └── anim05.sh │ ├── anim06 │ │ └── anim06.sh │ ├── anim07 │ │ └── anim07.sh │ ├── anim08 │ │ └── anim08.sh │ ├── anim09 │ │ ├── MOR_PAC_twist_path.txt │ │ ├── MOR_names.txt │ │ └── anim09.sh │ ├── anim10 │ │ └── anim10.sh │ ├── anim11 │ │ └── anim11.sh │ ├── anim12 │ │ └── anim12.sh │ ├── anim13 │ │ └── anim13.sh │ ├── anim14 │ │ └── anim14.sh │ ├── anim15 │ │ └── anim15.sh │ ├── do_animations.sh │ ├── do_examples.bat │ ├── do_examples.sh │ ├── ex01 │ │ ├── ex01.bat │ │ └── ex01.sh │ ├── ex02 │ │ ├── ex02.bat │ │ └── ex02.sh │ ├── ex03 │ │ ├── ex03.bat │ │ └── ex03.sh │ ├── ex04 │ │ ├── ex04.bat │ │ └── ex04.sh │ ├── ex05 │ │ ├── ex05.bat │ │ └── ex05.sh │ ├── ex06 │ │ ├── ex06.bat │ │ └── ex06.sh │ ├── ex07 │ │ ├── ex07.bat │ │ └── ex07.sh │ ├── ex08 │ │ ├── ex08.bat │ │ └── ex08.sh │ ├── ex09 │ │ ├── ex09.bat │ │ └── ex09.sh │ ├── ex10 │ │ ├── ex10.bat │ │ └── ex10.sh │ ├── ex11 │ │ ├── ex11.bat │ │ └── ex11.sh │ ├── ex12 │ │ ├── ex12.bat │ │ └── ex12.sh │ ├── ex13 │ │ ├── ex13.bat │ │ └── ex13.sh │ ├── ex14 │ │ ├── ex14.bat │ │ └── ex14.sh │ ├── ex15 │ │ ├── ex15.bat │ │ └── ex15.sh │ ├── ex16 │ │ ├── ex16.bat │ │ └── ex16.sh │ ├── ex17 │ │ ├── ex17.bat │ │ └── ex17.sh │ ├── ex18 │ │ ├── ex18.bat │ │ └── ex18.sh │ ├── ex19 │ │ ├── ex19.bat │ │ └── ex19.sh │ ├── ex20 │ │ ├── ex20.bat │ │ └── ex20.sh │ ├── ex21 │ │ ├── ex21.bat │ │ └── ex21.sh │ ├── ex22 │ │ ├── ex22.bat │ │ └── ex22.sh │ ├── ex23 │ │ ├── ex23.bat │ │ └── ex23.sh │ ├── ex24 │ │ ├── ex24.bat │ │ └── ex24.sh │ ├── ex25 │ │ ├── ex25.bat │ │ └── ex25.sh │ ├── ex26 │ │ ├── ex26.bat │ │ └── ex26.sh │ ├── ex27 │ │ ├── ex27.bat │ │ └── ex27.sh │ ├── ex28 │ │ ├── ex28.bat │ │ └── ex28.sh │ ├── ex29 │ │ ├── ex29.bat │ │ └── ex29.sh │ ├── ex30 │ │ ├── ex30.bat │ │ └── ex30.sh │ ├── ex31 │ │ ├── ex31.bat │ │ ├── ex31.sh │ │ └── fonts │ │ │ ├── GPL.txt │ │ │ ├── LICENCE.txt │ │ │ ├── LinBiolinum_Bd-0.5.5.otf │ │ │ ├── LinBiolinum_It-0.5.1.otf │ │ │ ├── LinBiolinum_Kb-0.5.4.otf │ │ │ ├── LinBiolinum_Re-0.6.4.otf │ │ │ ├── LinBiolinum_Sl-0.4.9.otf │ │ │ ├── LinLibertine_BI-4.1.0.otf │ │ │ ├── LinLibertine_Bd-4.1.5.otf │ │ │ ├── LinLibertine_C-4.0.4.otf │ │ │ ├── LinLibertine_It-4.2.6.otf │ │ │ ├── LinLibertine_Re-4.7.5.otf │ │ │ ├── OFL.txt │ │ │ └── README.txt │ ├── ex32 │ │ ├── ex32.bat │ │ └── ex32.sh │ ├── ex33 │ │ ├── ex33.bat │ │ └── ex33.sh │ ├── ex34 │ │ ├── ex34.bat │ │ └── ex34.sh │ ├── ex35 │ │ ├── ex35.bat │ │ └── ex35.sh │ ├── ex36 │ │ ├── ex36.bat │ │ └── ex36.sh │ ├── ex37 │ │ ├── ex37.bat │ │ └── ex37.sh │ ├── ex38 │ │ ├── ex38.bat │ │ └── ex38.sh │ ├── ex39 │ │ ├── ex39.bat │ │ └── ex39.sh │ ├── ex40 │ │ ├── ex40.bat │ │ └── ex40.sh │ ├── ex41 │ │ ├── ex41.bat │ │ └── ex41.sh │ ├── ex42 │ │ ├── ex42.bat │ │ └── ex42.sh │ ├── ex43 │ │ ├── ex43.bat │ │ └── ex43.sh │ ├── ex44 │ │ ├── ex44.bat │ │ └── ex44.sh │ ├── ex45 │ │ ├── ex45.bat │ │ └── ex45.sh │ ├── ex46 │ │ ├── ex46.bat │ │ └── ex46.sh │ ├── ex47 │ │ └── ex47.sh │ ├── ex48 │ │ └── ex48.sh │ ├── ex49 │ │ ├── ex49.bat │ │ └── ex49.sh │ ├── ex50 │ │ ├── ex50.bat │ │ └── ex50.sh │ ├── ex51 │ │ └── ex51.sh │ ├── ex52 │ │ └── ex52.sh │ ├── ex53 │ │ └── ex53.sh │ └── images │ │ ├── .gitignore │ │ ├── ex01.ps.dvc │ │ ├── ex02.ps.dvc │ │ ├── ex03.ps.dvc │ │ ├── ex04.ps.dvc │ │ ├── ex04c.ps.dvc │ │ ├── ex05.ps.dvc │ │ ├── ex06.ps.dvc │ │ ├── ex07.ps.dvc │ │ ├── ex08.ps.dvc │ │ ├── ex09.ps.dvc │ │ ├── ex10.ps.dvc │ │ ├── ex11.ps.dvc │ │ ├── ex12.ps.dvc │ │ ├── ex13.ps.dvc │ │ ├── ex14.ps.dvc │ │ ├── ex15.ps.dvc │ │ ├── ex16.ps.dvc │ │ ├── ex17.ps.dvc │ │ ├── ex18.ps.dvc │ │ ├── ex19.ps.dvc │ │ ├── ex20.ps.dvc │ │ ├── ex21.ps.dvc │ │ ├── ex22.ps.dvc │ │ ├── ex23.ps.dvc │ │ ├── ex24.ps.dvc │ │ ├── ex25.ps.dvc │ │ ├── ex26.ps.dvc │ │ ├── ex27.ps.dvc │ │ ├── ex28.ps.dvc │ │ ├── ex29.ps.dvc │ │ ├── ex30.ps.dvc │ │ ├── ex31.ps.dvc │ │ ├── ex32.ps.dvc │ │ ├── ex33.ps.dvc │ │ ├── ex34.ps.dvc │ │ ├── ex35.ps.dvc │ │ ├── ex36.ps.dvc │ │ ├── ex37.ps.dvc │ │ ├── ex38.ps.dvc │ │ ├── ex39.ps.dvc │ │ ├── ex40.ps.dvc │ │ ├── ex41.ps.dvc │ │ ├── ex42.ps.dvc │ │ ├── ex43.ps.dvc │ │ ├── ex44.ps.dvc │ │ ├── ex45.ps.dvc │ │ ├── ex46.ps.dvc │ │ ├── ex47.ps.dvc │ │ ├── ex48.ps.dvc │ │ ├── ex49.ps.dvc │ │ ├── ex50.ps.dvc │ │ ├── ex51.ps.dvc │ │ └── ex52.ps.dvc ├── fig │ ├── CMakeLists.txt │ ├── GMT4_mode.png │ ├── GMT5_external.png │ ├── GMT5_mode.png │ ├── GMT6_Summit_2019.jpg │ ├── GMT_Environment.pdf │ ├── GMT_Environment.png │ ├── GMT_STL.jpg │ ├── GMT_record.pdf │ ├── GMT_record.png │ ├── RPN_fig.jpg │ ├── formatpicture.png │ ├── formatting.png │ ├── gimp-sliders+panel.png │ ├── highres.png │ ├── hsv-cone.png │ ├── noantialias.png │ ├── rendering.png │ ├── srtm1.png │ ├── withantialias.png │ ├── xcode-1.png │ ├── xcode-2.png │ ├── xcode-3.png │ ├── xcode-4.png │ ├── xcode-4b.png │ ├── xcode-5.png │ ├── xcode-6.png │ ├── xcode-7.png │ └── xcode-8.png ├── rst │ ├── CMakeLists.txt │ ├── _static │ │ ├── favicon.png │ │ ├── fonts │ │ │ ├── Atkinson-Hyperlegible-Bold-102a.woff2 │ │ │ ├── Atkinson-Hyperlegible-BoldItalic-102a.woff2 │ │ │ ├── Atkinson-Hyperlegible-Italic-102a.woff2 │ │ │ ├── Atkinson-Hyperlegible-Regular-102a.woff2 │ │ │ └── LICENSE │ │ ├── jquery.js │ │ ├── style.css │ │ ├── underscore.js │ │ └── version_switch.js │ ├── _templates │ │ └── layout.html │ ├── conf.py.in │ ├── requirements.txt │ └── source │ │ ├── RPN_MoreOn.rst_ │ │ ├── RPN_info.rst_ │ │ ├── animations.rst │ │ ├── animations │ │ ├── anim01.rst │ │ ├── anim02.rst │ │ ├── anim03.rst │ │ ├── anim04.rst │ │ ├── anim05.rst │ │ ├── anim06.rst │ │ ├── anim07.rst │ │ ├── anim08.rst │ │ ├── anim09.rst │ │ ├── anim10.rst │ │ ├── anim11.rst │ │ ├── anim12.rst │ │ ├── anim13.rst │ │ ├── anim14.rst │ │ └── anim15.rst │ │ ├── auto_legend_info.rst_ │ │ ├── basemap.rst │ │ ├── batch.rst │ │ ├── begin.rst │ │ ├── blockmean.rst │ │ ├── blockmedian.rst │ │ ├── blockmode.rst │ │ ├── changes.rst │ │ ├── clear.rst │ │ ├── clip.rst │ │ ├── coast.rst │ │ ├── color-picker.rst │ │ ├── colorbar.rst │ │ ├── common_SYN_OPTs.rst_ │ │ ├── common_classic.rst_ │ │ ├── contour.rst │ │ ├── contour_notes.rst_ │ │ ├── cpt_notes.rst_ │ │ ├── create_cpt.rst_ │ │ ├── data-updating.rst_ │ │ ├── datasets.rst │ │ ├── datasets │ │ └── remote-data.rst │ │ ├── deprecated-defaults.rst │ │ ├── devdocs │ │ ├── api.rst │ │ ├── contributing.rst │ │ ├── debug.rst │ │ ├── devdocs.rst │ │ ├── long_options.rst │ │ ├── maintenance.rst │ │ ├── postscriptlight.rst │ │ ├── refactoring.rst │ │ ├── rst-cheatsheet.rst │ │ ├── rst-cheatsheet.rst_ │ │ └── team.rst │ │ ├── dimfilter.rst │ │ ├── docs.rst │ │ ├── dump_rgb.rst_ │ │ ├── end.rst │ │ ├── events.rst │ │ ├── explain_-A.rst_ │ │ ├── explain_-B.rst_ │ │ ├── explain_-D_cap.rst_ │ │ ├── explain_-F_box.rst_ │ │ ├── explain_-I.rst_ │ │ ├── explain_-J.rst_ │ │ ├── explain_-Jproj_full.rst_ │ │ ├── explain_-Jz.rst_ │ │ ├── explain_-K.rst_ │ │ ├── explain_-K_full.rst_ │ │ ├── explain_-L_scale.rst_ │ │ ├── explain_-O.rst_ │ │ ├── explain_-O_full.rst_ │ │ ├── explain_-P.rst_ │ │ ├── explain_-P_full.rst_ │ │ ├── explain_-R.rst_ │ │ ├── explain_-Rgeo.rst_ │ │ ├── explain_-Rz.rst_ │ │ ├── explain_-Rz_full.rst_ │ │ ├── explain_-T_rose.rst_ │ │ ├── explain_-U.rst_ │ │ ├── explain_-V.rst_ │ │ ├── explain_-XY.rst_ │ │ ├── explain_-aspatial.rst_ │ │ ├── explain_-aspatial_full.rst_ │ │ ├── explain_-bi.rst_ │ │ ├── explain_-bi_full.rst_ │ │ ├── explain_-bo.rst_ │ │ ├── explain_-bo_full.rst_ │ │ ├── explain_-c.rst_ │ │ ├── explain_-c_full.rst_ │ │ ├── explain_-d.rst_ │ │ ├── explain_-d_full.rst_ │ │ ├── explain_-di.rst_ │ │ ├── explain_-do.rst_ │ │ ├── explain_-e.rst_ │ │ ├── explain_-e_full.rst_ │ │ ├── explain_-f.rst_ │ │ ├── explain_-f_full.rst_ │ │ ├── explain_-g.rst_ │ │ ├── explain_-g_full.rst_ │ │ ├── explain_-h.rst_ │ │ ├── explain_-h_full.rst_ │ │ ├── explain_-icols.rst_ │ │ ├── explain_-icols_full.rst_ │ │ ├── explain_-l.rst_ │ │ ├── explain_-l_full.rst_ │ │ ├── explain_-n.rst_ │ │ ├── explain_-n_full.rst_ │ │ ├── explain_-ocols.rst_ │ │ ├── explain_-ocols_full.rst_ │ │ ├── explain_-q.rst_ │ │ ├── explain_-q_full.rst_ │ │ ├── explain_-qi.rst_ │ │ ├── explain_-qo.rst_ │ │ ├── explain_-s.rst_ │ │ ├── explain_-s_full.rst_ │ │ ├── explain_-t.rst_ │ │ ├── explain_-t_full.rst_ │ │ ├── explain_-tv_full.rst_ │ │ ├── explain_-w.rst_ │ │ ├── explain_-w_full.rst_ │ │ ├── explain_3D_symbols.rst_ │ │ ├── explain_array.rst_ │ │ ├── explain_clabelinfo.rst_ │ │ ├── explain_colon.rst_ │ │ ├── explain_colon_full.rst_ │ │ ├── explain_color.rst_ │ │ ├── explain_contdump.rst_ │ │ ├── explain_contlabel.rst_ │ │ ├── explain_contticks.rst_ │ │ ├── explain_core.rst_ │ │ ├── explain_core_full.rst_ │ │ ├── explain_cpt_output.rst_ │ │ ├── explain_distcalc.rst_ │ │ ├── explain_distcalc_full.rst_ │ │ ├── explain_distunits.rst_ │ │ ├── explain_ellipsoidal.rst_ │ │ ├── explain_example.rst_ │ │ ├── explain_fft.rst_ │ │ ├── explain_fill.rst_ │ │ ├── explain_float.rst_ │ │ ├── explain_font.rst_ │ │ ├── explain_grd_coord.rst_ │ │ ├── explain_grd_inout.rst_ │ │ ├── explain_grdresample.rst_ │ │ ├── explain_grdresample2.rst_ │ │ ├── explain_gshhg.rst_ │ │ ├── explain_help.rst_ │ │ ├── explain_help_nopar.rst_ │ │ ├── explain_inside.rst_ │ │ ├── explain_intables.rst_ │ │ ├── explain_intense.rst_ │ │ ├── explain_interpolant.rst_ │ │ ├── explain_line_draw.rst_ │ │ ├── explain_lines.rst_ │ │ ├── explain_nodereg.rst_ │ │ ├── explain_nodereg_full.rst_ │ │ ├── explain_pen.rst_ │ │ ├── explain_perspective.rst_ │ │ ├── explain_perspective_full.rst_ │ │ ├── explain_postscript.rst_ │ │ ├── explain_precision.rst_ │ │ ├── explain_refpoint.rst_ │ │ ├── explain_sto_rcl_clr.rst_ │ │ ├── explain_symbols.rst_ │ │ ├── explain_symbols_ternary.rst_ │ │ ├── explain_transparency.rst_ │ │ ├── explain_vectors.rst_ │ │ ├── figure.rst │ │ ├── filter1d.rst │ │ ├── fitcircle.rst │ │ ├── gallery.rst │ │ ├── gallery │ │ ├── ex01.rst │ │ ├── ex02.rst │ │ ├── ex03.rst │ │ ├── ex04.rst │ │ ├── ex05.rst │ │ ├── ex06.rst │ │ ├── ex07.rst │ │ ├── ex08.rst │ │ ├── ex09.rst │ │ ├── ex10.rst │ │ ├── ex11.rst │ │ ├── ex12.rst │ │ ├── ex13.rst │ │ ├── ex14.rst │ │ ├── ex15.rst │ │ ├── ex16.rst │ │ ├── ex17.rst │ │ ├── ex18.rst │ │ ├── ex19.rst │ │ ├── ex20.rst │ │ ├── ex21.rst │ │ ├── ex22.rst │ │ ├── ex23.rst │ │ ├── ex24.rst │ │ ├── ex25.rst │ │ ├── ex26.rst │ │ ├── ex27.rst │ │ ├── ex28.rst │ │ ├── ex29.rst │ │ ├── ex30.rst │ │ ├── ex31.rst │ │ ├── ex32.rst │ │ ├── ex33.rst │ │ ├── ex34.rst │ │ ├── ex35.rst │ │ ├── ex36.rst │ │ ├── ex37.rst │ │ ├── ex38.rst │ │ ├── ex39.rst │ │ ├── ex40.rst │ │ ├── ex41.rst │ │ ├── ex42.rst │ │ ├── ex43.rst │ │ ├── ex44.rst │ │ ├── ex45.rst │ │ ├── ex46.rst │ │ ├── ex47.rst │ │ ├── ex48.rst │ │ ├── ex49.rst │ │ ├── ex50.rst │ │ ├── ex51.rst │ │ ├── ex52.rst │ │ └── ex53.rst │ │ ├── gmt-config.rst │ │ ├── gmt.conf.rst │ │ ├── gmt.rst │ │ ├── gmt2kml.rst │ │ ├── gmt5syntax.rst │ │ ├── gmt_shell_functions.sh.rst │ │ ├── gmtbinstats.rst │ │ ├── gmtcolors.rst │ │ ├── gmtconnect.rst │ │ ├── gmtconvert.rst │ │ ├── gmtdefaults.rst │ │ ├── gmtget.rst │ │ ├── gmtinfo.rst │ │ ├── gmtlogo-classic.rst │ │ ├── gmtlogo.rst │ │ ├── gmtmath.rst │ │ ├── gmtregress.rst │ │ ├── gmtselect.rst │ │ ├── gmtset.rst │ │ ├── gmtsimplify.rst │ │ ├── gmtspatial.rst │ │ ├── gmtsplit.rst │ │ ├── gmtswitch.rst │ │ ├── gmtvector.rst │ │ ├── gmtwhich.rst │ │ ├── grd2cpt.rst │ │ ├── grd2kml.rst │ │ ├── grd2xyz.rst │ │ ├── grdblend.rst │ │ ├── grdclip.rst │ │ ├── grdcontour-classic.rst │ │ ├── grdcontour.rst │ │ ├── grdconvert.rst │ │ ├── grdcut.rst │ │ ├── grdedit.rst │ │ ├── grdfft.rst │ │ ├── grdfill.rst │ │ ├── grdfilter.rst │ │ ├── grdgdal.rst │ │ ├── grdgradient.rst │ │ ├── grdhisteq.rst │ │ ├── grdimage-classic.rst │ │ ├── grdimage.rst │ │ ├── grdinfo.rst │ │ ├── grdinterpolate.rst │ │ ├── grdlandmask.rst │ │ ├── grdmask.rst │ │ ├── grdmath.rst │ │ ├── grdmath_examples.rst_ │ │ ├── grdmix.rst │ │ ├── grdpaste.rst │ │ ├── grdproject.rst │ │ ├── grdsample.rst │ │ ├── grdselect.rst │ │ ├── grdtrack.rst │ │ ├── grdtrend.rst │ │ ├── grdvector-classic.rst │ │ ├── grdvector.rst │ │ ├── grdview-classic.rst │ │ ├── grdview.rst │ │ ├── grdvolume.rst │ │ ├── greenspline.rst │ │ ├── histogram.rst │ │ ├── image.rst │ │ ├── index.rst │ │ ├── inset.rst │ │ ├── install.rst │ │ ├── intro.rst │ │ ├── isogmt.rst │ │ ├── kml2gmt.rst │ │ ├── legend.rst │ │ ├── macos_preview_issue.rst_ │ │ ├── makecpt.rst │ │ ├── mapproject.rst │ │ ├── mask.rst │ │ ├── migrating.rst │ │ ├── module_core_purpose.rst_ │ │ ├── modules-classic.rst │ │ ├── modules.rst │ │ ├── movie.rst │ │ ├── nearneighbor.rst │ │ ├── oneliner_info.rst_ │ │ ├── plot.rst │ │ ├── plot3d.rst │ │ ├── plot3d_notes.rst_ │ │ ├── plot_notes.rst_ │ │ ├── proj-codes.rst_ │ │ ├── project.rst │ │ ├── psbasemap.rst │ │ ├── psclip.rst │ │ ├── pscoast.rst │ │ ├── pscontour.rst │ │ ├── psconvert.rst │ │ ├── psevents.rst │ │ ├── pshistogram.rst │ │ ├── psimage.rst │ │ ├── pslegend.rst │ │ ├── psmask.rst │ │ ├── psrose.rst │ │ ├── psscale.rst │ │ ├── pssolar.rst │ │ ├── psternary.rst │ │ ├── pstext.rst │ │ ├── pswiggle.rst │ │ ├── psxy.rst │ │ ├── psxyz.rst │ │ ├── reference.rst │ │ ├── reference │ │ ├── colorspace.rst │ │ ├── contour-annotations.rst │ │ ├── coordinate-transformations.rst │ │ ├── cpts.rst │ │ ├── custom-symbols.rst │ │ ├── data-filtering.rst │ │ ├── features.rst │ │ ├── file-formats.rst │ │ ├── gmt-latex.rst │ │ ├── include-figures.rst │ │ ├── introduction.rst │ │ ├── map-projections.rst │ │ ├── non-unix-platforms.rst │ │ ├── octal-codes.rst │ │ ├── ogrgmt-format.rst │ │ ├── one-liner.rst │ │ ├── options.rst │ │ ├── postscript-fonts.rst │ │ ├── predefined-patterns.rst │ │ ├── preface.rst │ │ └── supplemental-packages.rst │ │ ├── rose.rst │ │ ├── sample1d.rst │ │ ├── solar.rst │ │ ├── spectrum1d.rst │ │ ├── sph2grd.rst │ │ ├── sphdistance.rst │ │ ├── sphinterpolate.rst │ │ ├── sphtriangulate.rst │ │ ├── std-opts.rst │ │ ├── subplot.rst │ │ ├── supplements │ │ ├── geodesy │ │ │ ├── earthtide.rst │ │ │ ├── gpsgridder.rst │ │ │ ├── psvelo.rst │ │ │ └── velo.rst │ │ ├── gsfml │ │ │ ├── fzanalyzer.rst │ │ │ ├── fzblender.rst │ │ │ ├── fzinformer.rst │ │ │ ├── fzmapper.rst │ │ │ ├── fzmodeler.rst │ │ │ ├── fzprofiler.rst │ │ │ └── mlconverter.rst │ │ ├── gshhg │ │ │ └── gshhg.rst │ │ ├── img │ │ │ ├── img2google.rst │ │ │ └── img2grd.rst │ │ ├── mgd77 │ │ │ ├── explain_ncid.rst_ │ │ │ ├── mgd77convert.rst │ │ │ ├── mgd77header.rst │ │ │ ├── mgd77info.rst │ │ │ ├── mgd77list.rst │ │ │ ├── mgd77magref.rst │ │ │ ├── mgd77manage.rst │ │ │ ├── mgd77path.rst │ │ │ ├── mgd77sniffer.rst │ │ │ ├── mgd77track-classic.rst │ │ │ └── mgd77track.rst │ │ ├── module_supplements_purpose.rst_ │ │ ├── potential │ │ │ ├── explain_geometry.rst_ │ │ │ ├── gmtflexure.rst │ │ │ ├── gmtgravmag3d.rst │ │ │ ├── gravfft.rst │ │ │ ├── gravprisms.rst │ │ │ ├── grdflexure.rst │ │ │ ├── grdgravmag3d.rst │ │ │ ├── grdredpol.rst │ │ │ ├── grdseamount.rst │ │ │ ├── talwani2d.rst │ │ │ └── talwani3d.rst │ │ ├── segy │ │ │ ├── pssegy.rst │ │ │ ├── pssegyz.rst │ │ │ ├── segy.rst │ │ │ ├── segy2grd.rst │ │ │ └── segyz.rst │ │ ├── seis │ │ │ ├── coupe.rst │ │ │ ├── explain_meca_-S.rst_ │ │ │ ├── gmtisf.rst │ │ │ ├── grdshake.rst │ │ │ ├── grdvs30.rst │ │ │ ├── meca.rst │ │ │ ├── meca_notes.rst_ │ │ │ ├── polar.rst │ │ │ ├── pscoupe.rst │ │ │ ├── psmeca.rst │ │ │ ├── pspolar.rst │ │ │ ├── pssac.rst │ │ │ ├── sac.rst │ │ │ └── seis_extra_cols.rst_ │ │ ├── spotter │ │ │ ├── backtracker.rst │ │ │ ├── explain_geodetic.rst_ │ │ │ ├── explain_rots.rst_ │ │ │ ├── gmtpmodeler.rst │ │ │ ├── grdpmodeler.rst │ │ │ ├── grdrotater.rst │ │ │ ├── grdspotter.rst │ │ │ ├── hotspotter.rst │ │ │ ├── originater.rst │ │ │ ├── polespotter.rst │ │ │ ├── rotconverter.rst │ │ │ └── rotsmoother.rst │ │ ├── windbarbs │ │ │ ├── barb.rst │ │ │ ├── grdbarb.rst │ │ │ └── psbarb.rst │ │ └── x2sys │ │ │ ├── explain_tag.rst_ │ │ │ ├── explain_track.rst_ │ │ │ ├── x2sys_binlist.rst │ │ │ ├── x2sys_cross.rst │ │ │ ├── x2sys_datalist.rst │ │ │ ├── x2sys_get.rst │ │ │ ├── x2sys_init.rst │ │ │ ├── x2sys_list.rst │ │ │ ├── x2sys_merge.rst │ │ │ ├── x2sys_put.rst │ │ │ ├── x2sys_refs.rst_ │ │ │ ├── x2sys_report.rst │ │ │ └── x2sys_solve.rst │ │ ├── surface.rst │ │ ├── switching.rst │ │ ├── ternary.rst │ │ ├── text.rst │ │ ├── text_notes.rst_ │ │ ├── theme-settings.rst │ │ ├── trend1d.rst │ │ ├── trend2d.rst │ │ ├── triangulate.rst │ │ ├── tutorial.rst │ │ ├── tutorial │ │ ├── bash │ │ │ ├── index.rst │ │ │ ├── session-1.rst │ │ │ ├── session-2.rst │ │ │ ├── session-3.rst │ │ │ └── session-4.rst │ │ └── julia │ │ │ ├── index.rst │ │ │ ├── session-1.rst │ │ │ ├── session-2.rst │ │ │ ├── session-3.rst │ │ │ └── session-4.rst │ │ ├── use_cpt_grd.rst_ │ │ ├── users-contrib-symbols.rst │ │ ├── users-contrib-symbols │ │ ├── biology │ │ │ ├── Cetacea.rst │ │ │ ├── atlantwhitesided.def │ │ │ ├── atlantwhitesided.rst │ │ │ ├── atlantwhitesided_high.def │ │ │ ├── atlantwhitesided_high.rst │ │ │ ├── atlantwhitesided_low.def │ │ │ ├── atlantwhitesided_low.rst │ │ │ ├── beluga.def │ │ │ ├── beluga.rst │ │ │ ├── beluga_high.def │ │ │ ├── beluga_high.rst │ │ │ ├── beluga_low.def │ │ │ ├── beluga_low.rst │ │ │ ├── bottlenose.def │ │ │ ├── bottlenose.rst │ │ │ ├── bottlenose_high.def │ │ │ ├── bottlenose_high.rst │ │ │ ├── bottlenose_low.def │ │ │ ├── bottlenose_low.rst │ │ │ ├── bowhead.def │ │ │ ├── bowhead.rst │ │ │ ├── bowhead_high.def │ │ │ ├── bowhead_high.rst │ │ │ ├── bowhead_low.def │ │ │ ├── bowhead_low.rst │ │ │ ├── burmeistersporpoise.def │ │ │ ├── burmeistersporpoise.rst │ │ │ ├── burmeistersporpoise_high.def │ │ │ ├── burmeistersporpoise_high.rst │ │ │ ├── burmeistersporpoise_low.def │ │ │ ├── burmeistersporpoise_low.rst │ │ │ ├── commondolphin.def │ │ │ ├── commondolphin.rst │ │ │ ├── commondolphin_high.def │ │ │ ├── commondolphin_high.rst │ │ │ ├── commondolphin_low.def │ │ │ ├── commondolphin_low.rst │ │ │ ├── commondolphin_midhigh.def │ │ │ ├── commondolphin_midhigh.rst │ │ │ ├── commondolphin_midlow.def │ │ │ ├── commondolphin_midlow.rst │ │ │ ├── commonporpoise.def │ │ │ ├── commonporpoise.rst │ │ │ ├── commonporpoise_high.def │ │ │ ├── commonporpoise_high.rst │ │ │ ├── commonporpoise_low.def │ │ │ ├── commonporpoise_low.rst │ │ │ ├── cuviersbeaked.def │ │ │ ├── cuviersbeaked.rst │ │ │ ├── cuviersbeaked_high.def │ │ │ ├── cuviersbeaked_high.rst │ │ │ ├── cuviersbeaked_low.def │ │ │ ├── cuviersbeaked_low.rst │ │ │ ├── finwhale.def │ │ │ ├── finwhale.rst │ │ │ ├── finwhale_high.def │ │ │ ├── finwhale_high.rst │ │ │ ├── finwhale_low.def │ │ │ ├── finwhale_low.rst │ │ │ ├── graywhale.def │ │ │ ├── graywhale.rst │ │ │ ├── graywhale_high.def │ │ │ ├── graywhale_high.rst │ │ │ ├── graywhale_low.def │ │ │ ├── graywhale_low.rst │ │ │ ├── humpbacktail_one.def │ │ │ ├── humpbacktail_one.rst │ │ │ ├── humpbacktail_one_low.def │ │ │ ├── humpbacktail_one_low.rst │ │ │ ├── humpbacktail_two.def │ │ │ ├── humpbacktail_two.rst │ │ │ ├── humpbacktail_two_low.def │ │ │ ├── humpbacktail_two_low.rst │ │ │ ├── images │ │ │ │ ├── atlantwhitesided.png │ │ │ │ ├── atlantwhitesided_high.png │ │ │ │ ├── atlantwhitesided_low.png │ │ │ │ ├── beluga.png │ │ │ │ ├── beluga_high.png │ │ │ │ ├── beluga_low.png │ │ │ │ ├── bottlenose.png │ │ │ │ ├── bottlenose_high.png │ │ │ │ ├── bottlenose_low.png │ │ │ │ ├── bowhead.png │ │ │ │ ├── bowhead_high.png │ │ │ │ ├── bowhead_low.png │ │ │ │ ├── burmeistersporpoise.png │ │ │ │ ├── burmeistersporpoise_high.png │ │ │ │ ├── burmeistersporpoise_low.png │ │ │ │ ├── commondolphin.png │ │ │ │ ├── commondolphin_high.png │ │ │ │ ├── commondolphin_low.png │ │ │ │ ├── commondolphin_midhigh.png │ │ │ │ ├── commondolphin_midlow.png │ │ │ │ ├── commonporpoise.png │ │ │ │ ├── commonporpoise_high.png │ │ │ │ ├── commonporpoise_low.png │ │ │ │ ├── cuviersbeaked.png │ │ │ │ ├── cuviersbeaked_high.png │ │ │ │ ├── cuviersbeaked_low.png │ │ │ │ ├── finwhale.png │ │ │ │ ├── finwhale_high.png │ │ │ │ ├── finwhale_low.png │ │ │ │ ├── graywhale.png │ │ │ │ ├── graywhale_high.png │ │ │ │ ├── graywhale_low.png │ │ │ │ ├── humpbacktail_one.png │ │ │ │ ├── humpbacktail_one_low.png │ │ │ │ ├── humpbacktail_two.png │ │ │ │ ├── humpbacktail_two_low.png │ │ │ │ ├── jumpback.png │ │ │ │ ├── jumpback_high.png │ │ │ │ ├── jumpback_low.png │ │ │ │ ├── killerwhale.png │ │ │ │ ├── killerwhale_high.png │ │ │ │ ├── killerwhale_low.png │ │ │ │ ├── longfinnedpilotwhale.png │ │ │ │ ├── longfinnedpilotwhale_high.png │ │ │ │ ├── longfinnedpilotwhale_low.png │ │ │ │ ├── minkewhale.png │ │ │ │ ├── minkewhale_high.png │ │ │ │ ├── minkewhale_low.png │ │ │ │ ├── northernrightwhale.png │ │ │ │ ├── northernrightwhale_high.png │ │ │ │ ├── northernrightwhale_low.png │ │ │ │ ├── pigmyspermwhale.png │ │ │ │ ├── pigmyspermwhale_high.png │ │ │ │ ├── pigmyspermwhale_low.png │ │ │ │ ├── rissosdolphin.png │ │ │ │ ├── rissosdolphin_high.png │ │ │ │ ├── rissosdolphin_low.png │ │ │ │ ├── seiwhale.png │ │ │ │ ├── seiwhale_high.png │ │ │ │ ├── seiwhale_low.png │ │ │ │ ├── shortfinnedpilotwhale.png │ │ │ │ ├── shortfinnedpilotwhale_high.png │ │ │ │ ├── shortfinnedpilotwhale_low.png │ │ │ │ ├── southernrightwhale.png │ │ │ │ ├── southernrightwhale_high.png │ │ │ │ ├── southernrightwhale_low.png │ │ │ │ ├── spectacledporpoise.png │ │ │ │ ├── spectacledporpoise_high.png │ │ │ │ ├── spectacledporpoise_low.png │ │ │ │ ├── spermwhale.png │ │ │ │ ├── spermwhale_high.png │ │ │ │ ├── spermwhale_low.png │ │ │ │ ├── spermwhaletail.png │ │ │ │ ├── spermwhaletail_high.png │ │ │ │ ├── spermwhaletail_low.png │ │ │ │ ├── srightwhaledolphin.png │ │ │ │ ├── srightwhaledolphin_high.png │ │ │ │ ├── srightwhaledolphin_low.png │ │ │ │ ├── stripeddolphin.png │ │ │ │ ├── stripeddolphin_high.png │ │ │ │ ├── stripeddolphin_low.png │ │ │ │ ├── unidentifiedbeakedwhale.png │ │ │ │ ├── unidentifiedbeakedwhale_high.png │ │ │ │ ├── unidentifiedbeakedwhale_low.png │ │ │ │ ├── unidentifieddolphin.png │ │ │ │ ├── unidentifieddolphin_high.png │ │ │ │ ├── unidentifieddolphin_low.png │ │ │ │ ├── unidentifiedwhale.png │ │ │ │ ├── unidentifiedwhale_high.png │ │ │ │ └── unidentifiedwhale_low.png │ │ │ ├── jumpback.def │ │ │ ├── jumpback.rst │ │ │ ├── jumpback_high.def │ │ │ ├── jumpback_high.rst │ │ │ ├── jumpback_low.def │ │ │ ├── jumpback_low.rst │ │ │ ├── killerwhale.def │ │ │ ├── killerwhale.rst │ │ │ ├── killerwhale_high.def │ │ │ ├── killerwhale_high.rst │ │ │ ├── killerwhale_low.def │ │ │ ├── killerwhale_low.rst │ │ │ ├── longfinnedpilotwhale.def │ │ │ ├── longfinnedpilotwhale.rst │ │ │ ├── longfinnedpilotwhale_high.def │ │ │ ├── longfinnedpilotwhale_high.rst │ │ │ ├── longfinnedpilotwhale_low.def │ │ │ ├── longfinnedpilotwhale_low.rst │ │ │ ├── minkewhale.def │ │ │ ├── minkewhale.rst │ │ │ ├── minkewhale_high.def │ │ │ ├── minkewhale_high.rst │ │ │ ├── minkewhale_low.def │ │ │ ├── minkewhale_low.rst │ │ │ ├── northernrightwhale.def │ │ │ ├── northernrightwhale.rst │ │ │ ├── northernrightwhale_high.def │ │ │ ├── northernrightwhale_high.rst │ │ │ ├── northernrightwhale_low.def │ │ │ ├── northernrightwhale_low.rst │ │ │ ├── pigmyspermwhale.def │ │ │ ├── pigmyspermwhale.rst │ │ │ ├── pigmyspermwhale_high.def │ │ │ ├── pigmyspermwhale_high.rst │ │ │ ├── pigmyspermwhale_low.def │ │ │ ├── pigmyspermwhale_low.rst │ │ │ ├── rissosdolphin.def │ │ │ ├── rissosdolphin.rst │ │ │ ├── rissosdolphin_high.def │ │ │ ├── rissosdolphin_high.rst │ │ │ ├── rissosdolphin_low.def │ │ │ ├── rissosdolphin_low.rst │ │ │ ├── seiwhale.def │ │ │ ├── seiwhale.rst │ │ │ ├── seiwhale_high.def │ │ │ ├── seiwhale_high.rst │ │ │ ├── seiwhale_low.def │ │ │ ├── seiwhale_low.rst │ │ │ ├── shortfinnedpilotwhale.def │ │ │ ├── shortfinnedpilotwhale.rst │ │ │ ├── shortfinnedpilotwhale_high.def │ │ │ ├── shortfinnedpilotwhale_high.rst │ │ │ ├── shortfinnedpilotwhale_low.def │ │ │ ├── shortfinnedpilotwhale_low.rst │ │ │ ├── southernrightwhale.def │ │ │ ├── southernrightwhale.rst │ │ │ ├── southernrightwhale_high.def │ │ │ ├── southernrightwhale_high.rst │ │ │ ├── southernrightwhale_low.def │ │ │ ├── southernrightwhale_low.rst │ │ │ ├── spectacledporpoise.def │ │ │ ├── spectacledporpoise.rst │ │ │ ├── spectacledporpoise_high.def │ │ │ ├── spectacledporpoise_high.rst │ │ │ ├── spectacledporpoise_low.def │ │ │ ├── spectacledporpoise_low.rst │ │ │ ├── spermwhale.def │ │ │ ├── spermwhale.rst │ │ │ ├── spermwhale_high.def │ │ │ ├── spermwhale_high.rst │ │ │ ├── spermwhale_low.def │ │ │ ├── spermwhale_low.rst │ │ │ ├── spermwhaletail.def │ │ │ ├── spermwhaletail.rst │ │ │ ├── spermwhaletail_high.def │ │ │ ├── spermwhaletail_high.rst │ │ │ ├── spermwhaletail_low.def │ │ │ ├── spermwhaletail_low.rst │ │ │ ├── srightwhaledolphin.def │ │ │ ├── srightwhaledolphin.rst │ │ │ ├── srightwhaledolphin_high.def │ │ │ ├── srightwhaledolphin_high.rst │ │ │ ├── srightwhaledolphin_low.def │ │ │ ├── srightwhaledolphin_low.rst │ │ │ ├── stripeddolphin.def │ │ │ ├── stripeddolphin.rst │ │ │ ├── stripeddolphin_high.def │ │ │ ├── stripeddolphin_high.rst │ │ │ ├── stripeddolphin_low.def │ │ │ ├── stripeddolphin_low.rst │ │ │ ├── unidentifiedbeakedwhale.def │ │ │ ├── unidentifiedbeakedwhale.rst │ │ │ ├── unidentifiedbeakedwhale_high.def │ │ │ ├── unidentifiedbeakedwhale_high.rst │ │ │ ├── unidentifiedbeakedwhale_low.def │ │ │ ├── unidentifiedbeakedwhale_low.rst │ │ │ ├── unidentifieddolphin.def │ │ │ ├── unidentifieddolphin.rst │ │ │ ├── unidentifieddolphin_high.def │ │ │ ├── unidentifieddolphin_high.rst │ │ │ ├── unidentifieddolphin_low.def │ │ │ ├── unidentifieddolphin_low.rst │ │ │ ├── unidentifiedwhale.def │ │ │ ├── unidentifiedwhale.rst │ │ │ ├── unidentifiedwhale_high.def │ │ │ ├── unidentifiedwhale_high.rst │ │ │ ├── unidentifiedwhale_low.def │ │ │ └── unidentifiedwhale_low.rst │ │ ├── geology │ │ │ ├── Geology.rst │ │ │ ├── geo-cleavage.def │ │ │ ├── geo-cleavage.rst │ │ │ ├── geo-cleavage_hor.def │ │ │ ├── geo-cleavage_hor.rst │ │ │ ├── geo-cleavage_vert.def │ │ │ ├── geo-cleavage_vert.rst │ │ │ ├── geo-foliation-2.def │ │ │ ├── geo-foliation-2.rst │ │ │ ├── geo-foliation-3.def │ │ │ ├── geo-foliation-3.rst │ │ │ ├── geo-foliation.def │ │ │ ├── geo-foliation.rst │ │ │ ├── geo-foliation_hor.def │ │ │ ├── geo-foliation_hor.rst │ │ │ ├── geo-foliation_vert.def │ │ │ ├── geo-foliation_vert.rst │ │ │ ├── geo-joint.def │ │ │ ├── geo-joint.rst │ │ │ ├── geo-joint_hor.def │ │ │ ├── geo-joint_hor.rst │ │ │ ├── geo-joint_vert.def │ │ │ ├── geo-joint_vert.rst │ │ │ ├── geo-lineation-2.def │ │ │ ├── geo-lineation-2.rst │ │ │ ├── geo-lineation-3.def │ │ │ ├── geo-lineation-3.rst │ │ │ ├── geo-lineation.def │ │ │ ├── geo-lineation.rst │ │ │ ├── geo-lineation_hor.def │ │ │ ├── geo-lineation_hor.rst │ │ │ ├── geo-lineation_vert.def │ │ │ ├── geo-lineation_vert.rst │ │ │ ├── geo-plane.def │ │ │ ├── geo-plane.rst │ │ │ ├── geo-plane_gentle.def │ │ │ ├── geo-plane_gentle.rst │ │ │ ├── geo-plane_hor.def │ │ │ ├── geo-plane_hor.rst │ │ │ ├── geo-plane_inv.def │ │ │ ├── geo-plane_inv.rst │ │ │ ├── geo-plane_medium.def │ │ │ ├── geo-plane_medium.rst │ │ │ ├── geo-plane_rake.def │ │ │ ├── geo-plane_rake.rst │ │ │ ├── geo-plane_steep.def │ │ │ ├── geo-plane_steep.rst │ │ │ ├── geo-plane_und.def │ │ │ ├── geo-plane_und.rst │ │ │ ├── geo-plane_vert.def │ │ │ ├── geo-plane_vert.rst │ │ │ └── images │ │ │ │ ├── geo-cleavage.png │ │ │ │ ├── geo-cleavage_hor.png │ │ │ │ ├── geo-cleavage_vert.png │ │ │ │ ├── geo-foliation-2.png │ │ │ │ ├── geo-foliation-3.png │ │ │ │ ├── geo-foliation.png │ │ │ │ ├── geo-foliation_hor.png │ │ │ │ ├── geo-foliation_vert.png │ │ │ │ ├── geo-joint.png │ │ │ │ ├── geo-joint_hor.png │ │ │ │ ├── geo-joint_vert.png │ │ │ │ ├── geo-lineation-2.png │ │ │ │ ├── geo-lineation-3.png │ │ │ │ ├── geo-lineation.png │ │ │ │ ├── geo-lineation_hor.png │ │ │ │ ├── geo-lineation_vert.png │ │ │ │ ├── geo-plane.png │ │ │ │ ├── geo-plane_gentle.png │ │ │ │ ├── geo-plane_hor.png │ │ │ │ ├── geo-plane_inv.png │ │ │ │ ├── geo-plane_medium.png │ │ │ │ ├── geo-plane_rake.png │ │ │ │ ├── geo-plane_steep.png │ │ │ │ ├── geo-plane_und.png │ │ │ │ └── geo-plane_vert.png │ │ └── misc │ │ │ ├── images │ │ │ └── pirata.png │ │ │ ├── pirata.def │ │ │ └── pirata.rst │ │ ├── wiggle.rst │ │ └── xyz2grd.rst └── scripts │ ├── CMakeLists.txt │ ├── GMT_-B_custom.sh │ ├── GMT_-B_geo_1.sh │ ├── GMT_-B_geo_2.sh │ ├── GMT_-B_linear.sh │ ├── GMT_-B_log.sh │ ├── GMT_-B_pow.sh │ ├── GMT_-B_radians.sh │ ├── GMT_-B_slanted.sh │ ├── GMT_-B_time1.sh │ ├── GMT_-B_time2.sh │ ├── GMT_-B_time3.sh │ ├── GMT_-B_time4.sh │ ├── GMT_-B_time5.sh │ ├── GMT_-B_time6.sh │ ├── GMT_-B_time7.sh │ ├── GMT_-J.sh │ ├── GMT_-R.sh │ ├── GMT_-U.sh │ ├── GMT_-XY.sh │ ├── GMT_API_flow.sh │ ├── GMT_API_use.sh │ ├── GMT_App_E.sh │ ├── GMT_App_F_stand+_iso+.sh │ ├── GMT_App_F_symbol_dingbats.sh │ ├── GMT_App_G.sh │ ├── GMT_App_J_1.sh │ ├── GMT_App_J_2.sh │ ├── GMT_App_J_3.sh │ ├── GMT_App_K_1.sh │ ├── GMT_App_K_2.sh │ ├── GMT_App_K_3.sh │ ├── GMT_App_K_4.sh │ ├── GMT_App_K_5.sh │ ├── GMT_App_M_1a.sh │ ├── GMT_App_M_1b.sh │ ├── GMT_App_M_1c.sh │ ├── GMT_App_M_1d.sh │ ├── GMT_App_M_2.sh │ ├── GMT_App_N_1.sh │ ├── GMT_App_O_1.sh │ ├── GMT_App_O_2.sh │ ├── GMT_App_O_3.sh │ ├── GMT_App_O_4.sh │ ├── GMT_App_O_5.sh │ ├── GMT_App_O_6.sh │ ├── GMT_App_O_7.sh │ ├── GMT_App_O_8.sh │ ├── GMT_App_O_9.sh │ ├── GMT_CPTscale.sh │ ├── GMT_Defaults_1a.sh │ ├── GMT_Defaults_1b.sh │ ├── GMT_Defaults_1c.sh │ ├── GMT_RGBchart.sh │ ├── GMT_SRTM.sh │ ├── GMT_TM.sh │ ├── GMT_albers.sh │ ├── GMT_anchor.sh │ ├── GMT_angle-azim.sh │ ├── GMT_arrows.sh │ ├── GMT_arrows_types.sh │ ├── GMT_atan.sh │ ├── GMT_autolegend.sh │ ├── GMT_az_equidistant.sh │ ├── GMT_base_symbols1.sh │ ├── GMT_base_symbols2.sh │ ├── GMT_base_symbols3.sh │ ├── GMT_base_symbols3D.sh │ ├── GMT_base_symbols4.sh │ ├── GMT_base_symbols5.sh │ ├── GMT_base_symbols6.sh │ ├── GMT_base_symbols7.sh │ ├── GMT_base_symbols8.sh │ ├── GMT_base_symbols9.sh │ ├── GMT_bezier.sh │ ├── GMT_blend.sh │ ├── GMT_blendtype.sh │ ├── GMT_cap.sh │ ├── GMT_cassini.sh │ ├── GMT_chunking.sh │ ├── GMT_cmyk.sh │ ├── GMT_color_hsv.sh │ ├── GMT_color_interpolate.sh │ ├── GMT_colorbar.sh │ ├── GMT_colorlist.sh │ ├── GMT_coverlogo.sh │ ├── GMT_cycle_1.sh │ ├── GMT_cycle_2.sh │ ├── GMT_cycle_3.sh │ ├── GMT_cycle_4.sh │ ├── GMT_cycle_5.sh │ ├── GMT_cycle_6.sh │ ├── GMT_cyclic.sh │ ├── GMT_dir_rose.sh │ ├── GMT_eckert4.sh │ ├── GMT_eckert6.sh │ ├── GMT_encoding.sh │ ├── GMT_equi_cyl.sh │ ├── GMT_equidistant_conic.sh │ ├── GMT_fatline.sh │ ├── GMT_fill_curves.sh │ ├── GMT_gall_stereo.sh │ ├── GMT_general_cyl.sh │ ├── GMT_gnomonic.sh │ ├── GMT_grid2pix.sh │ ├── GMT_grinten.sh │ ├── GMT_gsfml_components.sh │ ├── GMT_hammer.sh │ ├── GMT_hexbinning.sh │ ├── GMT_hinge.sh │ ├── GMT_images.sh │ ├── GMT_inset.sh │ ├── GMT_joint.sh │ ├── GMT_lambert_az_hemi.sh │ ├── GMT_lambert_az_rect.sh │ ├── GMT_lambert_conic.sh │ ├── GMT_latex.sh │ ├── GMT_legend.sh │ ├── GMT_linear.sh │ ├── GMT_linear_cal.sh │ ├── GMT_linear_d.sh │ ├── GMT_linearrow.sh │ ├── GMT_linecap.sh │ ├── GMT_lineoffset.sh │ ├── GMT_log.sh │ ├── GMT_mag_rose.sh │ ├── GMT_map_frame_type.sh │ ├── GMT_mapscale.sh │ ├── GMT_mercator.sh │ ├── GMT_miller.sh │ ├── GMT_misfit.sh │ ├── GMT_mixing.sh │ ├── GMT_mollweide.sh │ ├── GMT_movie_canvas.sh │ ├── GMT_movie_progress.sh │ ├── GMT_nearneighbor.sh │ ├── GMT_obl_baja.sh │ ├── GMT_obl_merc.sh │ ├── GMT_obl_nz.sh │ ├── GMT_obl_regions.sh │ ├── GMT_orthographic.sh │ ├── GMT_panel.sh │ ├── GMT_perspective.sh │ ├── GMT_polar.sh │ ├── GMT_polyconic.sh │ ├── GMT_pow.sh │ ├── GMT_pstext_clearance.sh │ ├── GMT_pstext_justify.sh │ ├── GMT_registration.sh │ ├── GMT_robinson.sh │ ├── GMT_seamount_azim.sh │ ├── GMT_seamount_cum_inc.sh │ ├── GMT_seamount_density.sh │ ├── GMT_seamount_flux.sh │ ├── GMT_seamount_map.sh │ ├── GMT_seamount_prisms.sh │ ├── GMT_seamount_psi.sh │ ├── GMT_seamount_slide.sh │ ├── GMT_seamount_specs.sh │ ├── GMT_seamount_types.sh │ ├── GMT_seamount_u0.sh │ ├── GMT_segmentize.sh │ ├── GMT_seislegend.sh │ ├── GMT_sinus_int.sh │ ├── GMT_sinusoidal.sh │ ├── GMT_slope2intensity.sh │ ├── GMT_slopes.sh │ ├── GMT_splines.sh │ ├── GMT_stereographic_general.sh │ ├── GMT_stereographic_polar.sh │ ├── GMT_stereographic_rect.sh │ ├── GMT_stereonets.sh │ ├── GMT_title_fade.sh │ ├── GMT_transverse_merc.sh │ ├── GMT_tut_1.sh │ ├── GMT_tut_10.sh │ ├── GMT_tut_11.sh │ ├── GMT_tut_12.sh │ ├── GMT_tut_13.sh │ ├── GMT_tut_14.sh │ ├── GMT_tut_15.sh │ ├── GMT_tut_16.sh │ ├── GMT_tut_17.sh │ ├── GMT_tut_18.sh │ ├── GMT_tut_19.sh │ ├── GMT_tut_2.sh │ ├── GMT_tut_3.sh │ ├── GMT_tut_4.sh │ ├── GMT_tut_5.sh │ ├── GMT_tut_6.sh │ ├── GMT_tut_7.sh │ ├── GMT_tut_8.sh │ ├── GMT_tut_9.sh │ ├── GMT_utm_zones.sh │ ├── GMT_vector.sh │ ├── GMT_vector4.sh │ ├── GMT_velo.sh │ ├── GMT_vertscale.sh │ ├── GMT_volcano.sh │ ├── GMT_winkel.sh │ ├── README.scripts │ ├── gen_data_App_O.sh │ ├── gen_data_dummy.sh │ ├── grdflexure_approx.sh │ ├── images │ ├── .gitignore │ ├── GMT_-B_custom.ps.dvc │ ├── GMT_-B_geo_1.ps.dvc │ ├── GMT_-B_geo_2.ps.dvc │ ├── GMT_-B_linear.ps.dvc │ ├── GMT_-B_log.ps.dvc │ ├── GMT_-B_pow.ps.dvc │ ├── GMT_-B_radians.ps.dvc │ ├── GMT_-B_slanted.ps.dvc │ ├── GMT_-B_time1.ps.dvc │ ├── GMT_-B_time2.ps.dvc │ ├── GMT_-B_time3.ps.dvc │ ├── GMT_-B_time4.ps.dvc │ ├── GMT_-B_time5.ps.dvc │ ├── GMT_-B_time6.ps.dvc │ ├── GMT_-B_time7.ps.dvc │ ├── GMT_-J.ps.dvc │ ├── GMT_-R.ps.dvc │ ├── GMT_-U.ps.dvc │ ├── GMT_-XY.ps.dvc │ ├── GMT_API_flow.ps.dvc │ ├── GMT_API_use.ps.dvc │ ├── GMT_App_E.ps.dvc │ ├── GMT_App_F_stand+_iso+.ps.dvc │ ├── GMT_App_F_symbol_dingbats.ps.dvc │ ├── GMT_App_G.ps.dvc │ ├── GMT_App_J_1.ps.dvc │ ├── GMT_App_J_2.ps.dvc │ ├── GMT_App_J_3.ps.dvc │ ├── GMT_App_K_1.ps.dvc │ ├── GMT_App_K_2.ps.dvc │ ├── GMT_App_K_3.ps.dvc │ ├── GMT_App_K_4.ps.dvc │ ├── GMT_App_K_5.ps.dvc │ ├── GMT_App_M_1a.ps.dvc │ ├── GMT_App_M_1b.ps.dvc │ ├── GMT_App_M_1c.ps.dvc │ ├── GMT_App_M_1d.ps.dvc │ ├── GMT_App_M_2.ps.dvc │ ├── GMT_App_N_1.ps.dvc │ ├── GMT_App_O_1.ps.dvc │ ├── GMT_App_O_2.ps.dvc │ ├── GMT_App_O_3.ps.dvc │ ├── GMT_App_O_4.ps.dvc │ ├── GMT_App_O_5.ps.dvc │ ├── GMT_App_O_6.ps.dvc │ ├── GMT_App_O_7.ps.dvc │ ├── GMT_App_O_8.ps.dvc │ ├── GMT_App_O_9.ps.dvc │ ├── GMT_CPTscale.ps.dvc │ ├── GMT_Defaults_1a.ps.dvc │ ├── GMT_Defaults_1b.ps.dvc │ ├── GMT_Defaults_1c.ps.dvc │ ├── GMT_RGBchart.ps.dvc │ ├── GMT_SRTM.ps.dvc │ ├── GMT_TM.ps.dvc │ ├── GMT_albers.ps.dvc │ ├── GMT_anchor.ps.dvc │ ├── GMT_angle-azim.ps.dvc │ ├── GMT_arrows.ps.dvc │ ├── GMT_arrows_types.ps.dvc │ ├── GMT_atan.ps.dvc │ ├── GMT_autolegend.ps.dvc │ ├── GMT_az_equidistant.ps.dvc │ ├── GMT_base_symbols1.ps.dvc │ ├── GMT_base_symbols2.ps.dvc │ ├── GMT_base_symbols3.ps.dvc │ ├── GMT_base_symbols3D.ps.dvc │ ├── GMT_base_symbols4.ps.dvc │ ├── GMT_base_symbols5.ps.dvc │ ├── GMT_base_symbols6.ps.dvc │ ├── GMT_base_symbols7.ps.dvc │ ├── GMT_base_symbols8.ps.dvc │ ├── GMT_base_symbols9.ps.dvc │ ├── GMT_bezier.ps.dvc │ ├── GMT_blend.ps.dvc │ ├── GMT_blendtype.ps.dvc │ ├── GMT_cap.ps.dvc │ ├── GMT_cassini.ps.dvc │ ├── GMT_chunking.ps.dvc │ ├── GMT_cmyk.ps.dvc │ ├── GMT_color_hsv.ps.dvc │ ├── GMT_color_interpolate.ps.dvc │ ├── GMT_colorbar.ps.dvc │ ├── GMT_colorlist.ps.dvc │ ├── GMT_coverlogo.ps.dvc │ ├── GMT_cycle_1.ps.dvc │ ├── GMT_cycle_2.ps.dvc │ ├── GMT_cycle_3.ps.dvc │ ├── GMT_cycle_4.ps.dvc │ ├── GMT_cycle_5.ps.dvc │ ├── GMT_cycle_6.ps.dvc │ ├── GMT_cyclic.ps.dvc │ ├── GMT_dir_rose.ps.dvc │ ├── GMT_eckert4.ps.dvc │ ├── GMT_eckert6.ps.dvc │ ├── GMT_equi_cyl.ps.dvc │ ├── GMT_equidistant_conic.ps.dvc │ ├── GMT_fatline.ps.dvc │ ├── GMT_fill_curves.ps.dvc │ ├── GMT_gall_stereo.ps.dvc │ ├── GMT_general_cyl.ps.dvc │ ├── GMT_gnomonic.ps.dvc │ ├── GMT_grid2pix.ps.dvc │ ├── GMT_grinten.ps.dvc │ ├── GMT_gsfml_components.ps.dvc │ ├── GMT_hammer.ps.dvc │ ├── GMT_hexbinning.ps.dvc │ ├── GMT_hinge.ps.dvc │ ├── GMT_images.ps.dvc │ ├── GMT_inset.ps.dvc │ ├── GMT_joint.ps.dvc │ ├── GMT_lambert_az_hemi.ps.dvc │ ├── GMT_lambert_az_rect.ps.dvc │ ├── GMT_lambert_conic.ps.dvc │ ├── GMT_latex.ps.dvc │ ├── GMT_legend.ps.dvc │ ├── GMT_linear.ps.dvc │ ├── GMT_linear_cal.ps.dvc │ ├── GMT_linear_d.ps.dvc │ ├── GMT_linearrow.ps.dvc │ ├── GMT_linecap.ps.dvc │ ├── GMT_lineoffset.ps.dvc │ ├── GMT_log.ps.dvc │ ├── GMT_mag_rose.ps.dvc │ ├── GMT_map_frame_type.ps.dvc │ ├── GMT_mapscale.ps.dvc │ ├── GMT_mercator.ps.dvc │ ├── GMT_miller.ps.dvc │ ├── GMT_misfit.ps.dvc │ ├── GMT_mixing.ps.dvc │ ├── GMT_mollweide.ps.dvc │ ├── GMT_movie_canvas.ps.dvc │ ├── GMT_movie_progress.ps.dvc │ ├── GMT_nearneighbor.ps.dvc │ ├── GMT_obl_baja.ps.dvc │ ├── GMT_obl_merc.ps.dvc │ ├── GMT_obl_nz.ps.dvc │ ├── GMT_obl_regions.ps.dvc │ ├── GMT_orthographic.ps.dvc │ ├── GMT_panel.ps.dvc │ ├── GMT_perspective.ps.dvc │ ├── GMT_polar.ps.dvc │ ├── GMT_polyconic.ps.dvc │ ├── GMT_pow.ps.dvc │ ├── GMT_pstext_clearance.ps.dvc │ ├── GMT_pstext_justify.ps.dvc │ ├── GMT_registration.ps.dvc │ ├── GMT_robinson.ps.dvc │ ├── GMT_seamount_azim.ps.dvc │ ├── GMT_seamount_cum_inc.ps.dvc │ ├── GMT_seamount_density.ps.dvc │ ├── GMT_seamount_flux.ps.dvc │ ├── GMT_seamount_map.ps.dvc │ ├── GMT_seamount_prisms.ps.dvc │ ├── GMT_seamount_psi.ps.dvc │ ├── GMT_seamount_slide.ps.dvc │ ├── GMT_seamount_specs.ps.dvc │ ├── GMT_seamount_types.ps.dvc │ ├── GMT_seamount_u0.ps.dvc │ ├── GMT_segmentize.ps.dvc │ ├── GMT_seislegend.ps.dvc │ ├── GMT_sinus_int.ps.dvc │ ├── GMT_sinusoidal.ps.dvc │ ├── GMT_slope2intensity.ps.dvc │ ├── GMT_slopes.ps.dvc │ ├── GMT_splines.ps.dvc │ ├── GMT_stereographic_general.ps.dvc │ ├── GMT_stereographic_polar.ps.dvc │ ├── GMT_stereographic_rect.ps.dvc │ ├── GMT_stereonets.ps.dvc │ ├── GMT_title_fade.ps.dvc │ ├── GMT_transverse_merc.ps.dvc │ ├── GMT_tut_1.ps.dvc │ ├── GMT_tut_10.ps.dvc │ ├── GMT_tut_11.ps.dvc │ ├── GMT_tut_12.ps.dvc │ ├── GMT_tut_13.ps.dvc │ ├── GMT_tut_14.ps.dvc │ ├── GMT_tut_15.ps.dvc │ ├── GMT_tut_16.ps.dvc │ ├── GMT_tut_17.ps.dvc │ ├── GMT_tut_18.ps.dvc │ ├── GMT_tut_19.ps.dvc │ ├── GMT_tut_2.ps.dvc │ ├── GMT_tut_3.ps.dvc │ ├── GMT_tut_4.ps.dvc │ ├── GMT_tut_5.ps.dvc │ ├── GMT_tut_6.ps.dvc │ ├── GMT_tut_7.ps.dvc │ ├── GMT_tut_8.ps.dvc │ ├── GMT_tut_9.ps.dvc │ ├── GMT_utm_zones.ps.dvc │ ├── GMT_vector.ps.dvc │ ├── GMT_vector4.ps.dvc │ ├── GMT_velo.ps.dvc │ ├── GMT_vertscale.ps.dvc │ ├── GMT_volcano.ps.dvc │ ├── GMT_winkel.ps.dvc │ ├── grdflexure_approx.ps.dvc │ ├── project_setup.ps.dvc │ ├── psevents_action.ps.dvc │ ├── psevents_dz.ps.dvc │ ├── psevents_intensity.ps.dvc │ ├── psevents_labels.ps.dvc │ ├── psevents_size.ps.dvc │ └── psevents_transparency.ps.dvc │ ├── project_setup.sh │ ├── psevents_action.sh │ ├── psevents_dz.sh │ ├── psevents_intensity.sh │ ├── psevents_labels.sh │ ├── psevents_size.sh │ └── psevents_transparency.sh ├── share ├── CMakeLists.txt ├── coastline.conf.in ├── cpt │ ├── SCM │ │ ├── acton.cpt │ │ ├── actonS.cpt │ │ ├── bam.cpt │ │ ├── bamO.cpt │ │ ├── bamako.cpt │ │ ├── bamakoS.cpt │ │ ├── batlow.cpt │ │ ├── batlowK.cpt │ │ ├── batlowS.cpt │ │ ├── batlowW.cpt │ │ ├── berlin.cpt │ │ ├── bilbao.cpt │ │ ├── bilbaoS.cpt │ │ ├── broc.cpt │ │ ├── brocO.cpt │ │ ├── buda.cpt │ │ ├── budaS.cpt │ │ ├── bukavu.cpt │ │ ├── cork.cpt │ │ ├── corkO.cpt │ │ ├── davos.cpt │ │ ├── davosS.cpt │ │ ├── devon.cpt │ │ ├── devonS.cpt │ │ ├── fes.cpt │ │ ├── glasgow.cpt │ │ ├── grayC.cpt │ │ ├── grayCS.cpt │ │ ├── hawaii.cpt │ │ ├── hawaiiS.cpt │ │ ├── imola.cpt │ │ ├── imolaS.cpt │ │ ├── lajolla.cpt │ │ ├── lajollaS.cpt │ │ ├── lapaz.cpt │ │ ├── lapazS.cpt │ │ ├── lipari.cpt │ │ ├── lisbon.cpt │ │ ├── managua.cpt │ │ ├── navia.cpt │ │ ├── naviaW.cpt │ │ ├── nuuk.cpt │ │ ├── nuukS.cpt │ │ ├── oleron.cpt │ │ ├── oslo.cpt │ │ ├── osloS.cpt │ │ ├── roma.cpt │ │ ├── romaO.cpt │ │ ├── tofino.cpt │ │ ├── tokyo.cpt │ │ ├── tokyoS.cpt │ │ ├── turku.cpt │ │ ├── turkuS.cpt │ │ ├── vanimo.cpt │ │ ├── vik.cpt │ │ └── vikO.cpt │ ├── cmocean │ │ ├── algae.cpt │ │ ├── amp.cpt │ │ ├── balance.cpt │ │ ├── curl.cpt │ │ ├── deep.cpt │ │ ├── delta.cpt │ │ ├── dense.cpt │ │ ├── diff.cpt │ │ ├── gray.cpt │ │ ├── haline.cpt │ │ ├── ice.cpt │ │ ├── matter.cpt │ │ ├── oxy.cpt │ │ ├── phase.cpt │ │ ├── rain.cpt │ │ ├── solar.cpt │ │ ├── speed.cpt │ │ ├── tarn.cpt │ │ ├── tempo.cpt │ │ ├── thermal.cpt │ │ ├── topo.cpt │ │ └── turbid.cpt │ ├── cpt-city │ │ ├── cubhelix.cpt │ │ ├── dem1.cpt │ │ ├── dem4.cpt │ │ └── elevation.cpt │ ├── geological │ │ ├── Exxon88.cpt │ │ ├── GTS2004.cpt │ │ ├── GTS2012_ages.cpt │ │ ├── GTS2012_eons.cpt │ │ ├── GTS2012_epochs.cpt │ │ ├── GTS2012_eras.cpt │ │ ├── GTS2012_periods.cpt │ │ └── GeeK07.cpt │ ├── gmt │ │ ├── abyss.cpt │ │ ├── bathy.cpt │ │ ├── categorical.cpt │ │ ├── cyclic.cpt │ │ ├── dem2.cpt │ │ ├── dem3.cpt │ │ ├── drywet.cpt │ │ ├── earth.cpt │ │ ├── etopo1.cpt │ │ ├── gebco.cpt │ │ ├── geo.cpt │ │ ├── globe.cpt │ │ ├── gray.cpt │ │ ├── haxby.cpt │ │ ├── ibcso.cpt │ │ ├── mag.cpt │ │ ├── nighttime.cpt │ │ ├── no_green.cpt │ │ ├── ocean.cpt │ │ ├── paired.cpt │ │ ├── rainbow.cpt │ │ ├── red2green.cpt │ │ ├── relief.cpt │ │ ├── rust2silver.cpt │ │ ├── seafloor.cpt │ │ ├── sealand.cpt │ │ ├── seis.cpt │ │ ├── split.cpt │ │ ├── srtm.cpt │ │ ├── terra.cpt │ │ ├── topo.cpt │ │ ├── world.cpt │ │ └── wysiwyg.cpt │ ├── google │ │ └── turbo.cpt │ ├── matlab │ │ ├── cool.cpt │ │ ├── copper.cpt │ │ ├── hot.cpt │ │ ├── jet.cpt │ │ └── polar.cpt │ ├── matplotlib │ │ ├── inferno.cpt │ │ ├── magma.cpt │ │ ├── plasma.cpt │ │ └── viridis.cpt │ └── panoply │ │ └── panoply.cpt ├── custom │ ├── QR.eps │ ├── QR_transparent.eps │ ├── astroid.def │ ├── circle.def │ ├── city.def │ ├── cross.def │ ├── crosshair.def │ ├── deltoid.def │ ├── diamond.def │ ├── flash.def │ ├── gmt_custom_symbols.conf │ ├── hexagon.def │ ├── hlens.def │ ├── hlozenge.def │ ├── hneedle.def │ ├── hurricane.def │ ├── invtriangle.def │ ├── lcrescent.def │ ├── lflag.def │ ├── ltriangle.def │ ├── meca.def │ ├── octagon.def │ ├── pacman.def │ ├── pentagon.def │ ├── rcrescent.def │ ├── rflag.def │ ├── rtriangle.def │ ├── sectoid.def │ ├── square.def │ ├── squaroid.def │ ├── star.def │ ├── star3.def │ ├── star4.def │ ├── starp.def │ ├── sun.def │ ├── triangle.def │ ├── trirot1.def │ ├── trirot2.def │ ├── trirot3.def │ ├── trirot4.def │ ├── vlens.def │ ├── vlozenge.def │ ├── vneedle.def │ └── volcano.def ├── localization │ ├── gmt_cn1.locale │ ├── gmt_cn2.locale │ ├── gmt_de.locale │ ├── gmt_dk.locale │ ├── gmt_eh.locale │ ├── gmt_es.locale │ ├── gmt_fa.locale │ ├── gmt_fa_ascii.locale │ ├── gmt_fi.locale │ ├── gmt_fr.locale │ ├── gmt_gr.locale │ ├── gmt_hi.locale │ ├── gmt_hu.locale │ ├── gmt_ie.locale │ ├── gmt_il.locale │ ├── gmt_is.locale │ ├── gmt_it.locale │ ├── gmt_jp.locale │ ├── gmt_kr.locale │ ├── gmt_nl.locale │ ├── gmt_no.locale │ ├── gmt_pl.locale │ ├── gmt_pt.locale │ ├── gmt_ru.locale │ ├── gmt_se.locale │ ├── gmt_sg.locale │ ├── gmt_to.locale │ ├── gmt_tr.locale │ ├── gmt_uk.locale │ └── gmt_us.locale ├── mgd77 │ ├── Dst_all.wdc │ ├── F107_mon.plt │ ├── mgd77_paths.txt │ └── umdl.CM4 ├── mgg │ ├── carter.d │ └── gmtfile_paths ├── spotter │ ├── Global_250-0Ma_Rotations_2019_v2.rot │ ├── Global_EarthByte_Plate_ID_Table.txt │ └── Muller2019-Young2019-Cao2020_CombinedRotations.rot ├── themes │ ├── cookbook.conf │ ├── minimal.conf │ └── modern.conf ├── tools │ ├── CMakeLists.txt │ ├── christmas-cube.sh │ ├── gmt5syntax.in │ ├── gmt_aliases.csh │ ├── gmt_completion.bash │ ├── gmt_functions.sh │ ├── gmt_links.sh │ ├── gmt_prepmex.sh │ ├── gmt_uninstall.sh │ └── ncdeflate └── x2sys │ ├── dat.fmt │ ├── geo.fmt │ ├── geoz.fmt │ ├── gmt.fmt │ ├── mgd77+.fmt │ ├── mgd77.fmt │ ├── xy.fmt │ └── xyz.fmt ├── src ├── CMakeLists.txt ├── PSL_ISO-8859-1.h ├── PSL_ISO-8859-10.h ├── PSL_ISO-8859-11.h ├── PSL_ISO-8859-13.h ├── PSL_ISO-8859-14.h ├── PSL_ISO-8859-15.h ├── PSL_ISO-8859-16.h ├── PSL_ISO-8859-2.h ├── PSL_ISO-8859-3.h ├── PSL_ISO-8859-4.h ├── PSL_ISO-8859-5.h ├── PSL_ISO-8859-6.h ├── PSL_ISO-8859-7.h ├── PSL_ISO-8859-8.h ├── PSL_ISO-8859-9.h ├── PSL_ISOLatin1+.h ├── PSL_ISOLatin1.h ├── PSL_Standard+.h ├── PSL_Standard.h ├── PSL_label.ps ├── PSL_patterns.h ├── PSL_prologue.ps ├── PSL_strings.h ├── PSL_text.ps ├── README.TRIANGLE ├── TRIANGLE.HOWTO ├── batch.c ├── begin.c ├── block_subs.h ├── blockmean.c ├── blockmedian.c ├── blockmode.c ├── clear.c ├── compat │ ├── qsort.c │ └── qsort.h ├── config.h.in ├── declspec.h ├── dimfilter.c ├── docs.c ├── end.c ├── figure.c ├── filter1d.c ├── fitcircle.c ├── fprototype.f ├── geodesy │ ├── CMakeLists.txt │ ├── README.geodesy │ ├── earthtide.c │ ├── gpsgridder.c │ ├── longopt │ │ ├── earthtide_inc.h │ │ ├── gpsgridder_inc.h │ │ └── psvelo_inc.h │ └── psvelo.c ├── gmt-config.in ├── gmt.c ├── gmt.h ├── gmt2kml.c ├── gmt_agc_io.c ├── gmt_api.c ├── gmt_bcr.c ├── gmt_calclock.c ├── gmt_cdf.c ├── gmt_color_rgb.h ├── gmt_colornames.h ├── gmt_common.h ├── gmt_common_byteswap.h ├── gmt_common_longoptions.h ├── gmt_common_math.c ├── gmt_common_math.h ├── gmt_common_runpath.c ├── gmt_common_runpath.h ├── gmt_common_sighandler.c ├── gmt_common_sighandler.h ├── gmt_common_string.c ├── gmt_common_string.h ├── gmt_config.h.in ├── gmt_constants.h ├── gmt_contour.h ├── gmt_cpt_masters.h ├── gmt_customio.c ├── gmt_customio.h ├── gmt_datums.h ├── gmt_dcw.c ├── gmt_dcw.h ├── gmt_decorate.h ├── gmt_defaults.h ├── gmt_dev.h ├── gmt_dimensions.h.in ├── gmt_ellipsoids.h ├── gmt_enum_dict.h ├── gmt_error.c ├── gmt_error.h ├── gmt_error_codes.c ├── gmt_error_codes.h ├── gmt_esri_io.c ├── gmt_fft.c ├── gmt_fft.h ├── gmt_gdalcall.c ├── gmt_gdalread.c ├── gmt_gdalread.h ├── gmt_gdalwrite.c ├── gmt_glib.h ├── gmt_glue.c.in ├── gmt_grd.h ├── gmt_grdio.c ├── gmt_grdio.h ├── gmt_gsformats.h ├── gmt_hash.h ├── gmt_hidden.h ├── gmt_init.c ├── gmt_internals.h ├── gmt_io.c ├── gmt_io.h ├── gmt_keywords.d ├── gmt_keywords.txt ├── gmt_macros.h ├── gmt_make_PSL_strings.sh ├── gmt_make_enum_dicts.sh ├── gmt_make_module_purpose.sh ├── gmt_map.c ├── gmt_mb.h ├── gmt_mbsystem_glue.c ├── gmt_media_name.h ├── gmt_media_size.h ├── gmt_memory.c ├── gmt_memory.h ├── gmt_mgg_header2.c ├── gmt_mgg_header2.h ├── gmt_modern.c ├── gmt_modern.h ├── gmt_nan.h ├── gmt_nc.c ├── gmt_notposix.c ├── gmt_notposix.h ├── gmt_ogrproj.c ├── gmt_ogrread.c ├── gmt_parse.c ├── gmt_pennames.h ├── gmt_plot.c ├── gmt_plot.h ├── gmt_private.h ├── gmt_proj.c ├── gmt_project.h ├── gmt_prototypes.h ├── gmt_psl.h ├── gmt_regexp.c ├── gmt_remote.c ├── gmt_remote.h ├── gmt_resources.h ├── gmt_sharedlibs.c ├── gmt_sharedlibs.h.in ├── gmt_shell_functions.sh ├── gmt_shore.c ├── gmt_shore.h ├── gmt_sph.c ├── gmt_sph.h ├── gmt_stat.c ├── gmt_support.c ├── gmt_symbol.h ├── gmt_synopsis.h ├── gmt_texture.h ├── gmt_time.h ├── gmt_types.h ├── gmt_unique.h ├── gmt_vector.c ├── gmt_version.h.in ├── gmtbinstats.c ├── gmtconnect.c ├── gmtconvert.c ├── gmtdefaults.c ├── gmtget.c ├── gmtinfo.c ├── gmtlogo.c ├── gmtmath.c ├── gmtprogram.c ├── gmtread.c ├── gmtregress.c ├── gmtselect.c ├── gmtset.c ├── gmtsimplify.c ├── gmtspatial.c ├── gmtsplit.c ├── gmtswitch ├── gmtswitch.bat ├── gmtvector.c ├── gmtwhich.c ├── gmtwrite.c ├── grd2cpt.c ├── grd2kml.c ├── grd2sph.c.template ├── grd2xyz.c ├── grdblend.c ├── grdclip.c ├── grdcontour.c ├── grdconvert.c ├── grdcut.c ├── grdedit.c ├── grdfft.c ├── grdfill.c ├── grdfilter.c ├── grdfilter_mt.c ├── grdgdal.c ├── grdgradient.c ├── grdhisteq.c ├── grdimage.c ├── grdinfo.c ├── grdinterpolate.c ├── grdlandmask.c ├── grdmask.c ├── grdmath.c ├── grdmix.c ├── grdpaste.c ├── grdproject.c ├── grdsample.c ├── grdselect.c ├── grdtrack.c ├── grdtrend.c ├── grdvector.c ├── grdview.c ├── grdvolume.c ├── greenspline.c ├── gsfml │ ├── CK1995n.h │ ├── CK1995r.h │ ├── CMakeLists.txt │ ├── Chron_Normal.h │ ├── Chron_Normal2.h │ ├── Chron_Reverse.h │ ├── Chron_Reverse2.h │ ├── GST2004n.h │ ├── GST2004r.h │ ├── GST2012n.h │ ├── GST2012r.h │ ├── Geek2007n.h │ ├── Geek2007r.h │ ├── README.gsfml │ ├── fz_analysis.h │ ├── fz_funcs.sh │ ├── fzanalyzer.c │ ├── fzblender.c │ ├── fzinformer │ ├── fzmapper │ ├── fzmodeler │ ├── fzprofiler │ ├── gsfml_glue.c │ ├── longopt │ │ ├── fzanalyzer_inc.h │ │ ├── fzblender_inc.h │ │ └── mlconverter_inc.h │ └── mlconverter.c ├── gshhg │ ├── CMakeLists.txt │ ├── README.gshhg │ ├── gmt_gshhg.h │ ├── gshhg.c │ ├── gshhg.h │ └── longopt │ │ └── gshhg_inc.h ├── gshhg_version.c ├── gshhg_version.h ├── img │ ├── CMakeLists.txt │ ├── README.img │ ├── img2google │ ├── img2grd.c │ └── longopt │ │ └── img2grd_inc.h ├── imgtexture │ ├── compatibility.h │ ├── dct.h │ ├── dct_fftpack.c │ ├── extern_msc.h │ ├── fftpack.c │ ├── fftpack.h │ ├── terrain_filter.c │ ├── terrain_filter.h │ ├── transpose_inplace.c │ └── transpose_inplace.h ├── inset.c ├── isogmt.in ├── kiss_fft │ ├── COPYING │ ├── README │ ├── _kiss_fft_guts.h │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fftnd.c │ └── kiss_fftnd.h ├── kml2gmt.c ├── longopt │ ├── batch_inc.h │ ├── begin_inc.h │ ├── blockmean_inc.h │ ├── blockmedian_inc.h │ ├── blockmode_inc.h │ ├── dimfilter_inc.h │ ├── filter1d_inc.h │ ├── fitcircle_inc.h │ ├── gmt2kml_inc.h │ ├── gmtbinstats_inc.h │ ├── gmtconnect_inc.h │ ├── gmtconvert_inc.h │ ├── gmtdefaults_inc.h │ ├── gmtget_inc.h │ ├── gmtinfo_inc.h │ ├── gmtlogo_inc.h │ ├── gmtmath_inc.h │ ├── gmtread_inc.h │ ├── gmtregress_inc.h │ ├── gmtselect_inc.h │ ├── gmtset_inc.h │ ├── gmtsimplify_inc.h │ ├── gmtspatial_inc.h │ ├── gmtsplit_inc.h │ ├── gmtvector_inc.h │ ├── gmtwhich_inc.h │ ├── gmtwrite_inc.h │ ├── grd2cpt_inc.h │ ├── grd2kml_inc.h │ ├── grd2xyz_inc.h │ ├── grdbarb_inc.h │ ├── grdblend_inc.h │ ├── grdclip_inc.h │ ├── grdcontour_inc.h │ ├── grdconvert_inc.h │ ├── grdcut_inc.h │ ├── grdedit_inc.h │ ├── grdfft_inc.h │ ├── grdfill_inc.h │ ├── grdfilter_inc.h │ ├── grdgdal_inc.h │ ├── grdgradient_inc.h │ ├── grdhisteq_inc.h │ ├── grdimage_inc.h │ ├── grdinfo_inc.h │ ├── grdinterpolate_inc.h │ ├── grdlandmask_inc.h │ ├── grdmask_inc.h │ ├── grdmath_inc.h │ ├── grdmix_inc.h │ ├── grdpaste_inc.h │ ├── grdproject_inc.h │ ├── grdsample_inc.h │ ├── grdselect_inc.h │ ├── grdtrack_inc.h │ ├── grdtrend_inc.h │ ├── grdvector_inc.h │ ├── grdview_inc.h │ ├── grdvolume_inc.h │ ├── greenspline_inc.h │ ├── inset_inc.h │ ├── kml2gmt_inc.h │ ├── makecpt_inc.h │ ├── mapproject_inc.h │ ├── movie_inc.h │ ├── nearneighbor_inc.h │ ├── project_inc.h │ ├── psbarb_inc.h │ ├── psbasemap_inc.h │ ├── psclip_inc.h │ ├── pscoast_inc.h │ ├── pscontour_inc.h │ ├── psconvert_inc.h │ ├── psevents_inc.h │ ├── pshistogram_inc.h │ ├── psimage_inc.h │ ├── pslegend_inc.h │ ├── psmask_inc.h │ ├── psrose_inc.h │ ├── psscale_inc.h │ ├── pssolar_inc.h │ ├── psternary_inc.h │ ├── pstext_inc.h │ ├── pswiggle_inc.h │ ├── psxy_inc.h │ ├── psxyz_inc.h │ ├── sample1d_inc.h │ ├── spectrum1d_inc.h │ ├── sph2grd_inc.h │ ├── sphdistance_inc.h │ ├── sphinterpolate_inc.h │ ├── sphtriangulate_inc.h │ ├── subplot_inc.h │ ├── surface_inc.h │ ├── trend1d_inc.h │ ├── trend2d_inc.h │ ├── triangulate_inc.h │ └── xyz2grd_inc.h ├── makecpt.c ├── mapproject.c ├── mergesort.c ├── mgd77 │ ├── CMakeLists.txt │ ├── README.developer │ ├── README.mgd77 │ ├── cm4_functions.c │ ├── cm4_functions.h │ ├── igrftest.c │ ├── longopt │ │ ├── mgd77convert_inc.h │ │ ├── mgd77header_inc.h │ │ ├── mgd77info_inc.h │ │ ├── mgd77list_inc.h │ │ ├── mgd77magref_inc.h │ │ ├── mgd77manage_inc.h │ │ ├── mgd77path_inc.h │ │ ├── mgd77sniffer_inc.h │ │ └── mgd77track_inc.h │ ├── make_new_dst.sh │ ├── mgd77.c │ ├── mgd77.h │ ├── mgd77_IGF_coeffs.h │ ├── mgd77_codes.h │ ├── mgd77_codes.sh │ ├── mgd77_e77.h │ ├── mgd77_functions.c │ ├── mgd77_functions.h │ ├── mgd77_init.h │ ├── mgd77_recalc.h │ ├── mgd77_rls_coeffs.h │ ├── mgd77convert.c │ ├── mgd77defaults.h │ ├── mgd77header.c │ ├── mgd77info.c │ ├── mgd77list.c │ ├── mgd77magref.c │ ├── mgd77magref.h │ ├── mgd77manage.c │ ├── mgd77netcdfhelper.sh │ ├── mgd77path.c │ ├── mgd77sniffer.c │ ├── mgd77sniffer.h │ ├── mgd77snifferdefaults.h │ ├── mgd77track.c │ ├── mgd77view │ ├── reformat_kyoto_dst.sh │ └── trkdas.cod ├── movie.c ├── nearneighbor.c ├── postscriptlight.c ├── postscriptlight.h ├── postscriptlight_f77.c ├── potential │ ├── CMakeLists.txt │ ├── README.potential │ ├── gmtflexure.c │ ├── gmtgravmag3d.c │ ├── gravfft.c │ ├── gravprisms.c │ ├── grdflexure.c │ ├── grdgravmag3d.c │ ├── grdredpol.c │ ├── grdseamount.c │ ├── longopt │ │ ├── gmtflexure_inc.h │ │ ├── gmtgravmag3d_inc.h │ │ ├── gravfft_inc.h │ │ ├── gravprisms_inc.h │ │ ├── grdflexure_inc.h │ │ ├── grdgravmag3d_inc.h │ │ ├── grdredpol_inc.h │ │ ├── grdseamount_inc.h │ │ ├── talwani2d_inc.h │ │ └── talwani3d_inc.h │ ├── modeltime.h │ ├── newton.h │ ├── okbfuns.c │ ├── okbfuns.h │ ├── solids.c │ ├── talwani.h │ ├── talwani2d.c │ └── talwani3d.c ├── project.c ├── psbasemap.c ├── psclip.c ├── pscoast.c ├── pscontour.c ├── psconvert.c ├── psevents.c ├── pshistogram.c ├── psimage.c ├── psl_config.h.in ├── psldemo.c ├── psldemo.h ├── pslegend.c ├── psmask.c ├── psrose.c ├── psscale.c ├── pssolar.c ├── psternary.c ├── pstext.c ├── pswiggle.c ├── psxy.c ├── psxyz.c ├── s_rint.c ├── s_rint.h ├── sample1d.c ├── script2verbatim.c ├── segy │ ├── CMakeLists.txt │ ├── README.segy │ ├── longopt │ │ ├── pssegy_inc.h │ │ ├── pssegyz_inc.h │ │ └── segy2grd_inc.h │ ├── pssegy.c │ ├── pssegyz.c │ ├── segy.h │ ├── segy2grd.c │ ├── segy_io.c │ ├── segy_io.h │ └── segyreel.h ├── seis │ ├── CMakeLists.txt │ ├── README.seis │ ├── gmtisf.c │ ├── grdshake.c │ ├── grdvs30.c │ ├── isf_head.h │ ├── longopt │ │ ├── pscoupe_inc.h │ │ ├── psmeca_inc.h │ │ ├── pspolar_inc.h │ │ ├── pssac_inc.h │ │ ├── readisf_inc.h │ │ ├── shake_inc.h │ │ └── vs30_inc.h │ ├── meca.h │ ├── meca_symbol.h │ ├── pscoupe.c │ ├── psmeca.c │ ├── pspolar.c │ ├── pssac.c │ ├── read_isf.c │ ├── sacio.c │ ├── sacio.h │ ├── seis_defaults.h │ ├── utilmeca.c │ └── utilmeca.h ├── shelltest.sh ├── spectrum1d.c ├── sph2grd.c ├── sphdistance.c ├── sphinterpolate.c ├── sphtriangulate.c ├── spotter │ ├── CMakeLists.txt │ ├── README.spotter │ ├── backtracker.c │ ├── gmtpmodeler.c │ ├── grdpmodeler.c │ ├── grdrotater.c │ ├── grdspotter.c │ ├── hotspotter.c │ ├── longopt │ │ ├── backtracker_inc.h │ │ ├── gmtpmodeler_inc.h │ │ ├── grdpmodeler_inc.h │ │ ├── grdrotater_inc.h │ │ ├── grdspotter_inc.h │ │ ├── hotspotter_inc.h │ │ ├── originater_inc.h │ │ ├── polespotter_inc.h │ │ ├── rotconverter_inc.h │ │ └── rotsmoother_inc.h │ ├── originater.c │ ├── polespotter.c │ ├── rotconverter.c │ ├── rotsmoother.c │ ├── spotter.bat │ ├── spotter.c │ ├── spotter.h │ └── spotter.sh ├── ssrfpack.c ├── standard_adobe_fonts.h ├── stripack.c ├── subplot.c ├── surface.c ├── surface_experimental.c ├── surface_old.c ├── test_JL.c ├── test_example1.c ├── test_walter.c ├── testapi_columns.c ├── testapi_conv.c ├── testapi_cube.c ├── testapi_gmtgrid.c ├── testapi_grid2matrix.c ├── testapi_imageshading.c ├── testapi_makecpt.c ├── testapi_matrix.c ├── testapi_matrix_360.c ├── testapi_matrix_360_ref.c ├── testapi_matrix_as_grid.c ├── testapi_matrix_io.c ├── testapi_matrix_pad.c ├── testapi_matrix_plot.c ├── testapi_mixmatrix.c ├── testapi_modern.c ├── testapi_putvector.c ├── testapi_spatial.c ├── testapi_spectrum1d.c ├── testapi_text_legend.c ├── testapi_userdataset.c ├── testapi_usergrid.c ├── testapi_uservectors.c ├── testapi_vector.c ├── testapi_vector_io.c ├── testapi_vector_plot.c ├── testapi_vector_strings.c ├── testapi_vector_strings2.c ├── testapi_vector_times.c ├── testgmtio.c ├── testgmtshell.c ├── testgrdio.c ├── testpsl.c ├── trend1d.c ├── trend2d.c ├── triangle.c ├── triangle.h ├── triangulate.c ├── windbarbs │ ├── CMakeLists.txt │ ├── README.windbarb │ ├── grdbarb.c │ ├── psbarb.c │ ├── test │ │ ├── grdbarb_example.sh │ │ └── psbarb_example.sh │ ├── windbarb.c │ └── windbarb.h ├── x2sys │ ├── CMakeLists.txt │ ├── README.x2sys │ ├── longopt │ │ ├── x2sys_binlist_inc.h │ │ ├── x2sys_cross_inc.h │ │ ├── x2sys_datalist_inc.h │ │ ├── x2sys_get_inc.h │ │ ├── x2sys_init_inc.h │ │ ├── x2sys_list_inc.h │ │ ├── x2sys_merge_inc.h │ │ ├── x2sys_put_inc.h │ │ ├── x2sys_report_inc.h │ │ └── x2sys_solve_inc.h │ ├── split_file4coes.m │ ├── test_x2sys.sh │ ├── x2sys.c │ ├── x2sys.h │ ├── x2sys_binlist.c │ ├── x2sys_cross.c │ ├── x2sys_datalist.c │ ├── x2sys_get.c │ ├── x2sys_init.c │ ├── x2sys_list.c │ ├── x2sys_merge.c │ ├── x2sys_put.c │ ├── x2sys_report.c │ └── x2sys_solve.c └── xyz2grd.c └── test ├── CMakeLists.txt ├── README.tests ├── animation └── title.sh ├── api ├── 2d-matrix.txt ├── apicolumns_icol.sh ├── apiconv.sh ├── apicubeplot.sh ├── apigmtgrid.sh ├── apigrdpix.sh ├── apimakecpt.sh ├── apimat.sh ├── apimat2grd.sh ├── apimat_360.sh ├── apimat_360_ref.sh ├── apimat_io.sh ├── apimatgrd.sh ├── apimatimageplain.sh ├── apimatimageshading.sh ├── apimatpadcheck.sh ├── apimodern.sh ├── apiputvector.sh ├── apitextlegend.sh ├── apiuserdataset.sh ├── apiusergrid.sh ├── apiusermix.sh ├── apiuserstrings.sh ├── apiuservec.sh ├── apivec.sh ├── apivec_io.sh ├── apivectorplot.sh ├── apivectortimes.sh ├── apivirtdatasets.sh └── test_grid_io.sh ├── baseline ├── .gitignore ├── api.dvc ├── blockmean.dvc ├── filter1d.dvc ├── fitcircle.dvc ├── genper.dvc ├── geodesy.dvc ├── gmtbinstats.dvc ├── gmtconnect.dvc ├── gmtconvert.dvc ├── gmtlogo.dvc ├── gmtmath.dvc ├── gmtmex.dvc ├── gmtregress.dvc ├── gmtselect.dvc ├── gmtsimplify.dvc ├── gmtspatial.dvc ├── gmtsplit.dvc ├── gmtvector.dvc ├── grd2cpt.dvc ├── grd2xyz.dvc ├── grdblend.dvc ├── grdclip.dvc ├── grdcontour.dvc ├── grdcut.dvc ├── grdedit.dvc ├── grdfft.dvc ├── grdfill.dvc ├── grdfilter.dvc ├── grdgdal.dvc ├── grdgradient.dvc ├── grdimage.dvc ├── grdinterpolate.dvc ├── grdlandmask.dvc ├── grdmask.dvc ├── grdmath.dvc ├── grdmix.dvc ├── grdpaste.dvc ├── grdsample.dvc ├── grdselect.dvc ├── grdtrack.dvc ├── grdtrend.dvc ├── grdvector.dvc ├── grdview.dvc ├── grdvolume.dvc ├── greenspline.dvc ├── gshhg.dvc ├── img.dvc ├── kml.dvc ├── latex.dvc ├── makecpt.dvc ├── mapproject.dvc ├── mgd77.dvc ├── modern.dvc ├── movie.dvc ├── nearneighbor.dvc ├── ogr.dvc ├── postscriptlight.dvc ├── potential.dvc ├── project.dvc ├── psbasemap.dvc ├── psclip.dvc ├── pscoast.dvc ├── pscontour.dvc ├── psevents.dvc ├── pshistogram.dvc ├── psimage.dvc ├── pslegend.dvc ├── psmask.dvc ├── pspolar.dvc ├── psrose.dvc ├── pssac.dvc ├── psscale.dvc ├── pssolar.dvc ├── psternary.dvc ├── pstext.dvc ├── pswiggle.dvc ├── psxy.dvc ├── psxyz.dvc ├── sample1d.dvc ├── segy.dvc ├── seis.dvc ├── spectrum1d.dvc ├── sph.dvc ├── sph2grd.dvc ├── spotter.dvc ├── subplot.dvc ├── surface.dvc ├── time.dvc ├── trend1d.dvc ├── trend2d.dvc ├── triangulate.dvc ├── windbarbs.dvc └── x2sys.dvc ├── batch └── batch-l2s.sh ├── begin └── begin-l2s.sh ├── blockmean ├── blockmean-l2s.sh ├── etest.sh ├── gmean.sh ├── io.sh └── xy2ij.sh ├── blockmedian ├── blockmedian-l2s.sh ├── etest.sh ├── gmedian.sh └── rectest.sh ├── blockmode ├── blockmode-l2s.sh ├── etest.sh ├── gmode.sh └── rectest.sh ├── byteswap ├── binary.be ├── binary.le ├── bswap16.sh ├── bswap32.sh ├── bswap64.sh └── gmtconvert.sh ├── common └── common-l2s.sh ├── dimfilter └── dimfilter-l2s.sh ├── filter1d ├── cfilter.sh ├── filter.sh ├── filter1d-l2s.sh ├── highpass.sh ├── mfilter.sh ├── noise.txt ├── raw_data.txt ├── smooth_track.sh ├── track.txt └── varfilt.sh ├── fitcircle ├── circles.sh ├── fitcircle-l2s.sh ├── gcircle.txt └── scircle.txt ├── gdal ├── gdal_readwrite.sh ├── gdal_smallgrid.sh ├── smallgrid.xyz └── testgrid.xyz ├── genper ├── altitude.sh ├── azimuth.sh ├── east_map_0.sh ├── east_map_1.sh ├── east_map_2.sh ├── east_map_3.sh ├── east_map_4.sh ├── east_map_5.sh ├── east_map_6.sh ├── east_map_7.sh ├── east_map_8.sh ├── gridlines.sh ├── gridlines2.sh ├── hyperbolic_map.sh ├── pacific_map_1.sh ├── pacific_map_2.sh ├── polar.sh ├── polar2.sh ├── snyder_map.sh └── view.sh ├── geodesy ├── case_largeR_noW.sh ├── case_largeR_withW.sh ├── case_smallR_noW.sh ├── case_smallR_withW.sh ├── corner.ll ├── geodesy_01.sh ├── geodesy_02.sh ├── geodesy_03.sh ├── geodesy_04.sh ├── geodesy_05.sh ├── geodesy_06.sh ├── geodesy_07.sh ├── geodesy_08.sh ├── geodesy_09.sh ├── gpsgridder1.sh ├── gpsgridder2.sh ├── run_GPS_case_sub ├── test_earthtide.dat ├── test_earthtide.sh ├── test_earthtide_interval.dat └── test_earthtide_interval.sh ├── gmt2kml └── gmt2kml-l2s.sh ├── gmt_core ├── gmt_io_cols.sh └── testsuite.sh ├── gmtbinstats ├── gmtbinstats-l2s.sh ├── nonweighted.sh ├── nonweightedrect.sh ├── weighted.sh └── weightedrect.sh ├── gmtconnect ├── connect.sh └── gmtconnect-l2s.sh ├── gmtconvert ├── asciirowselect.sh ├── binheader.sh ├── binrowselect.sh ├── conversion.sh ├── datatypes.txt ├── duplicates.sh ├── gmtconvert-l2s.sh ├── mix_binary_data.b ├── mixread.sh ├── new_gaps2.sh ├── outputselect.sh ├── segments.sh ├── segsearch.sh ├── strings.txt ├── testparser.sh └── transpose.sh ├── gmtdefaults └── gmtdefaults-l2s.sh ├── gmtest.in ├── gmtget └── gmtget-l2s.sh ├── gmtinfo ├── binascregion.sh ├── extender.sh ├── gmtinfo-l2s.sh ├── tp2.bin └── tp2.xyz ├── gmtlogo ├── gmtlogo-l2s.sh └── logos.sh ├── gmtmath ├── cdfs1.sh ├── gmtmath-l2s.sh ├── gmtmath_op.sh ├── gmtmath_times.sh ├── lsfit.sh ├── pdfs1.sh ├── pdfs2.sh └── vonmises.sh ├── gmtmex ├── WL_example_1.sh ├── WL_example_2.sh └── WL_example_3.sh ├── gmtregress ├── draper.sh ├── gmtregress-l2s.sh ├── noisy_data.txt ├── regress_1.sh ├── regress_2.sh ├── rls_on_rma.sh └── york_1966.sh ├── gmtselect ├── gmtselect-l2s.sh ├── inoutgrid.sh ├── near_a_line.sh ├── near_a_point.sh ├── segzcheck.sh ├── selectcart.sh └── selectlines.sh ├── gmtset └── gmtset-l2s.sh ├── gmtsimplify ├── gmtsimplify-l2s.sh └── reduce.sh ├── gmtspatial ├── L1.txt ├── L2.txt ├── andes_test.txt ├── atruncate.sh ├── btruncate.sh ├── crossings.sh ├── duplicate.sh ├── extend.sh ├── gmtspatial-l2s.sh ├── inout_features.sh ├── intersect.sh ├── lonjump.sh ├── measure.jl ├── measure.sh ├── nn.sh ├── ph.sh ├── poldecimate.jl ├── poldecimate.sh └── sphareacentroid.sh ├── gmtsplit ├── data.dat ├── gmtsplit-l2s.sh └── split.sh ├── gmtvector ├── gmtvector-l2s.sh ├── meanvec.sh ├── pts.txt ├── result ├── translate_cart.sh ├── translate_geo.sh └── vecmath.sh ├── gmtwhich └── gmtwhich-l2s.sh ├── grd2cpt ├── equalarea.sh ├── grd2cpt-l2s.sh └── paintallzs.sh ├── grd2kml └── grd2kml-l2s.sh ├── grd2xyz ├── extract.sh ├── grd2xyz-l2s.sh └── vector.sh ├── grdbarb └── grdbarb-l2s.sh ├── grdblend ├── blend_weights.sh ├── center_bf_g.sh ├── center_bf_p.sh ├── center_cf_g.sh ├── center_cf_p.sh ├── center_nf_g.sh ├── center_nf_p.sh └── grdblend-l2s.sh ├── grdclip ├── grdclip-l2s.sh └── limits.sh ├── grdcontour ├── TMcontours.sh ├── bigisland.sh ├── clipannot.sh ├── closed.sh ├── colorwithtitle.sh ├── contourlegend.sh ├── contours.sh ├── filled_cont.sh ├── fontcolor.sh ├── grdcontour-l2s.sh ├── grdcontour.sh ├── grdtime.sh ├── grdtxtclip.sh ├── labels.sh ├── pen_choice.sh ├── periodic.sh ├── polcont.sh ├── polcontr.sh ├── saddle.sh ├── sombrero.sh ├── test.grd ├── transparency.sh ├── varpens.sh ├── view_filled.sh └── wrapping.sh ├── grdconvert ├── grdconvert-l2s.sh ├── reformat_af.sh ├── reformat_bb.sh ├── reformat_bd.sh ├── reformat_bf.sh ├── reformat_bi.sh ├── reformat_bs.sh ├── reformat_ef.sh ├── reformat_ei.sh ├── reformat_rf.sh └── reformat_sf.sh ├── grdcut ├── autores.sh ├── cut.sh ├── grdcut-l2s.sh ├── origin.sh ├── polycut.sh ├── shrink.sh ├── subset.sh └── vert_cube_cuts.sh ├── grdedit ├── edit.sh ├── grdedit-l2s.sh ├── grdflip.sh └── transrot.sh ├── grdfft ├── bworthr.sh ├── bworthxy.sh ├── cylundulation.sh ├── gfilter.sh ├── grdfft-l2s.sh ├── in_taper.sh ├── out_taper.sh ├── pow4.txt └── power2D.sh ├── grdfill ├── constfill.sh ├── grdfill-l2s.sh ├── gridfill.sh ├── nnfill.sh ├── showregions.sh └── splinefill.sh ├── grdfilter ├── filtersample.sh ├── filtertest.sh ├── grdfilter-l2s.sh ├── highpass.sh ├── openmp.sh ├── spikes.sh ├── threads.sh └── varfilter.sh ├── grdgdal ├── gdal_nn.sh └── grdgdal-l2s.sh ├── grdgradient ├── aspect.sh ├── grdgradient-l2s.sh ├── illum_classic.sh ├── illum_lambert.sh ├── illum_manip.sh ├── illum_norm_control.sh └── illum_var.sh ├── grdhisteq └── grdhisteq-l2s.sh ├── grdimage ├── SST.sh ├── afr.grd ├── autointense.sh ├── autoresgrid.sh ├── colormasking.sh ├── const_intens.sh ├── cpt_hinge.sh ├── dcw-180-crossers.sh ├── defcpt.sh ├── emag_v2.sh ├── force_global.sh ├── globalgrid.sh ├── grdclip.sh ├── grdcyclic.sh ├── grdimage-l2s.sh ├── grdimage.sh ├── grdimage_Q_effects.sh ├── grdimage_img_tif.sh ├── grdread.sh ├── grdwrap.sh ├── grid_transp.sh ├── hovmuller.sh ├── image_vartrans.sh ├── imgshade.sh ├── lonshift.sh ├── marbles.sh ├── mask.nc ├── mask.sh ├── noJshiftimg.sh ├── oneincshift.sh ├── png_image.sh ├── readwrite_withgdal.sh ├── rendering.sh ├── rgb_grids.sh ├── rounding.sh ├── subset.sh ├── transp_mix.sh ├── twogrids.sh └── url_map.sh ├── grdinfo ├── grdinfo-l2s.sh └── perimeters.sh ├── grdinterpolate ├── cube.nc ├── fake_geot_cube.sh ├── fake_geoz_cube.sh ├── fake_xyz_cube.sh ├── grdinterpolate-l2s.sh ├── onelayer.sh ├── slices.sh └── slices_file.sh ├── grdlandmask ├── grdlandmask-l2s.sh ├── greenwich.sh ├── lmask.sh ├── mask.sh ├── trace1g.sh └── trace1p.sh ├── grdmask ├── 2k.dat ├── geoholes.sh ├── grdmask-l2s.sh ├── holes.sh ├── maskmode.sh ├── ogrtest.sh ├── polarhole.sh ├── sphinout.sh └── twoblobs.sh ├── grdmath ├── F.sh ├── d2dxy.sh ├── daynight.sh ├── earth_shade.sh ├── fisher.sh ├── grdmath-l2s.sh ├── ldist.sh ├── ops.sh ├── pdist.sh ├── reduce.sh ├── sums_12m.sh ├── sums_12p.sh ├── sums_34m.sh ├── sums_34p.sh └── taper.sh ├── grdmix ├── grdmix-l2s.sh ├── grdmix.sh └── grid2img.sh ├── grdpaste ├── grdpaste-l2s.sh ├── paste_esri.sh ├── paste_gridreg_underlap.sh ├── paste_gridreg_underlap_bf.sh ├── paste_pixreg.sh ├── paste_pixreg_overlap.sh └── paste_x.sh ├── grdproject ├── grdproject-l2s.sh └── units.sh ├── grdsample ├── grdsample-l2s.sh ├── mismatch.sh ├── resample.sh ├── sample.sh └── straddle.sh ├── grdselect ├── grdselect-l2s.sh ├── plot_CFL.sh ├── region_u_i.sh └── regions.sh ├── grdtrack ├── crosstrack_cart.sh ├── crosstrack_geo.sh ├── grdtrack-l2s.sh ├── layout.sh ├── layout_fixed.sh └── profiles.sh ├── grdtrend ├── grdtrend-l2s.sh ├── trend_linear.sh ├── trend_robust.sh ├── trend_x_or_y.sh └── trend_xy_plot.sh ├── grdvector ├── bothg.sh ├── cartpol.sh ├── cartvec.sh ├── grdgeovec.sh ├── grdvector-l2s.sh ├── met_uv.sh ├── nuvel1.vx.1.5.nc ├── nuvel1.vy.1.5.nc ├── oldcvecs.sh ├── plate.sh ├── sample.sh ├── shrink.sh ├── tworegions.sh ├── uc2.nc ├── vc2.nc ├── vec_scales.sh ├── veclegendc.sh ├── veclegendg.sh ├── vectors.sh ├── wrapped.sh ├── wx_grd000.nc └── wy_grd000.nc ├── grdview ├── autointense.sh ├── categorical.sh ├── cuerpo.sh ├── denver.sh ├── domo-filtrado.nc ├── grdview-l2s.sh ├── grdview.sh ├── icelandbox.sh ├── limites-domo-xyz.dat ├── rgb.sh ├── super2.nc ├── test.grd ├── texture.sh ├── texture2_classic.sh ├── texture2_modern.sh ├── tiles.sh └── wrap.sh ├── grdvolume ├── grdvolume-l2s.sh ├── grdvolume.out ├── grdvolume.sh └── sphere_volume.sh ├── greenspline ├── greenspline-l2s.sh ├── gspline_1.sh ├── gspline_2.sh ├── gspline_3.sh ├── gspline_4.sh ├── gspline_5.sh ├── gspline_6.sh ├── gspline_7.sh └── gspline_8.sh ├── gshhg ├── comb_ants.sh └── two_ants.sh ├── img ├── imgmap.sh └── imgtrack.sh ├── inset └── inset-l2s.sh ├── invalidate_modules.sh ├── kml ├── coast.kml ├── gmt2kml.sh ├── kml2gmt.sh ├── lines.kml └── pointsets.kml ├── kml2gmt └── kml2gmt-l2s.sh ├── latex ├── latexlabel.sh ├── latexrgb.sh ├── latext.sh ├── latextitle.sh ├── subplotlatex.sh └── subtitle_latex.sh ├── makecpt ├── autocpt.sh ├── logcpt.sh ├── makecpt-l2s.sh ├── timecpt.sh └── timecpt_noinc.sh ├── mapproject ├── azimuth.sh ├── mapproject-l2s.sh ├── oblmerc_down.sh ├── oblmerc_up.sh ├── proj4.sh ├── snyder.sh ├── trailtext.sh └── waypoints.sh ├── mgd77 ├── 01010221.mgd77 ├── cm4.sh ├── convert.sh ├── dummy.e77 ├── dummy.mgd77 ├── test_cm4.dat ├── test_cm4.sh └── track.sh ├── modern ├── box.sh ├── imagepluscpt.sh ├── inset.sh ├── inset2.sh ├── insetlegend.sh ├── longbasemap.sh ├── panels.sh ├── panels_history.sh ├── polarpanels.sh ├── powlog.sh ├── shrinkvec1.sh ├── shrinkvec2.sh ├── somepanels.sh ├── sublegend.sh ├── twofiglegend.sh ├── vardims.sh ├── varfracs.sh ├── vector.sh └── viewpluscpt.sh ├── movie ├── PS_layers.sh ├── movie-l2s.sh ├── movie_indicator_de.sh ├── movie_indicator_f_hor.sh ├── movie_indicator_f_ver.sh ├── trajectory1.sh ├── trajectory2.sh ├── trajectory3.sh └── trajectory5.sh ├── nearneighbor ├── nat_nn.sh └── nearneighbor-l2s.sh ├── ogr ├── check_a_opt.sh ├── lookup.sh ├── quakes.sh └── select.sh ├── postscriptlight └── psldemo.sh ├── potential ├── admittance.sh ├── cross_spec.sh ├── cseamounts.sh ├── cube_mag.sh ├── cyl2d.sh ├── cyltest.sh ├── deflections.sh ├── fc_okb.sh ├── fields.sh ├── firmoviscous.sh ├── firmoviscous2.sh ├── flex2d.sh ├── flex_inplane.sh ├── flexapprox.sh ├── flexure_e.sh ├── flexure_en.sh ├── flexure_gl.sh ├── flexure_ve.sh ├── grdgravmag3D_grav_sph.sh ├── grdokb_grav.sh ├── growth_c.sh ├── growth_g.sh ├── growth_o.sh ├── growth_p.sh ├── gseamounts.sh ├── prism_check.sh ├── sombrero_mag.sh ├── spheres.jl ├── spheres.sh ├── sphtest.sh ├── transfer.sh └── variablerho.sh ├── project ├── cartesian.sh ├── circles.sh ├── ellipses.sh ├── generate.sh ├── oblique.sh ├── project-l2s.sh └── small.sh ├── psbarb └── psbarb-l2s.sh ├── psbasemap ├── JOb_pole.sh ├── absrelaxis.sh ├── annotations1.sh ├── annotations2.sh ├── annotations3.sh ├── annotations4.sh ├── asymm_grid.sh ├── autoscale.sh ├── azim_global.sh ├── azim_polar.sh ├── azim_radial.sh ├── compass.sh ├── custxlabel.sh ├── dir_roses.sh ├── dual_labels.sh ├── fancyannot.sh ├── fixed_labeldist.sh ├── general_p.sh ├── horlabel.sh ├── inside.sh ├── longtitles_break.sh ├── longtitles_hat.sh ├── mag_roses.sh ├── map_JE.sh ├── mapbardefault.sh ├── mapbarlat.sh ├── mapscales.sh ├── merc_origin.sh ├── nav_ticks.sh ├── oblique.sh ├── origin.sh ├── ortho.sh ├── part_geo_x.sh ├── part_geo_y.sh ├── phasegrid.sh ├── polarapex.sh ├── polarcases.sh ├── polarcircles.sh ├── poption.sh ├── position1.sh ├── psbasemap-l2s.sh ├── radial_labels1.sh ├── radial_labels2.sh ├── radial_labels3.sh ├── radians.sh ├── rose_dir.sh ├── rose_mag1.sh ├── rose_mag2.sh ├── rot_annot.sh ├── rotalign.sh ├── scales.sh ├── skipannots.sh ├── slanted.sh ├── slantlabel.sh ├── sub1saxis.sh ├── test-JXd.sh ├── xyslant.sh ├── zrotation.sh └── zscaling.sh ├── psclip ├── clip.sh ├── clip_draw.sh ├── handednessclip.sh └── psclip-l2s.sh ├── pscoast ├── coastclip.sh ├── dumpvsplot.sh ├── gshhs_A.sh ├── oblCA.sh ├── oblsuite.sh ├── oblsuite_N.sh ├── placement.sh ├── proj4_nox0y0.sh ├── pscoast-l2s.sh ├── pscoast_180.sh ├── pscoast_JA.sh ├── pscoast_JE.sh ├── pscoast_JE2.sh ├── pscoast_JE3.sh ├── pscoast_JE4.sh ├── pscoast_JM.sh ├── pscoast_JQ.sh ├── pscoast_JS.sh ├── pscoast_JV_auto.sh ├── pscoast_JV_set.sh ├── pscoast_JW.sh ├── pscoast_Madagascar.sh ├── pscoast_R_shorthand.sh ├── pscoast_mess.sh ├── pseudo.sh ├── riverlake.sh ├── spain.sh └── vert_obl_merc.sh ├── pscontour ├── clipannot.sh ├── hilow.sh ├── ice.bm ├── pscontour-l2s.sh ├── saver.sh └── thickness.sh ├── psconvert └── psconvert-l2s.sh ├── psevents ├── event_lines.sh ├── eventlabelbox.sh ├── events.sh ├── lines.sh ├── polygons.sh ├── psevents-l2s.sh ├── psevents_functions.sh ├── quakes_2018.txt └── varline.sh ├── pshistogram ├── altwidth.sh ├── distributions.sh ├── flip.sh ├── hist.txt ├── histlegend.sh ├── labels.sh ├── mmm.sh ├── pshistogram-l2s.sh ├── varbins.sh └── wrappedhisto.sh ├── psimage ├── bitimage.sh ├── psimage-l2s.sh ├── psimage.sh ├── transparent_gif.sh ├── transparent_png.sh └── withgdal.sh ├── pslegend ├── autolegend.sh ├── autolegendcolor.sh ├── autolegendcolorL.sh ├── autosize.sh ├── fancy.sh ├── fill_frame.sh ├── fontswitch.sh ├── leg3D.sh ├── legcpt.sh ├── legend.sh ├── legend3D.sh ├── legend_font.sh ├── lines.sh ├── mixlegend.sh ├── panel_legend.sh ├── pslegend-l2s.sh ├── stacklegend.sh ├── stacklegendmod.sh ├── subplotlegend.sh ├── table.sh └── zlegend.sh ├── psmask ├── holes.sh ├── masking.sh └── psmask-l2s.sh ├── pspolar ├── pspolar-l2s.sh ├── pspolar_-T.sh ├── pspolar_01.sh └── pspolar_02.sh ├── psrose ├── a.txt ├── gallery.sh ├── oldrose.sh ├── psrose-l2s.sh ├── rose.sh ├── rose_centered.sh ├── rose_uncentered.sh ├── sector.sh ├── sector_vpdf.sh └── vectors.sh ├── pssac ├── input.dat ├── ntkl.z ├── nykl.z ├── onkl.z ├── pssac-l2s.sh ├── pssac_C.sh ├── pssac_D.sh ├── pssac_E.sh ├── pssac_F.sh ├── pssac_G.sh ├── pssac_M.sh ├── pssac_Q.sh ├── pssac_T.sh ├── pssac_W.sh ├── pssac_common-options.sh ├── pssac_geo.sh ├── pssac_stdin.sh ├── sdkl.z ├── seis.sac └── station.list ├── psscale ├── autoscale.sh ├── categoricalcpt.sh ├── catlabels.sh ├── cbarfontsize.sh ├── cbars.sh ├── colorbar-nans-h.sh ├── colorbar-nans-v.sh ├── cpthinges.sh ├── cptmix.sh ├── cpttime.sh ├── customwidths.sh ├── cyclecpt.sh ├── hardsoft.sh ├── horizontal.sh ├── horsclpanel.sh ├── interval-panel.sh ├── pattern.sh ├── placebars.sh ├── psscale-l2s.sh ├── psscale.sh ├── scale_percent.sh ├── scales.sh ├── scalings.sh ├── seis.sh ├── slant_annot.sh ├── transp_scale.sh ├── versclpanel.sh ├── vertcustannot.sh └── vertical.sh ├── pssolar ├── pssolar-l2s.sh ├── pssolar_fill.sh ├── pssolar_fill2.sh └── shading.sh ├── psternary ├── corners.sh ├── psternary-l2s.sh ├── ternary.sh ├── ternary.txt └── ternary_pol.sh ├── pstext ├── ISO-8859-2.sh ├── ISO-8859-2.txt ├── book.sh ├── boxtext.sh ├── caption.sh ├── cliptxtbox.sh ├── composite.sh ├── corner_justify.sh ├── delay.sh ├── escape.sh ├── filled_font.sh ├── labeler.sh ├── para_offset.sh ├── points.txt ├── pstext-l2s.sh ├── shade_text.sh ├── supersub.sh ├── test.grd ├── textclip.sh └── utf8.sh ├── pswiggle ├── pswiggle-l2s.sh ├── wiggle_outside.sh └── wiggles.sh ├── psxy ├── ErrorEllipseCart.sh ├── ErrorEllipseGeo.sh ├── GSHHS_l_Antarctica.txt ├── QR.sh ├── all_psxy_symbols.txt ├── allsymbcm.sh ├── allsymbinch.sh ├── amundsen.txt ├── angled_text.sh ├── antwrap.sh ├── arcs.sh ├── arrowline.sh ├── arrows.sh ├── autocolorlines.sh ├── autocolorpols.sh ├── autocolorpolsclassic.sh ├── badpols.sh ├── bar2dmultimode.sh ├── bar2dsidebyside.sh ├── barshv.sh ├── bezvec.sh ├── binarypie.sh ├── boxwhisk.sh ├── bugger.sh ├── bugger.txt ├── cartellipse.sh ├── cartsegmentize.sh ├── cartvec.sh ├── categorical.sh ├── chkPts_tseries.dat ├── clip_ellipse.sh ├── clipline1.xy ├── clipline2.xy ├── clipping1.sh ├── clipping2.sh ├── clipping3.sh ├── clipping4.sh ├── clipping5.sh ├── clipping6.sh ├── clipping7.sh ├── clipping8.sh ├── cmdargs.sh ├── colorlines.sh ├── comet.def ├── comparesymbols.sh ├── condcust_symbol.sh ├── condcust_symbol_xy.sh ├── conic.sh ├── connections.dat ├── connections.sh ├── curvedmap_caps.sh ├── custom_azim.sh ├── custom_data.txt ├── custom_decorate.sh ├── custom_symbol.sh ├── custom_textconditional.sh ├── custom_textsymbol.sh ├── datagrep.sh ├── decoratedlines.sh ├── diagonal.sh ├── dip.def ├── endarrows.sh ├── error_bars.sh ├── error_bars_asymm.sh ├── file2.gmt ├── filler.sh ├── flowvectors.sh ├── front.sh ├── full_heads_b.sh ├── full_heads_be.sh ├── full_heads_e.sh ├── gallo.sh ├── gallo_road.sh ├── gaps.nc ├── gaps.sh ├── gaps_time.sh ├── geovecplain.sh ├── geovector.sh ├── geovector2.sh ├── gtec_tx_daily.nc ├── gview_caps.sh ├── headercheck.sh ├── hexagone.sh ├── japquakes.sh ├── kara.gmt ├── kara.sh ├── line1.gmt ├── line2.gmt ├── line_geo.sh ├── line_shortening.sh ├── line_wraps.sh ├── linearrow.sh ├── lineclip.sh ├── linetrim.sh ├── logclip.sh ├── lon_vs_time.sh ├── longjump.sh ├── macros.sh ├── map_units.sh ├── matharc.sh ├── matharcvar.sh ├── matharrow.sh ├── mixed_axes.sh ├── nearpole.sh ├── new_gaps.sh ├── noclip_lines.sh ├── nojump.sh ├── oldvec.sh ├── outline.sh ├── plane_c.def ├── plane_cart.sh ├── plane_geo.sh ├── plot_TS.sh ├── plot_errbars.sh ├── plot_symbols.sh ├── pol_N.txt ├── pol_S.txt ├── polar.sh ├── polarcurves.sh ├── poleline.sh ├── polyholes.sh ├── psxy-l2s.sh ├── quakes.ngdc ├── quotedclip.sh ├── quotedcurvedoutline.sh ├── quotedlinedash.sh ├── quotedlines.sh ├── quotedoutline.sh ├── quotedstraight.sh ├── rectclip.sh ├── repeat1.sh ├── repeat2.sh ├── rotrectangle.sh ├── scalesymb.sh ├── scaling.sh ├── segmentize.sh ├── shrink_lim.sh ├── shrunk_heads.sh ├── smallcirvec.sh ├── snakes.sh ├── spiders.sh ├── split_mean.sh ├── stairs.sh ├── struct_geo.sh ├── subduct.txt ├── symbol_orientation.sh ├── symbol_orientation_cart.sh ├── testpol.d ├── tiling.sh ├── tiling1.jpg ├── tiling2.jpg ├── tissot_TM.sh ├── trimline.sh ├── trimvector.sh ├── twovtypes.sh ├── txtsymb.sh ├── units.sh ├── urlquakes.sh ├── use_x_and_symbol_col.sh ├── variable_lines.sh ├── variable_z.sh ├── varpen.sh ├── varwedges.sh ├── vec_choice.sh ├── vector.sh ├── vector2d_mods.sh ├── vectypes.sh ├── vel.horiz.xyazlen ├── wedges.sh ├── windbarb.def ├── windbarb.sh ├── wrapper.sh └── wrapping.sh ├── psxyz ├── 3dbars.sh ├── QR.sh ├── angled_text.sh ├── bar3dmultimode.sh ├── bar3dsidebyside.sh ├── cartvec.sh ├── cmdargs.sh ├── filler.sh ├── front.sh ├── geovector.sh ├── geovector2.sh ├── headercheck.sh ├── linez.sh ├── map_units.sh ├── matharc.sh ├── noclip_lines3.sh ├── oldvec.sh ├── plot_symbols.sh ├── psxyz-l2s.sh ├── rotrectangle.sh ├── scalesymb.sh ├── variable_lines3D.sh ├── variable_z.sh ├── varpen.sh ├── varwedges.sh ├── vec_choice.sh ├── vector.sh ├── vector3d_mods.sh └── wedges.sh ├── sample1d ├── cubic+Bezier.sh ├── sample.sh ├── sample1d-l2s.sh ├── smooth.sh ├── smooth_deriv.sh └── splines.sh ├── segy ├── segy_01.sh ├── segy_02.sh ├── segy_03.sh ├── segy_04.sh ├── segy_05.sh ├── test.list └── wa1_mig13.segy ├── seis ├── full_moment_tensor.sh ├── fullmt_ipts1_iref1 ├── fullmt_ipts1_iref2 ├── fullmt_ipts1_iref3 ├── fullmt_ipts1_iref4 ├── fullmt_ipts1_iref5 ├── fullmt_ipts2_iref3 ├── meca_-Smdz.sh ├── meca_input_columns.sh ├── meca_unusual_beachball.sh ├── pscoupe-l2s.sh ├── psmeca-l2s.sh ├── seis_01.sh ├── seis_02.sh ├── seis_03.sh ├── seis_04.sh ├── seis_05.sh ├── seis_07.sh ├── seis_08.sh ├── seis_10.sh ├── seis_11.sh ├── seis_12.sh └── seis_13.sh ├── spectrum1d ├── power1D.sh ├── spectrum1d-l2s.sh └── v4.xpower ├── sph ├── lun2.txt ├── sph_1.sh ├── sph_2.sh ├── sph_3.sh ├── sph_4.sh └── sph_5.sh ├── sph2grd ├── EGM96.sh ├── normal.sh ├── one.sh └── sph2grd-l2s.sh ├── sphdistance └── sphdistance-l2s.sh ├── sphinterpolate └── sphinterpolate-l2s.sh ├── sphtriangulate └── sphtriangulate-l2s.sh ├── spotter ├── D2012_HI_drift.txt ├── D2012x.txt ├── Pacific.txt ├── spotter_01.sh ├── spotter_02.sh ├── spotter_03.sh ├── spotter_04.sh ├── spotter_05.sh ├── spotter_06.sh ├── spotter_07.sh ├── spotter_08.sh ├── spotter_09.sh ├── spotter_10.sh ├── spotter_11.sh └── spotter_12.sh ├── subplot ├── 4legends.sh ├── autocolorline.sh ├── circles.sh ├── linpanels.sh ├── linpanelsnew.sh ├── panelsinside.sh ├── subplot-l2s.sh ├── subplot_1.0.sh ├── subplot_1.1.sh ├── subplot_1.2.sh ├── subplot_1.3.sh ├── subplot_2.0.sh ├── subplot_2.1.sh ├── subplot_2.2.sh ├── subplot_2.3.sh ├── subplot_3.0.sh ├── subplot_3.1.sh ├── subplot_3.2.sh ├── subplot_3.3.sh ├── subplot_4.0.sh ├── subplot_4.1.sh ├── subplot_4.2.sh ├── subplot_4.3.sh ├── subplotoverlay.sh └── tictactoe.sh ├── surface ├── limits.sh ├── periodic.sh ├── periodic_pix.sh ├── random_xy.txt └── surface-l2s.sh ├── time ├── time_autointerval.sh ├── time_testing_1.sh ├── time_testing_2.sh ├── time_testing_3.sh ├── time_testing_4.sh ├── time_testing_5.sh ├── time_testing_6.sh ├── time_testing_7.sh ├── time_testing_8.sh └── time_testing_9.sh ├── trend1d ├── data1.txt ├── data2.txt ├── data3.txt ├── trend1.sh └── trend1d-l2s.sh ├── trend2d ├── trend.sh └── trend2d-l2s.sh ├── triangulate ├── nnn.sh ├── triangulate-l2s.sh ├── tripatch.sh └── trivor.sh ├── windbarbs ├── grdbarb_01.sh ├── grdbarb_02.sh ├── psbarb_01.sh └── psbarb_02.sh ├── x2sys ├── bad │ ├── T_00.xyg │ ├── T_01.xyg │ ├── T_02.xyg │ ├── T_03.xyg │ ├── T_04.xyg │ ├── T_05.xyg │ ├── T_06.xyg │ ├── T_07.xyg │ ├── T_08.xyg │ ├── T_09.xyg │ ├── T_10.xyg │ ├── T_11.xyg │ ├── T_12.xyg │ ├── T_13.xyg │ ├── T_14.xyg │ ├── T_15.xyg │ ├── T_16.xyg │ ├── T_17.xyg │ ├── T_18.xyg │ ├── T_19.xyg │ ├── T_20.xyg │ ├── T_21.xyg │ ├── T_22.xyg │ ├── T_23.xyg │ ├── T_24.xyg │ ├── T_25.xyg │ ├── T_26.xyg │ ├── T_27.xyg │ ├── T_28.xyg │ ├── T_29.xyg │ ├── T_30.xyg │ ├── T_31.xyg │ ├── T_32.xyg │ ├── T_33.xyg │ ├── T_34.xyg │ ├── T_35.xyg │ ├── T_36.xyg │ ├── T_37.xyg │ ├── T_38.xyg │ ├── T_39.xyg │ ├── T_40.xyg │ ├── T_41.xyg │ ├── T_42.xyg │ ├── T_43.xyg │ ├── T_44.xyg │ ├── T_45.xyg │ ├── T_46.xyg │ ├── T_47.xyg │ ├── T_48.xyg │ ├── T_49.xyg │ ├── T_50.xyg │ ├── T_51.xyg │ ├── T_52.xyg │ ├── T_53.xyg │ ├── T_54.xyg │ ├── T_55.xyg │ ├── T_56.xyg │ ├── T_57.xyg │ ├── T_58.xyg │ ├── T_59.xyg │ ├── T_60.xyg │ ├── T_61.xyg │ ├── T_62.xyg │ ├── T_63.xyg │ ├── T_64.xyg │ └── T_65.xyg ├── data │ ├── T_00.xyg │ ├── T_01.xyg │ ├── T_02.xyg │ ├── T_03.xyg │ ├── T_04.xyg │ ├── T_05.xyg │ ├── T_06.xyg │ ├── T_07.xyg │ ├── T_08.xyg │ ├── T_09.xyg │ ├── T_10.xyg │ ├── T_11.xyg │ ├── T_12.xyg │ ├── T_13.xyg │ ├── T_14.xyg │ ├── T_15.xyg │ ├── T_16.xyg │ ├── T_17.xyg │ ├── T_18.xyg │ ├── T_19.xyg │ ├── T_20.xyg │ ├── T_21.xyg │ ├── T_22.xyg │ ├── T_23.xyg │ ├── T_24.xyg │ ├── T_25.xyg │ ├── T_26.xyg │ ├── T_27.xyg │ ├── T_28.xyg │ ├── T_29.xyg │ ├── T_30.xyg │ ├── T_31.xyg │ ├── T_32.xyg │ ├── T_33.xyg │ ├── T_34.xyg │ ├── T_35.xyg │ ├── T_36.xyg │ ├── T_37.xyg │ ├── T_38.xyg │ ├── T_39.xyg │ ├── T_40.xyg │ ├── T_41.xyg │ ├── T_42.xyg │ ├── T_43.xyg │ ├── T_44.xyg │ ├── T_45.xyg │ ├── T_46.xyg │ ├── T_47.xyg │ ├── T_48.xyg │ ├── T_49.xyg │ ├── T_50.xyg │ ├── T_51.xyg │ ├── T_52.xyg │ ├── T_53.xyg │ ├── T_54.xyg │ ├── T_55.xyg │ ├── T_56.xyg │ ├── T_57.xyg │ ├── T_58.xyg │ ├── T_59.xyg │ ├── T_60.xyg │ ├── T_61.xyg │ ├── T_62.xyg │ ├── T_63.xyg │ ├── T_64.xyg │ └── T_65.xyg ├── line.def ├── ss_faa.nc ├── x2sys_01.sh ├── x2sys_02.sh ├── x2sys_03.sh ├── x2sys_04.sh ├── x2sys_05.sh ├── x2sys_05.txt ├── x2sys_06.sh └── x2sys_07.sh └── xyz2grd ├── gridrange.sh └── xyz2grd-l2s.sh /.dvc/.gitignore: -------------------------------------------------------------------------------- 1 | /config.local 2 | /tmp 3 | /cache 4 | -------------------------------------------------------------------------------- /.dvc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/.dvc/config -------------------------------------------------------------------------------- /.dvcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/.dvcignore -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_CONVENTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/CODE_CONVENTIONS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.LESSERv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/COPYING.LESSERv3 -------------------------------------------------------------------------------- /COPYINGv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/COPYINGv3 -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/README.md -------------------------------------------------------------------------------- /THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/THANKS.md -------------------------------------------------------------------------------- /admin/PS_orig_for_gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/PS_orig_for_gs.png -------------------------------------------------------------------------------- /admin/PS_orig_for_gs.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/PS_orig_for_gs.ps -------------------------------------------------------------------------------- /admin/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/RELEASE.md -------------------------------------------------------------------------------- /admin/bashrc_for_gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/bashrc_for_gmt -------------------------------------------------------------------------------- /admin/build-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/build-release.sh -------------------------------------------------------------------------------- /admin/copyright_year.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/copyright_year.sh -------------------------------------------------------------------------------- /admin/gs_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/gs_check.sh -------------------------------------------------------------------------------- /admin/image_optimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/image_optimize.sh -------------------------------------------------------------------------------- /admin/otoolr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/otoolr.c -------------------------------------------------------------------------------- /admin/place-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/place-release.sh -------------------------------------------------------------------------------- /admin/run_cppcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/admin/run_cppcheck.sh -------------------------------------------------------------------------------- /ci/build-gmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/ci/build-gmt.sh -------------------------------------------------------------------------------- /ci/config-gmt-unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/ci/config-gmt-unix.sh -------------------------------------------------------------------------------- /ci/config-gmt-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/ci/config-gmt-windows.sh -------------------------------------------------------------------------------- /ci/deploy-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/ci/deploy-gh-pages.sh -------------------------------------------------------------------------------- /ci/simple-gmt-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/ci/simple-gmt-tests.bat -------------------------------------------------------------------------------- /ci/simple-gmt-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/ci/simple-gmt-tests.sh -------------------------------------------------------------------------------- /cmake/dist/GMT.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/cmake/dist/GMT.icns -------------------------------------------------------------------------------- /cmake/dist/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/cmake/dist/Info.plist.in -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/examples/images/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps 2 | -------------------------------------------------------------------------------- /doc/fig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/CMakeLists.txt -------------------------------------------------------------------------------- /doc/fig/GMT4_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/GMT4_mode.png -------------------------------------------------------------------------------- /doc/fig/GMT5_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/GMT5_mode.png -------------------------------------------------------------------------------- /doc/fig/GMT_STL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/GMT_STL.jpg -------------------------------------------------------------------------------- /doc/fig/GMT_record.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/GMT_record.pdf -------------------------------------------------------------------------------- /doc/fig/GMT_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/GMT_record.png -------------------------------------------------------------------------------- /doc/fig/RPN_fig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/RPN_fig.jpg -------------------------------------------------------------------------------- /doc/fig/formatting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/formatting.png -------------------------------------------------------------------------------- /doc/fig/highres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/highres.png -------------------------------------------------------------------------------- /doc/fig/hsv-cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/hsv-cone.png -------------------------------------------------------------------------------- /doc/fig/noantialias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/noantialias.png -------------------------------------------------------------------------------- /doc/fig/rendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/rendering.png -------------------------------------------------------------------------------- /doc/fig/srtm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/srtm1.png -------------------------------------------------------------------------------- /doc/fig/xcode-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-1.png -------------------------------------------------------------------------------- /doc/fig/xcode-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-2.png -------------------------------------------------------------------------------- /doc/fig/xcode-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-3.png -------------------------------------------------------------------------------- /doc/fig/xcode-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-4.png -------------------------------------------------------------------------------- /doc/fig/xcode-4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-4b.png -------------------------------------------------------------------------------- /doc/fig/xcode-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-5.png -------------------------------------------------------------------------------- /doc/fig/xcode-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-6.png -------------------------------------------------------------------------------- /doc/fig/xcode-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-7.png -------------------------------------------------------------------------------- /doc/fig/xcode-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/fig/xcode-8.png -------------------------------------------------------------------------------- /doc/rst/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/CMakeLists.txt -------------------------------------------------------------------------------- /doc/rst/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/conf.py.in -------------------------------------------------------------------------------- /doc/rst/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/requirements.txt -------------------------------------------------------------------------------- /doc/rst/source/batch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/batch.rst -------------------------------------------------------------------------------- /doc/rst/source/begin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/begin.rst -------------------------------------------------------------------------------- /doc/rst/source/clear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/clear.rst -------------------------------------------------------------------------------- /doc/rst/source/clip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/clip.rst -------------------------------------------------------------------------------- /doc/rst/source/coast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/coast.rst -------------------------------------------------------------------------------- /doc/rst/source/docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/docs.rst -------------------------------------------------------------------------------- /doc/rst/source/end.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/end.rst -------------------------------------------------------------------------------- /doc/rst/source/gmt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/gmt.rst -------------------------------------------------------------------------------- /doc/rst/source/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/image.rst -------------------------------------------------------------------------------- /doc/rst/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/index.rst -------------------------------------------------------------------------------- /doc/rst/source/inset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/inset.rst -------------------------------------------------------------------------------- /doc/rst/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/intro.rst -------------------------------------------------------------------------------- /doc/rst/source/mask.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/mask.rst -------------------------------------------------------------------------------- /doc/rst/source/movie.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/movie.rst -------------------------------------------------------------------------------- /doc/rst/source/plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/plot.rst -------------------------------------------------------------------------------- /doc/rst/source/psxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/psxy.rst -------------------------------------------------------------------------------- /doc/rst/source/psxyz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/psxyz.rst -------------------------------------------------------------------------------- /doc/rst/source/rose.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/rose.rst -------------------------------------------------------------------------------- /doc/rst/source/solar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/solar.rst -------------------------------------------------------------------------------- /doc/rst/source/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/rst/source/text.rst -------------------------------------------------------------------------------- /doc/scripts/GMT_-J.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_-J.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_-R.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_-R.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_-U.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_-U.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_-XY.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_-XY.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_App_E.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_App_E.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_App_G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_App_G.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_SRTM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_SRTM.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_TM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_TM.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_atan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_atan.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_blend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_blend.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_cap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_cap.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_cmyk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_cmyk.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_hinge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_hinge.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_inset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_inset.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_joint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_joint.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_latex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_latex.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_log.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_panel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_panel.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_polar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_polar.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_pow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_pow.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_1.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_2.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_3.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_4.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_5.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_6.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_7.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_8.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_tut_9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_tut_9.sh -------------------------------------------------------------------------------- /doc/scripts/GMT_velo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/doc/scripts/GMT_velo.sh -------------------------------------------------------------------------------- /doc/scripts/images/.gitignore: -------------------------------------------------------------------------------- 1 | *.ps 2 | -------------------------------------------------------------------------------- /share/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/CMakeLists.txt -------------------------------------------------------------------------------- /share/coastline.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/coastline.conf.in -------------------------------------------------------------------------------- /share/cpt/SCM/acton.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/acton.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/actonS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/actonS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/bam.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/bam.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/bamO.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/bamO.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/bamako.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/bamako.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/batlow.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/batlow.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/berlin.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/berlin.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/bilbao.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/bilbao.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/broc.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/broc.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/brocO.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/brocO.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/buda.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/buda.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/budaS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/budaS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/bukavu.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/bukavu.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/cork.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/cork.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/corkO.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/corkO.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/davos.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/davos.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/davosS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/davosS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/devon.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/devon.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/devonS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/devonS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/fes.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/fes.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/grayC.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/grayC.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/grayCS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/grayCS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/hawaii.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/hawaii.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/imola.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/imola.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/imolaS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/imolaS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/lapaz.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/lapaz.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/lapazS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/lapazS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/lipari.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/lipari.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/lisbon.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/lisbon.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/navia.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/navia.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/naviaW.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/naviaW.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/nuuk.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/nuuk.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/nuukS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/nuukS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/oleron.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/oleron.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/oslo.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/oslo.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/osloS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/osloS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/roma.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/roma.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/romaO.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/romaO.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/tofino.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/tofino.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/tokyo.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/tokyo.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/tokyoS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/tokyoS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/turku.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/turku.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/turkuS.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/turkuS.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/vanimo.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/vanimo.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/vik.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/vik.cpt -------------------------------------------------------------------------------- /share/cpt/SCM/vikO.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/SCM/vikO.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/abyss.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/abyss.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/bathy.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/bathy.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/cyclic.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/cyclic.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/dem2.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/dem2.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/dem3.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/dem3.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/drywet.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/drywet.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/earth.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/earth.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/etopo1.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/etopo1.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/gebco.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/gebco.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/geo.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/geo.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/globe.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/globe.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/gray.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/gray.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/haxby.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/haxby.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/ibcso.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/ibcso.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/mag.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/mag.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/ocean.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/ocean.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/paired.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/paired.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/relief.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/relief.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/seis.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/seis.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/split.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/split.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/srtm.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/srtm.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/terra.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/terra.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/topo.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/topo.cpt -------------------------------------------------------------------------------- /share/cpt/gmt/world.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/gmt/world.cpt -------------------------------------------------------------------------------- /share/cpt/matlab/hot.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/matlab/hot.cpt -------------------------------------------------------------------------------- /share/cpt/matlab/jet.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/cpt/matlab/jet.cpt -------------------------------------------------------------------------------- /share/custom/QR.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/QR.eps -------------------------------------------------------------------------------- /share/custom/astroid.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/astroid.def -------------------------------------------------------------------------------- /share/custom/circle.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/circle.def -------------------------------------------------------------------------------- /share/custom/city.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/city.def -------------------------------------------------------------------------------- /share/custom/cross.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/cross.def -------------------------------------------------------------------------------- /share/custom/deltoid.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/deltoid.def -------------------------------------------------------------------------------- /share/custom/diamond.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/diamond.def -------------------------------------------------------------------------------- /share/custom/flash.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/flash.def -------------------------------------------------------------------------------- /share/custom/hexagon.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/hexagon.def -------------------------------------------------------------------------------- /share/custom/hlens.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/hlens.def -------------------------------------------------------------------------------- /share/custom/hneedle.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/hneedle.def -------------------------------------------------------------------------------- /share/custom/lflag.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/lflag.def -------------------------------------------------------------------------------- /share/custom/meca.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/meca.def -------------------------------------------------------------------------------- /share/custom/octagon.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/octagon.def -------------------------------------------------------------------------------- /share/custom/pacman.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/pacman.def -------------------------------------------------------------------------------- /share/custom/rflag.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/rflag.def -------------------------------------------------------------------------------- /share/custom/sectoid.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/sectoid.def -------------------------------------------------------------------------------- /share/custom/square.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/square.def -------------------------------------------------------------------------------- /share/custom/star.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/star.def -------------------------------------------------------------------------------- /share/custom/star3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/star3.def -------------------------------------------------------------------------------- /share/custom/star4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/star4.def -------------------------------------------------------------------------------- /share/custom/starp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/starp.def -------------------------------------------------------------------------------- /share/custom/sun.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/sun.def -------------------------------------------------------------------------------- /share/custom/trirot1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/trirot1.def -------------------------------------------------------------------------------- /share/custom/trirot2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/trirot2.def -------------------------------------------------------------------------------- /share/custom/trirot3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/trirot3.def -------------------------------------------------------------------------------- /share/custom/trirot4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/trirot4.def -------------------------------------------------------------------------------- /share/custom/vlens.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/vlens.def -------------------------------------------------------------------------------- /share/custom/vneedle.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/vneedle.def -------------------------------------------------------------------------------- /share/custom/volcano.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/custom/volcano.def -------------------------------------------------------------------------------- /share/mgd77/Dst_all.wdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/mgd77/Dst_all.wdc -------------------------------------------------------------------------------- /share/mgd77/F107_mon.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/mgd77/F107_mon.plt -------------------------------------------------------------------------------- /share/mgd77/umdl.CM4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/mgd77/umdl.CM4 -------------------------------------------------------------------------------- /share/mgg/carter.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/mgg/carter.d -------------------------------------------------------------------------------- /share/mgg/gmtfile_paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/mgg/gmtfile_paths -------------------------------------------------------------------------------- /share/themes/modern.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/themes/modern.conf -------------------------------------------------------------------------------- /share/tools/gmt_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/tools/gmt_links.sh -------------------------------------------------------------------------------- /share/tools/ncdeflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/tools/ncdeflate -------------------------------------------------------------------------------- /share/x2sys/dat.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/x2sys/dat.fmt -------------------------------------------------------------------------------- /share/x2sys/geo.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/x2sys/geo.fmt -------------------------------------------------------------------------------- /share/x2sys/geoz.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/x2sys/geoz.fmt -------------------------------------------------------------------------------- /share/x2sys/gmt.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/x2sys/gmt.fmt -------------------------------------------------------------------------------- /share/x2sys/mgd77+.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/x2sys/mgd77+.fmt -------------------------------------------------------------------------------- /share/x2sys/mgd77.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/x2sys/mgd77.fmt -------------------------------------------------------------------------------- /share/x2sys/xy.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/x2sys/xy.fmt -------------------------------------------------------------------------------- /share/x2sys/xyz.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/share/x2sys/xyz.fmt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/PSL_ISO-8859-1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-1.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-10.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-11.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-13.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-14.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-15.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-16.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-2.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-3.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-4.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-5.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-6.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-7.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-8.h -------------------------------------------------------------------------------- /src/PSL_ISO-8859-9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISO-8859-9.h -------------------------------------------------------------------------------- /src/PSL_ISOLatin1+.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISOLatin1+.h -------------------------------------------------------------------------------- /src/PSL_ISOLatin1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_ISOLatin1.h -------------------------------------------------------------------------------- /src/PSL_Standard+.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_Standard+.h -------------------------------------------------------------------------------- /src/PSL_Standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_Standard.h -------------------------------------------------------------------------------- /src/PSL_label.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_label.ps -------------------------------------------------------------------------------- /src/PSL_patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_patterns.h -------------------------------------------------------------------------------- /src/PSL_prologue.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_prologue.ps -------------------------------------------------------------------------------- /src/PSL_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_strings.h -------------------------------------------------------------------------------- /src/PSL_text.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/PSL_text.ps -------------------------------------------------------------------------------- /src/README.TRIANGLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/README.TRIANGLE -------------------------------------------------------------------------------- /src/TRIANGLE.HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/TRIANGLE.HOWTO -------------------------------------------------------------------------------- /src/batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/batch.c -------------------------------------------------------------------------------- /src/begin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/begin.c -------------------------------------------------------------------------------- /src/block_subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/block_subs.h -------------------------------------------------------------------------------- /src/blockmean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/blockmean.c -------------------------------------------------------------------------------- /src/blockmedian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/blockmedian.c -------------------------------------------------------------------------------- /src/blockmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/blockmode.c -------------------------------------------------------------------------------- /src/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/clear.c -------------------------------------------------------------------------------- /src/compat/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/compat/qsort.c -------------------------------------------------------------------------------- /src/compat/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/compat/qsort.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/declspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/declspec.h -------------------------------------------------------------------------------- /src/dimfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/dimfilter.c -------------------------------------------------------------------------------- /src/docs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/docs.c -------------------------------------------------------------------------------- /src/end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/end.c -------------------------------------------------------------------------------- /src/figure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/figure.c -------------------------------------------------------------------------------- /src/filter1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/filter1d.c -------------------------------------------------------------------------------- /src/fitcircle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/fitcircle.c -------------------------------------------------------------------------------- /src/fprototype.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/fprototype.f -------------------------------------------------------------------------------- /src/geodesy/earthtide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/geodesy/earthtide.c -------------------------------------------------------------------------------- /src/geodesy/gpsgridder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/geodesy/gpsgridder.c -------------------------------------------------------------------------------- /src/geodesy/psvelo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/geodesy/psvelo.c -------------------------------------------------------------------------------- /src/gmt-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt-config.in -------------------------------------------------------------------------------- /src/gmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt.c -------------------------------------------------------------------------------- /src/gmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt.h -------------------------------------------------------------------------------- /src/gmt2kml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt2kml.c -------------------------------------------------------------------------------- /src/gmt_agc_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_agc_io.c -------------------------------------------------------------------------------- /src/gmt_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_api.c -------------------------------------------------------------------------------- /src/gmt_bcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_bcr.c -------------------------------------------------------------------------------- /src/gmt_calclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_calclock.c -------------------------------------------------------------------------------- /src/gmt_cdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_cdf.c -------------------------------------------------------------------------------- /src/gmt_color_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_color_rgb.h -------------------------------------------------------------------------------- /src/gmt_colornames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_colornames.h -------------------------------------------------------------------------------- /src/gmt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_common.h -------------------------------------------------------------------------------- /src/gmt_common_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_common_math.c -------------------------------------------------------------------------------- /src/gmt_common_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_common_math.h -------------------------------------------------------------------------------- /src/gmt_common_runpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_common_runpath.c -------------------------------------------------------------------------------- /src/gmt_common_runpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_common_runpath.h -------------------------------------------------------------------------------- /src/gmt_common_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_common_string.c -------------------------------------------------------------------------------- /src/gmt_common_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_common_string.h -------------------------------------------------------------------------------- /src/gmt_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_config.h.in -------------------------------------------------------------------------------- /src/gmt_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_constants.h -------------------------------------------------------------------------------- /src/gmt_contour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_contour.h -------------------------------------------------------------------------------- /src/gmt_cpt_masters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_cpt_masters.h -------------------------------------------------------------------------------- /src/gmt_customio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_customio.c -------------------------------------------------------------------------------- /src/gmt_customio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_customio.h -------------------------------------------------------------------------------- /src/gmt_datums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_datums.h -------------------------------------------------------------------------------- /src/gmt_dcw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_dcw.c -------------------------------------------------------------------------------- /src/gmt_dcw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_dcw.h -------------------------------------------------------------------------------- /src/gmt_decorate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_decorate.h -------------------------------------------------------------------------------- /src/gmt_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_defaults.h -------------------------------------------------------------------------------- /src/gmt_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_dev.h -------------------------------------------------------------------------------- /src/gmt_dimensions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_dimensions.h.in -------------------------------------------------------------------------------- /src/gmt_ellipsoids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_ellipsoids.h -------------------------------------------------------------------------------- /src/gmt_enum_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_enum_dict.h -------------------------------------------------------------------------------- /src/gmt_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_error.c -------------------------------------------------------------------------------- /src/gmt_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_error.h -------------------------------------------------------------------------------- /src/gmt_error_codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_error_codes.c -------------------------------------------------------------------------------- /src/gmt_error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_error_codes.h -------------------------------------------------------------------------------- /src/gmt_esri_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_esri_io.c -------------------------------------------------------------------------------- /src/gmt_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_fft.c -------------------------------------------------------------------------------- /src/gmt_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_fft.h -------------------------------------------------------------------------------- /src/gmt_gdalcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_gdalcall.c -------------------------------------------------------------------------------- /src/gmt_gdalread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_gdalread.c -------------------------------------------------------------------------------- /src/gmt_gdalread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_gdalread.h -------------------------------------------------------------------------------- /src/gmt_gdalwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_gdalwrite.c -------------------------------------------------------------------------------- /src/gmt_glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_glib.h -------------------------------------------------------------------------------- /src/gmt_glue.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_glue.c.in -------------------------------------------------------------------------------- /src/gmt_grd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_grd.h -------------------------------------------------------------------------------- /src/gmt_grdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_grdio.c -------------------------------------------------------------------------------- /src/gmt_grdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_grdio.h -------------------------------------------------------------------------------- /src/gmt_gsformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_gsformats.h -------------------------------------------------------------------------------- /src/gmt_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_hash.h -------------------------------------------------------------------------------- /src/gmt_hidden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_hidden.h -------------------------------------------------------------------------------- /src/gmt_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_init.c -------------------------------------------------------------------------------- /src/gmt_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_internals.h -------------------------------------------------------------------------------- /src/gmt_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_io.c -------------------------------------------------------------------------------- /src/gmt_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_io.h -------------------------------------------------------------------------------- /src/gmt_keywords.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_keywords.d -------------------------------------------------------------------------------- /src/gmt_keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_keywords.txt -------------------------------------------------------------------------------- /src/gmt_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_macros.h -------------------------------------------------------------------------------- /src/gmt_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_map.c -------------------------------------------------------------------------------- /src/gmt_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_mb.h -------------------------------------------------------------------------------- /src/gmt_mbsystem_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_mbsystem_glue.c -------------------------------------------------------------------------------- /src/gmt_media_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_media_name.h -------------------------------------------------------------------------------- /src/gmt_media_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_media_size.h -------------------------------------------------------------------------------- /src/gmt_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_memory.c -------------------------------------------------------------------------------- /src/gmt_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_memory.h -------------------------------------------------------------------------------- /src/gmt_mgg_header2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_mgg_header2.c -------------------------------------------------------------------------------- /src/gmt_mgg_header2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_mgg_header2.h -------------------------------------------------------------------------------- /src/gmt_modern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_modern.c -------------------------------------------------------------------------------- /src/gmt_modern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_modern.h -------------------------------------------------------------------------------- /src/gmt_nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_nan.h -------------------------------------------------------------------------------- /src/gmt_nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_nc.c -------------------------------------------------------------------------------- /src/gmt_notposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_notposix.c -------------------------------------------------------------------------------- /src/gmt_notposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_notposix.h -------------------------------------------------------------------------------- /src/gmt_ogrproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_ogrproj.c -------------------------------------------------------------------------------- /src/gmt_ogrread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_ogrread.c -------------------------------------------------------------------------------- /src/gmt_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_parse.c -------------------------------------------------------------------------------- /src/gmt_pennames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_pennames.h -------------------------------------------------------------------------------- /src/gmt_plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_plot.c -------------------------------------------------------------------------------- /src/gmt_plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_plot.h -------------------------------------------------------------------------------- /src/gmt_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_private.h -------------------------------------------------------------------------------- /src/gmt_proj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_proj.c -------------------------------------------------------------------------------- /src/gmt_project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_project.h -------------------------------------------------------------------------------- /src/gmt_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_prototypes.h -------------------------------------------------------------------------------- /src/gmt_psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_psl.h -------------------------------------------------------------------------------- /src/gmt_regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_regexp.c -------------------------------------------------------------------------------- /src/gmt_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_remote.c -------------------------------------------------------------------------------- /src/gmt_remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_remote.h -------------------------------------------------------------------------------- /src/gmt_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_resources.h -------------------------------------------------------------------------------- /src/gmt_sharedlibs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_sharedlibs.c -------------------------------------------------------------------------------- /src/gmt_sharedlibs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_sharedlibs.h.in -------------------------------------------------------------------------------- /src/gmt_shore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_shore.c -------------------------------------------------------------------------------- /src/gmt_shore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_shore.h -------------------------------------------------------------------------------- /src/gmt_sph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_sph.c -------------------------------------------------------------------------------- /src/gmt_sph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_sph.h -------------------------------------------------------------------------------- /src/gmt_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_stat.c -------------------------------------------------------------------------------- /src/gmt_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_support.c -------------------------------------------------------------------------------- /src/gmt_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_symbol.h -------------------------------------------------------------------------------- /src/gmt_synopsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_synopsis.h -------------------------------------------------------------------------------- /src/gmt_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_texture.h -------------------------------------------------------------------------------- /src/gmt_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_time.h -------------------------------------------------------------------------------- /src/gmt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_types.h -------------------------------------------------------------------------------- /src/gmt_unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_unique.h -------------------------------------------------------------------------------- /src/gmt_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_vector.c -------------------------------------------------------------------------------- /src/gmt_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmt_version.h.in -------------------------------------------------------------------------------- /src/gmtbinstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtbinstats.c -------------------------------------------------------------------------------- /src/gmtconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtconnect.c -------------------------------------------------------------------------------- /src/gmtconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtconvert.c -------------------------------------------------------------------------------- /src/gmtdefaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtdefaults.c -------------------------------------------------------------------------------- /src/gmtget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtget.c -------------------------------------------------------------------------------- /src/gmtinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtinfo.c -------------------------------------------------------------------------------- /src/gmtlogo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtlogo.c -------------------------------------------------------------------------------- /src/gmtmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtmath.c -------------------------------------------------------------------------------- /src/gmtprogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtprogram.c -------------------------------------------------------------------------------- /src/gmtread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtread.c -------------------------------------------------------------------------------- /src/gmtregress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtregress.c -------------------------------------------------------------------------------- /src/gmtselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtselect.c -------------------------------------------------------------------------------- /src/gmtset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtset.c -------------------------------------------------------------------------------- /src/gmtsimplify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtsimplify.c -------------------------------------------------------------------------------- /src/gmtspatial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtspatial.c -------------------------------------------------------------------------------- /src/gmtsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtsplit.c -------------------------------------------------------------------------------- /src/gmtswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtswitch -------------------------------------------------------------------------------- /src/gmtswitch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtswitch.bat -------------------------------------------------------------------------------- /src/gmtvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtvector.c -------------------------------------------------------------------------------- /src/gmtwhich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtwhich.c -------------------------------------------------------------------------------- /src/gmtwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gmtwrite.c -------------------------------------------------------------------------------- /src/grd2cpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grd2cpt.c -------------------------------------------------------------------------------- /src/grd2kml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grd2kml.c -------------------------------------------------------------------------------- /src/grd2sph.c.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grd2sph.c.template -------------------------------------------------------------------------------- /src/grd2xyz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grd2xyz.c -------------------------------------------------------------------------------- /src/grdblend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdblend.c -------------------------------------------------------------------------------- /src/grdclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdclip.c -------------------------------------------------------------------------------- /src/grdcontour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdcontour.c -------------------------------------------------------------------------------- /src/grdconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdconvert.c -------------------------------------------------------------------------------- /src/grdcut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdcut.c -------------------------------------------------------------------------------- /src/grdedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdedit.c -------------------------------------------------------------------------------- /src/grdfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdfft.c -------------------------------------------------------------------------------- /src/grdfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdfill.c -------------------------------------------------------------------------------- /src/grdfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdfilter.c -------------------------------------------------------------------------------- /src/grdfilter_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdfilter_mt.c -------------------------------------------------------------------------------- /src/grdgdal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdgdal.c -------------------------------------------------------------------------------- /src/grdgradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdgradient.c -------------------------------------------------------------------------------- /src/grdhisteq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdhisteq.c -------------------------------------------------------------------------------- /src/grdimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdimage.c -------------------------------------------------------------------------------- /src/grdinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdinfo.c -------------------------------------------------------------------------------- /src/grdinterpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdinterpolate.c -------------------------------------------------------------------------------- /src/grdlandmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdlandmask.c -------------------------------------------------------------------------------- /src/grdmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdmask.c -------------------------------------------------------------------------------- /src/grdmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdmath.c -------------------------------------------------------------------------------- /src/grdmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdmix.c -------------------------------------------------------------------------------- /src/grdpaste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdpaste.c -------------------------------------------------------------------------------- /src/grdproject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdproject.c -------------------------------------------------------------------------------- /src/grdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdsample.c -------------------------------------------------------------------------------- /src/grdselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdselect.c -------------------------------------------------------------------------------- /src/grdtrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdtrack.c -------------------------------------------------------------------------------- /src/grdtrend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdtrend.c -------------------------------------------------------------------------------- /src/grdvector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdvector.c -------------------------------------------------------------------------------- /src/grdview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdview.c -------------------------------------------------------------------------------- /src/grdvolume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/grdvolume.c -------------------------------------------------------------------------------- /src/greenspline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/greenspline.c -------------------------------------------------------------------------------- /src/gsfml/CK1995n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/CK1995n.h -------------------------------------------------------------------------------- /src/gsfml/CK1995r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/CK1995r.h -------------------------------------------------------------------------------- /src/gsfml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/CMakeLists.txt -------------------------------------------------------------------------------- /src/gsfml/Chron_Normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/Chron_Normal.h -------------------------------------------------------------------------------- /src/gsfml/GST2004n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/GST2004n.h -------------------------------------------------------------------------------- /src/gsfml/GST2004r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/GST2004r.h -------------------------------------------------------------------------------- /src/gsfml/GST2012n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/GST2012n.h -------------------------------------------------------------------------------- /src/gsfml/GST2012r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/GST2012r.h -------------------------------------------------------------------------------- /src/gsfml/Geek2007n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/Geek2007n.h -------------------------------------------------------------------------------- /src/gsfml/Geek2007r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/Geek2007r.h -------------------------------------------------------------------------------- /src/gsfml/README.gsfml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/README.gsfml -------------------------------------------------------------------------------- /src/gsfml/fz_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/fz_analysis.h -------------------------------------------------------------------------------- /src/gsfml/fz_funcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/fz_funcs.sh -------------------------------------------------------------------------------- /src/gsfml/fzanalyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/fzanalyzer.c -------------------------------------------------------------------------------- /src/gsfml/fzblender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/fzblender.c -------------------------------------------------------------------------------- /src/gsfml/fzinformer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/fzinformer -------------------------------------------------------------------------------- /src/gsfml/fzmapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/fzmapper -------------------------------------------------------------------------------- /src/gsfml/fzmodeler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/fzmodeler -------------------------------------------------------------------------------- /src/gsfml/fzprofiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/fzprofiler -------------------------------------------------------------------------------- /src/gsfml/gsfml_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/gsfml_glue.c -------------------------------------------------------------------------------- /src/gsfml/mlconverter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gsfml/mlconverter.c -------------------------------------------------------------------------------- /src/gshhg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gshhg/CMakeLists.txt -------------------------------------------------------------------------------- /src/gshhg/README.gshhg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gshhg/README.gshhg -------------------------------------------------------------------------------- /src/gshhg/gmt_gshhg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gshhg/gmt_gshhg.h -------------------------------------------------------------------------------- /src/gshhg/gshhg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gshhg/gshhg.c -------------------------------------------------------------------------------- /src/gshhg/gshhg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gshhg/gshhg.h -------------------------------------------------------------------------------- /src/gshhg_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gshhg_version.c -------------------------------------------------------------------------------- /src/gshhg_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/gshhg_version.h -------------------------------------------------------------------------------- /src/img/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/img/CMakeLists.txt -------------------------------------------------------------------------------- /src/img/README.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/img/README.img -------------------------------------------------------------------------------- /src/img/img2google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/img/img2google -------------------------------------------------------------------------------- /src/img/img2grd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/img/img2grd.c -------------------------------------------------------------------------------- /src/imgtexture/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/imgtexture/dct.h -------------------------------------------------------------------------------- /src/imgtexture/fftpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/imgtexture/fftpack.c -------------------------------------------------------------------------------- /src/imgtexture/fftpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/imgtexture/fftpack.h -------------------------------------------------------------------------------- /src/inset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/inset.c -------------------------------------------------------------------------------- /src/isogmt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/isogmt.in -------------------------------------------------------------------------------- /src/kiss_fft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/kiss_fft/COPYING -------------------------------------------------------------------------------- /src/kiss_fft/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/kiss_fft/README -------------------------------------------------------------------------------- /src/kiss_fft/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/kiss_fft/kiss_fft.c -------------------------------------------------------------------------------- /src/kiss_fft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/kiss_fft/kiss_fft.h -------------------------------------------------------------------------------- /src/kml2gmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/kml2gmt.c -------------------------------------------------------------------------------- /src/longopt/batch_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/longopt/batch_inc.h -------------------------------------------------------------------------------- /src/longopt/begin_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/longopt/begin_inc.h -------------------------------------------------------------------------------- /src/longopt/gmtget_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/longopt/gmtget_inc.h -------------------------------------------------------------------------------- /src/longopt/gmtset_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/longopt/gmtset_inc.h -------------------------------------------------------------------------------- /src/longopt/grdcut_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/longopt/grdcut_inc.h -------------------------------------------------------------------------------- /src/longopt/grdfft_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/longopt/grdfft_inc.h -------------------------------------------------------------------------------- /src/longopt/psxy_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/longopt/psxy_inc.h -------------------------------------------------------------------------------- /src/makecpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/makecpt.c -------------------------------------------------------------------------------- /src/mapproject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mapproject.c -------------------------------------------------------------------------------- /src/mergesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mergesort.c -------------------------------------------------------------------------------- /src/mgd77/README.mgd77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/README.mgd77 -------------------------------------------------------------------------------- /src/mgd77/igrftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/igrftest.c -------------------------------------------------------------------------------- /src/mgd77/mgd77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77.c -------------------------------------------------------------------------------- /src/mgd77/mgd77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77.h -------------------------------------------------------------------------------- /src/mgd77/mgd77_e77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77_e77.h -------------------------------------------------------------------------------- /src/mgd77/mgd77_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77_init.h -------------------------------------------------------------------------------- /src/mgd77/mgd77info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77info.c -------------------------------------------------------------------------------- /src/mgd77/mgd77list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77list.c -------------------------------------------------------------------------------- /src/mgd77/mgd77path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77path.c -------------------------------------------------------------------------------- /src/mgd77/mgd77track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77track.c -------------------------------------------------------------------------------- /src/mgd77/mgd77view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/mgd77view -------------------------------------------------------------------------------- /src/mgd77/trkdas.cod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/mgd77/trkdas.cod -------------------------------------------------------------------------------- /src/movie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/movie.c -------------------------------------------------------------------------------- /src/nearneighbor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/nearneighbor.c -------------------------------------------------------------------------------- /src/postscriptlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/postscriptlight.c -------------------------------------------------------------------------------- /src/postscriptlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/postscriptlight.h -------------------------------------------------------------------------------- /src/potential/newton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/potential/newton.h -------------------------------------------------------------------------------- /src/potential/solids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/potential/solids.c -------------------------------------------------------------------------------- /src/project.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/project.c -------------------------------------------------------------------------------- /src/psbasemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psbasemap.c -------------------------------------------------------------------------------- /src/psclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psclip.c -------------------------------------------------------------------------------- /src/pscoast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/pscoast.c -------------------------------------------------------------------------------- /src/pscontour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/pscontour.c -------------------------------------------------------------------------------- /src/psconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psconvert.c -------------------------------------------------------------------------------- /src/psevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psevents.c -------------------------------------------------------------------------------- /src/pshistogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/pshistogram.c -------------------------------------------------------------------------------- /src/psimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psimage.c -------------------------------------------------------------------------------- /src/psl_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psl_config.h.in -------------------------------------------------------------------------------- /src/psldemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psldemo.c -------------------------------------------------------------------------------- /src/psldemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psldemo.h -------------------------------------------------------------------------------- /src/pslegend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/pslegend.c -------------------------------------------------------------------------------- /src/psmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psmask.c -------------------------------------------------------------------------------- /src/psrose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psrose.c -------------------------------------------------------------------------------- /src/psscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psscale.c -------------------------------------------------------------------------------- /src/pssolar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/pssolar.c -------------------------------------------------------------------------------- /src/psternary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psternary.c -------------------------------------------------------------------------------- /src/pstext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/pstext.c -------------------------------------------------------------------------------- /src/pswiggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/pswiggle.c -------------------------------------------------------------------------------- /src/psxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psxy.c -------------------------------------------------------------------------------- /src/psxyz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/psxyz.c -------------------------------------------------------------------------------- /src/s_rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/s_rint.c -------------------------------------------------------------------------------- /src/s_rint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/s_rint.h -------------------------------------------------------------------------------- /src/sample1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/sample1d.c -------------------------------------------------------------------------------- /src/script2verbatim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/script2verbatim.c -------------------------------------------------------------------------------- /src/segy/README.segy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/segy/README.segy -------------------------------------------------------------------------------- /src/segy/pssegy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/segy/pssegy.c -------------------------------------------------------------------------------- /src/segy/pssegyz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/segy/pssegyz.c -------------------------------------------------------------------------------- /src/segy/segy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/segy/segy.h -------------------------------------------------------------------------------- /src/segy/segy2grd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/segy/segy2grd.c -------------------------------------------------------------------------------- /src/segy/segy_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/segy/segy_io.c -------------------------------------------------------------------------------- /src/segy/segy_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/segy/segy_io.h -------------------------------------------------------------------------------- /src/segy/segyreel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/segy/segyreel.h -------------------------------------------------------------------------------- /src/seis/README.seis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/README.seis -------------------------------------------------------------------------------- /src/seis/gmtisf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/gmtisf.c -------------------------------------------------------------------------------- /src/seis/grdshake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/grdshake.c -------------------------------------------------------------------------------- /src/seis/grdvs30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/grdvs30.c -------------------------------------------------------------------------------- /src/seis/isf_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/isf_head.h -------------------------------------------------------------------------------- /src/seis/meca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/meca.h -------------------------------------------------------------------------------- /src/seis/meca_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/meca_symbol.h -------------------------------------------------------------------------------- /src/seis/pscoupe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/pscoupe.c -------------------------------------------------------------------------------- /src/seis/psmeca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/psmeca.c -------------------------------------------------------------------------------- /src/seis/pspolar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/pspolar.c -------------------------------------------------------------------------------- /src/seis/pssac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/pssac.c -------------------------------------------------------------------------------- /src/seis/read_isf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/read_isf.c -------------------------------------------------------------------------------- /src/seis/sacio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/sacio.c -------------------------------------------------------------------------------- /src/seis/sacio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/sacio.h -------------------------------------------------------------------------------- /src/seis/utilmeca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/utilmeca.c -------------------------------------------------------------------------------- /src/seis/utilmeca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/seis/utilmeca.h -------------------------------------------------------------------------------- /src/shelltest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/shelltest.sh -------------------------------------------------------------------------------- /src/spectrum1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/spectrum1d.c -------------------------------------------------------------------------------- /src/sph2grd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/sph2grd.c -------------------------------------------------------------------------------- /src/sphdistance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/sphdistance.c -------------------------------------------------------------------------------- /src/sphinterpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/sphinterpolate.c -------------------------------------------------------------------------------- /src/sphtriangulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/sphtriangulate.c -------------------------------------------------------------------------------- /src/spotter/spotter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/spotter/spotter.c -------------------------------------------------------------------------------- /src/spotter/spotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/spotter/spotter.h -------------------------------------------------------------------------------- /src/spotter/spotter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/spotter/spotter.sh -------------------------------------------------------------------------------- /src/ssrfpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/ssrfpack.c -------------------------------------------------------------------------------- /src/stripack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/stripack.c -------------------------------------------------------------------------------- /src/subplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/subplot.c -------------------------------------------------------------------------------- /src/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/surface.c -------------------------------------------------------------------------------- /src/surface_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/surface_old.c -------------------------------------------------------------------------------- /src/test_JL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/test_JL.c -------------------------------------------------------------------------------- /src/test_example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/test_example1.c -------------------------------------------------------------------------------- /src/test_walter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/test_walter.c -------------------------------------------------------------------------------- /src/testapi_columns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_columns.c -------------------------------------------------------------------------------- /src/testapi_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_conv.c -------------------------------------------------------------------------------- /src/testapi_cube.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_cube.c -------------------------------------------------------------------------------- /src/testapi_gmtgrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_gmtgrid.c -------------------------------------------------------------------------------- /src/testapi_makecpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_makecpt.c -------------------------------------------------------------------------------- /src/testapi_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_matrix.c -------------------------------------------------------------------------------- /src/testapi_modern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_modern.c -------------------------------------------------------------------------------- /src/testapi_spatial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_spatial.c -------------------------------------------------------------------------------- /src/testapi_usergrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_usergrid.c -------------------------------------------------------------------------------- /src/testapi_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testapi_vector.c -------------------------------------------------------------------------------- /src/testgmtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testgmtio.c -------------------------------------------------------------------------------- /src/testgmtshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testgmtshell.c -------------------------------------------------------------------------------- /src/testgrdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testgrdio.c -------------------------------------------------------------------------------- /src/testpsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/testpsl.c -------------------------------------------------------------------------------- /src/trend1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/trend1d.c -------------------------------------------------------------------------------- /src/trend2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/trend2d.c -------------------------------------------------------------------------------- /src/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/triangle.c -------------------------------------------------------------------------------- /src/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/triangle.h -------------------------------------------------------------------------------- /src/triangulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/triangulate.c -------------------------------------------------------------------------------- /src/windbarbs/psbarb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/windbarbs/psbarb.c -------------------------------------------------------------------------------- /src/x2sys/README.x2sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/x2sys/README.x2sys -------------------------------------------------------------------------------- /src/x2sys/x2sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/x2sys/x2sys.c -------------------------------------------------------------------------------- /src/x2sys/x2sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/x2sys/x2sys.h -------------------------------------------------------------------------------- /src/x2sys/x2sys_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/x2sys/x2sys_get.c -------------------------------------------------------------------------------- /src/x2sys/x2sys_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/x2sys/x2sys_init.c -------------------------------------------------------------------------------- /src/x2sys/x2sys_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/x2sys/x2sys_list.c -------------------------------------------------------------------------------- /src/x2sys/x2sys_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/x2sys/x2sys_put.c -------------------------------------------------------------------------------- /src/xyz2grd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/src/xyz2grd.c -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/README.tests -------------------------------------------------------------------------------- /test/api/2d-matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/2d-matrix.txt -------------------------------------------------------------------------------- /test/api/apiconv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apiconv.sh -------------------------------------------------------------------------------- /test/api/apigmtgrid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apigmtgrid.sh -------------------------------------------------------------------------------- /test/api/apigrdpix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apigrdpix.sh -------------------------------------------------------------------------------- /test/api/apimakecpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apimakecpt.sh -------------------------------------------------------------------------------- /test/api/apimat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apimat.sh -------------------------------------------------------------------------------- /test/api/apimat2grd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apimat2grd.sh -------------------------------------------------------------------------------- /test/api/apimat_360.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apimat_360.sh -------------------------------------------------------------------------------- /test/api/apimat_io.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apimat_io.sh -------------------------------------------------------------------------------- /test/api/apimatgrd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apimatgrd.sh -------------------------------------------------------------------------------- /test/api/apimodern.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apimodern.sh -------------------------------------------------------------------------------- /test/api/apiusermix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apiusermix.sh -------------------------------------------------------------------------------- /test/api/apiuservec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apiuservec.sh -------------------------------------------------------------------------------- /test/api/apivec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apivec.sh -------------------------------------------------------------------------------- /test/api/apivec_io.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/api/apivec_io.sh -------------------------------------------------------------------------------- /test/baseline/api.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/api.dvc -------------------------------------------------------------------------------- /test/baseline/img.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/img.dvc -------------------------------------------------------------------------------- /test/baseline/kml.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/kml.dvc -------------------------------------------------------------------------------- /test/baseline/ogr.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/ogr.dvc -------------------------------------------------------------------------------- /test/baseline/psxy.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/psxy.dvc -------------------------------------------------------------------------------- /test/baseline/segy.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/segy.dvc -------------------------------------------------------------------------------- /test/baseline/seis.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/seis.dvc -------------------------------------------------------------------------------- /test/baseline/sph.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/sph.dvc -------------------------------------------------------------------------------- /test/baseline/time.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/baseline/time.dvc -------------------------------------------------------------------------------- /test/blockmean/io.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/blockmean/io.sh -------------------------------------------------------------------------------- /test/gdal/testgrid.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gdal/testgrid.xyz -------------------------------------------------------------------------------- /test/genper/azimuth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/genper/azimuth.sh -------------------------------------------------------------------------------- /test/genper/polar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/genper/polar.sh -------------------------------------------------------------------------------- /test/genper/polar2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/genper/polar2.sh -------------------------------------------------------------------------------- /test/genper/view.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/genper/view.sh -------------------------------------------------------------------------------- /test/geodesy/corner.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/geodesy/corner.ll -------------------------------------------------------------------------------- /test/gmtest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtest.in -------------------------------------------------------------------------------- /test/gmtinfo/tp2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtinfo/tp2.bin -------------------------------------------------------------------------------- /test/gmtinfo/tp2.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtinfo/tp2.xyz -------------------------------------------------------------------------------- /test/gmtlogo/logos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtlogo/logos.sh -------------------------------------------------------------------------------- /test/gmtmath/cdfs1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtmath/cdfs1.sh -------------------------------------------------------------------------------- /test/gmtmath/lsfit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtmath/lsfit.sh -------------------------------------------------------------------------------- /test/gmtmath/pdfs1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtmath/pdfs1.sh -------------------------------------------------------------------------------- /test/gmtmath/pdfs2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtmath/pdfs2.sh -------------------------------------------------------------------------------- /test/gmtspatial/L1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtspatial/L1.txt -------------------------------------------------------------------------------- /test/gmtspatial/L2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtspatial/L2.txt -------------------------------------------------------------------------------- /test/gmtspatial/nn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtspatial/nn.sh -------------------------------------------------------------------------------- /test/gmtspatial/ph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtspatial/ph.sh -------------------------------------------------------------------------------- /test/gmtsplit/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtsplit/data.dat -------------------------------------------------------------------------------- /test/gmtsplit/split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtsplit/split.sh -------------------------------------------------------------------------------- /test/gmtvector/pts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtvector/pts.txt -------------------------------------------------------------------------------- /test/gmtvector/result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gmtvector/result -------------------------------------------------------------------------------- /test/grd2xyz/vector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grd2xyz/vector.sh -------------------------------------------------------------------------------- /test/grdclip/limits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdclip/limits.sh -------------------------------------------------------------------------------- /test/grdcut/autores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdcut/autores.sh -------------------------------------------------------------------------------- /test/grdcut/cut.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdcut/cut.sh -------------------------------------------------------------------------------- /test/grdcut/origin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdcut/origin.sh -------------------------------------------------------------------------------- /test/grdcut/polycut.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdcut/polycut.sh -------------------------------------------------------------------------------- /test/grdcut/shrink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdcut/shrink.sh -------------------------------------------------------------------------------- /test/grdcut/subset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdcut/subset.sh -------------------------------------------------------------------------------- /test/grdedit/edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdedit/edit.sh -------------------------------------------------------------------------------- /test/grdfft/bworthr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdfft/bworthr.sh -------------------------------------------------------------------------------- /test/grdfft/gfilter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdfft/gfilter.sh -------------------------------------------------------------------------------- /test/grdfft/pow4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdfft/pow4.txt -------------------------------------------------------------------------------- /test/grdfft/power2D.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdfft/power2D.sh -------------------------------------------------------------------------------- /test/grdfill/nnfill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdfill/nnfill.sh -------------------------------------------------------------------------------- /test/grdimage/SST.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdimage/SST.sh -------------------------------------------------------------------------------- /test/grdimage/afr.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdimage/afr.grd -------------------------------------------------------------------------------- /test/grdimage/mask.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdimage/mask.nc -------------------------------------------------------------------------------- /test/grdimage/mask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdimage/mask.sh -------------------------------------------------------------------------------- /test/grdmask/2k.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmask/2k.dat -------------------------------------------------------------------------------- /test/grdmask/holes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmask/holes.sh -------------------------------------------------------------------------------- /test/grdmath/F.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmath/F.sh -------------------------------------------------------------------------------- /test/grdmath/d2dxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmath/d2dxy.sh -------------------------------------------------------------------------------- /test/grdmath/fisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmath/fisher.sh -------------------------------------------------------------------------------- /test/grdmath/ldist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmath/ldist.sh -------------------------------------------------------------------------------- /test/grdmath/ops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmath/ops.sh -------------------------------------------------------------------------------- /test/grdmath/pdist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmath/pdist.sh -------------------------------------------------------------------------------- /test/grdmath/reduce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmath/reduce.sh -------------------------------------------------------------------------------- /test/grdmath/taper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmath/taper.sh -------------------------------------------------------------------------------- /test/grdmix/grdmix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdmix/grdmix.sh -------------------------------------------------------------------------------- /test/grdvector/uc2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdvector/uc2.nc -------------------------------------------------------------------------------- /test/grdvector/vc2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdvector/vc2.nc -------------------------------------------------------------------------------- /test/grdview/cuerpo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdview/cuerpo.sh -------------------------------------------------------------------------------- /test/grdview/denver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdview/denver.sh -------------------------------------------------------------------------------- /test/grdview/rgb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdview/rgb.sh -------------------------------------------------------------------------------- /test/grdview/super2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdview/super2.nc -------------------------------------------------------------------------------- /test/grdview/test.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdview/test.grd -------------------------------------------------------------------------------- /test/grdview/tiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdview/tiles.sh -------------------------------------------------------------------------------- /test/grdview/wrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/grdview/wrap.sh -------------------------------------------------------------------------------- /test/gshhg/two_ants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/gshhg/two_ants.sh -------------------------------------------------------------------------------- /test/img/imgmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/img/imgmap.sh -------------------------------------------------------------------------------- /test/img/imgtrack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/img/imgtrack.sh -------------------------------------------------------------------------------- /test/kml/coast.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/kml/coast.kml -------------------------------------------------------------------------------- /test/kml/gmt2kml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/kml/gmt2kml.sh -------------------------------------------------------------------------------- /test/kml/kml2gmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/kml/kml2gmt.sh -------------------------------------------------------------------------------- /test/kml/lines.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/kml/lines.kml -------------------------------------------------------------------------------- /test/kml/pointsets.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/kml/pointsets.kml -------------------------------------------------------------------------------- /test/latex/latexrgb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/latex/latexrgb.sh -------------------------------------------------------------------------------- /test/latex/latext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/latex/latext.sh -------------------------------------------------------------------------------- /test/makecpt/logcpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/makecpt/logcpt.sh -------------------------------------------------------------------------------- /test/mgd77/cm4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/mgd77/cm4.sh -------------------------------------------------------------------------------- /test/mgd77/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/mgd77/convert.sh -------------------------------------------------------------------------------- /test/mgd77/dummy.e77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/mgd77/dummy.e77 -------------------------------------------------------------------------------- /test/mgd77/dummy.mgd77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/mgd77/dummy.mgd77 -------------------------------------------------------------------------------- /test/mgd77/test_cm4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/mgd77/test_cm4.sh -------------------------------------------------------------------------------- /test/mgd77/track.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/mgd77/track.sh -------------------------------------------------------------------------------- /test/modern/box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/modern/box.sh -------------------------------------------------------------------------------- /test/modern/inset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/modern/inset.sh -------------------------------------------------------------------------------- /test/modern/inset2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/modern/inset2.sh -------------------------------------------------------------------------------- /test/modern/panels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/modern/panels.sh -------------------------------------------------------------------------------- /test/modern/powlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/modern/powlog.sh -------------------------------------------------------------------------------- /test/modern/vardims.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/modern/vardims.sh -------------------------------------------------------------------------------- /test/modern/vector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/modern/vector.sh -------------------------------------------------------------------------------- /test/ogr/lookup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/ogr/lookup.sh -------------------------------------------------------------------------------- /test/ogr/quakes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/ogr/quakes.sh -------------------------------------------------------------------------------- /test/ogr/select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/ogr/select.sh -------------------------------------------------------------------------------- /test/project/small.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/project/small.sh -------------------------------------------------------------------------------- /test/psclip/clip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psclip/clip.sh -------------------------------------------------------------------------------- /test/pscoast/oblCA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pscoast/oblCA.sh -------------------------------------------------------------------------------- /test/pscoast/pseudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pscoast/pseudo.sh -------------------------------------------------------------------------------- /test/pscoast/spain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pscoast/spain.sh -------------------------------------------------------------------------------- /test/pscontour/ice.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pscontour/ice.bm -------------------------------------------------------------------------------- /test/psevents/lines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psevents/lines.sh -------------------------------------------------------------------------------- /test/pslegend/fancy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pslegend/fancy.sh -------------------------------------------------------------------------------- /test/pslegend/leg3D.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pslegend/leg3D.sh -------------------------------------------------------------------------------- /test/pslegend/lines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pslegend/lines.sh -------------------------------------------------------------------------------- /test/pslegend/table.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pslegend/table.sh -------------------------------------------------------------------------------- /test/psmask/holes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psmask/holes.sh -------------------------------------------------------------------------------- /test/psmask/masking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psmask/masking.sh -------------------------------------------------------------------------------- /test/psrose/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psrose/a.txt -------------------------------------------------------------------------------- /test/psrose/gallery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psrose/gallery.sh -------------------------------------------------------------------------------- /test/psrose/oldrose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psrose/oldrose.sh -------------------------------------------------------------------------------- /test/psrose/rose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psrose/rose.sh -------------------------------------------------------------------------------- /test/psrose/sector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psrose/sector.sh -------------------------------------------------------------------------------- /test/psrose/vectors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psrose/vectors.sh -------------------------------------------------------------------------------- /test/pssac/input.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/input.dat -------------------------------------------------------------------------------- /test/pssac/ntkl.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/ntkl.z -------------------------------------------------------------------------------- /test/pssac/nykl.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/nykl.z -------------------------------------------------------------------------------- /test/pssac/onkl.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/onkl.z -------------------------------------------------------------------------------- /test/pssac/pssac_C.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_C.sh -------------------------------------------------------------------------------- /test/pssac/pssac_D.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_D.sh -------------------------------------------------------------------------------- /test/pssac/pssac_E.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_E.sh -------------------------------------------------------------------------------- /test/pssac/pssac_F.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_F.sh -------------------------------------------------------------------------------- /test/pssac/pssac_G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_G.sh -------------------------------------------------------------------------------- /test/pssac/pssac_M.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_M.sh -------------------------------------------------------------------------------- /test/pssac/pssac_Q.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_Q.sh -------------------------------------------------------------------------------- /test/pssac/pssac_T.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_T.sh -------------------------------------------------------------------------------- /test/pssac/pssac_W.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/pssac_W.sh -------------------------------------------------------------------------------- /test/pssac/sdkl.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/sdkl.z -------------------------------------------------------------------------------- /test/pssac/seis.sac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pssac/seis.sac -------------------------------------------------------------------------------- /test/psscale/cbars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psscale/cbars.sh -------------------------------------------------------------------------------- /test/psscale/cptmix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psscale/cptmix.sh -------------------------------------------------------------------------------- /test/psscale/scales.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psscale/scales.sh -------------------------------------------------------------------------------- /test/psscale/seis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psscale/seis.sh -------------------------------------------------------------------------------- /test/pstext/book.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/book.sh -------------------------------------------------------------------------------- /test/pstext/boxtext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/boxtext.sh -------------------------------------------------------------------------------- /test/pstext/caption.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/caption.sh -------------------------------------------------------------------------------- /test/pstext/delay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/delay.sh -------------------------------------------------------------------------------- /test/pstext/escape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/escape.sh -------------------------------------------------------------------------------- /test/pstext/labeler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/labeler.sh -------------------------------------------------------------------------------- /test/pstext/points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/points.txt -------------------------------------------------------------------------------- /test/pstext/test.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/test.grd -------------------------------------------------------------------------------- /test/pstext/utf8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/pstext/utf8.sh -------------------------------------------------------------------------------- /test/psxy/QR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/QR.sh -------------------------------------------------------------------------------- /test/psxy/allsymbcm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/allsymbcm.sh -------------------------------------------------------------------------------- /test/psxy/amundsen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/amundsen.txt -------------------------------------------------------------------------------- /test/psxy/antwrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/antwrap.sh -------------------------------------------------------------------------------- /test/psxy/arcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/arcs.sh -------------------------------------------------------------------------------- /test/psxy/arrowline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/arrowline.sh -------------------------------------------------------------------------------- /test/psxy/arrows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/arrows.sh -------------------------------------------------------------------------------- /test/psxy/badpols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/badpols.sh -------------------------------------------------------------------------------- /test/psxy/barshv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/barshv.sh -------------------------------------------------------------------------------- /test/psxy/bezvec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/bezvec.sh -------------------------------------------------------------------------------- /test/psxy/binarypie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/binarypie.sh -------------------------------------------------------------------------------- /test/psxy/boxwhisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/boxwhisk.sh -------------------------------------------------------------------------------- /test/psxy/bugger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/bugger.sh -------------------------------------------------------------------------------- /test/psxy/bugger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/bugger.txt -------------------------------------------------------------------------------- /test/psxy/cartvec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/cartvec.sh -------------------------------------------------------------------------------- /test/psxy/clipline1.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipline1.xy -------------------------------------------------------------------------------- /test/psxy/clipline2.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipline2.xy -------------------------------------------------------------------------------- /test/psxy/clipping1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipping1.sh -------------------------------------------------------------------------------- /test/psxy/clipping2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipping2.sh -------------------------------------------------------------------------------- /test/psxy/clipping3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipping3.sh -------------------------------------------------------------------------------- /test/psxy/clipping4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipping4.sh -------------------------------------------------------------------------------- /test/psxy/clipping5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipping5.sh -------------------------------------------------------------------------------- /test/psxy/clipping6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipping6.sh -------------------------------------------------------------------------------- /test/psxy/clipping7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipping7.sh -------------------------------------------------------------------------------- /test/psxy/clipping8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/clipping8.sh -------------------------------------------------------------------------------- /test/psxy/cmdargs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/cmdargs.sh -------------------------------------------------------------------------------- /test/psxy/comet.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/comet.def -------------------------------------------------------------------------------- /test/psxy/conic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/conic.sh -------------------------------------------------------------------------------- /test/psxy/datagrep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/datagrep.sh -------------------------------------------------------------------------------- /test/psxy/diagonal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/diagonal.sh -------------------------------------------------------------------------------- /test/psxy/dip.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/dip.def -------------------------------------------------------------------------------- /test/psxy/endarrows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/endarrows.sh -------------------------------------------------------------------------------- /test/psxy/file2.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/file2.gmt -------------------------------------------------------------------------------- /test/psxy/filler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/filler.sh -------------------------------------------------------------------------------- /test/psxy/front.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/front.sh -------------------------------------------------------------------------------- /test/psxy/gallo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/gallo.sh -------------------------------------------------------------------------------- /test/psxy/gaps.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/gaps.nc -------------------------------------------------------------------------------- /test/psxy/gaps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/gaps.sh -------------------------------------------------------------------------------- /test/psxy/gaps_time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/gaps_time.sh -------------------------------------------------------------------------------- /test/psxy/geovector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/geovector.sh -------------------------------------------------------------------------------- /test/psxy/hexagone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/hexagone.sh -------------------------------------------------------------------------------- /test/psxy/japquakes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/japquakes.sh -------------------------------------------------------------------------------- /test/psxy/kara.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/kara.gmt -------------------------------------------------------------------------------- /test/psxy/kara.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/kara.sh -------------------------------------------------------------------------------- /test/psxy/line1.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/line1.gmt -------------------------------------------------------------------------------- /test/psxy/line2.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/line2.gmt -------------------------------------------------------------------------------- /test/psxy/line_geo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/line_geo.sh -------------------------------------------------------------------------------- /test/psxy/linearrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/linearrow.sh -------------------------------------------------------------------------------- /test/psxy/lineclip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/lineclip.sh -------------------------------------------------------------------------------- /test/psxy/linetrim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/linetrim.sh -------------------------------------------------------------------------------- /test/psxy/logclip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/logclip.sh -------------------------------------------------------------------------------- /test/psxy/longjump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/longjump.sh -------------------------------------------------------------------------------- /test/psxy/macros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/macros.sh -------------------------------------------------------------------------------- /test/psxy/map_units.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/map_units.sh -------------------------------------------------------------------------------- /test/psxy/matharc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/matharc.sh -------------------------------------------------------------------------------- /test/psxy/matharrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/matharrow.sh -------------------------------------------------------------------------------- /test/psxy/nearpole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/nearpole.sh -------------------------------------------------------------------------------- /test/psxy/new_gaps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/new_gaps.sh -------------------------------------------------------------------------------- /test/psxy/nojump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/nojump.sh -------------------------------------------------------------------------------- /test/psxy/oldvec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/oldvec.sh -------------------------------------------------------------------------------- /test/psxy/outline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/outline.sh -------------------------------------------------------------------------------- /test/psxy/plane_c.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/plane_c.def -------------------------------------------------------------------------------- /test/psxy/plane_geo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/plane_geo.sh -------------------------------------------------------------------------------- /test/psxy/plot_TS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/plot_TS.sh -------------------------------------------------------------------------------- /test/psxy/pol_N.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/pol_N.txt -------------------------------------------------------------------------------- /test/psxy/pol_S.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/pol_S.txt -------------------------------------------------------------------------------- /test/psxy/polar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/polar.sh -------------------------------------------------------------------------------- /test/psxy/poleline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/poleline.sh -------------------------------------------------------------------------------- /test/psxy/polyholes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/polyholes.sh -------------------------------------------------------------------------------- /test/psxy/psxy-l2s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/psxy-l2s.sh -------------------------------------------------------------------------------- /test/psxy/quakes.ngdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/quakes.ngdc -------------------------------------------------------------------------------- /test/psxy/rectclip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/rectclip.sh -------------------------------------------------------------------------------- /test/psxy/repeat1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/repeat1.sh -------------------------------------------------------------------------------- /test/psxy/repeat2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/repeat2.sh -------------------------------------------------------------------------------- /test/psxy/scalesymb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/scalesymb.sh -------------------------------------------------------------------------------- /test/psxy/scaling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/scaling.sh -------------------------------------------------------------------------------- /test/psxy/snakes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/snakes.sh -------------------------------------------------------------------------------- /test/psxy/spiders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/spiders.sh -------------------------------------------------------------------------------- /test/psxy/stairs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/stairs.sh -------------------------------------------------------------------------------- /test/psxy/subduct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/subduct.txt -------------------------------------------------------------------------------- /test/psxy/testpol.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/testpol.d -------------------------------------------------------------------------------- /test/psxy/tiling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/tiling.sh -------------------------------------------------------------------------------- /test/psxy/tiling1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/tiling1.jpg -------------------------------------------------------------------------------- /test/psxy/tiling2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/tiling2.jpg -------------------------------------------------------------------------------- /test/psxy/tissot_TM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/tissot_TM.sh -------------------------------------------------------------------------------- /test/psxy/trimline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/trimline.sh -------------------------------------------------------------------------------- /test/psxy/twovtypes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/twovtypes.sh -------------------------------------------------------------------------------- /test/psxy/txtsymb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/txtsymb.sh -------------------------------------------------------------------------------- /test/psxy/units.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/units.sh -------------------------------------------------------------------------------- /test/psxy/urlquakes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/urlquakes.sh -------------------------------------------------------------------------------- /test/psxy/varpen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/varpen.sh -------------------------------------------------------------------------------- /test/psxy/varwedges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/varwedges.sh -------------------------------------------------------------------------------- /test/psxy/vector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/vector.sh -------------------------------------------------------------------------------- /test/psxy/vectypes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/vectypes.sh -------------------------------------------------------------------------------- /test/psxy/wedges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/wedges.sh -------------------------------------------------------------------------------- /test/psxy/windbarb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/windbarb.def -------------------------------------------------------------------------------- /test/psxy/windbarb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/windbarb.sh -------------------------------------------------------------------------------- /test/psxy/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/wrapper.sh -------------------------------------------------------------------------------- /test/psxy/wrapping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxy/wrapping.sh -------------------------------------------------------------------------------- /test/psxyz/3dbars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/3dbars.sh -------------------------------------------------------------------------------- /test/psxyz/QR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/QR.sh -------------------------------------------------------------------------------- /test/psxyz/cartvec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/cartvec.sh -------------------------------------------------------------------------------- /test/psxyz/cmdargs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/cmdargs.sh -------------------------------------------------------------------------------- /test/psxyz/filler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/filler.sh -------------------------------------------------------------------------------- /test/psxyz/front.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/front.sh -------------------------------------------------------------------------------- /test/psxyz/linez.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/linez.sh -------------------------------------------------------------------------------- /test/psxyz/matharc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/matharc.sh -------------------------------------------------------------------------------- /test/psxyz/oldvec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/oldvec.sh -------------------------------------------------------------------------------- /test/psxyz/varpen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/varpen.sh -------------------------------------------------------------------------------- /test/psxyz/vector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/vector.sh -------------------------------------------------------------------------------- /test/psxyz/wedges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/psxyz/wedges.sh -------------------------------------------------------------------------------- /test/segy/segy_01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/segy/segy_01.sh -------------------------------------------------------------------------------- /test/segy/segy_02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/segy/segy_02.sh -------------------------------------------------------------------------------- /test/segy/segy_03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/segy/segy_03.sh -------------------------------------------------------------------------------- /test/segy/segy_04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/segy/segy_04.sh -------------------------------------------------------------------------------- /test/segy/segy_05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/segy/segy_05.sh -------------------------------------------------------------------------------- /test/segy/test.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/segy/test.list -------------------------------------------------------------------------------- /test/seis/seis_01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_01.sh -------------------------------------------------------------------------------- /test/seis/seis_02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_02.sh -------------------------------------------------------------------------------- /test/seis/seis_03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_03.sh -------------------------------------------------------------------------------- /test/seis/seis_04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_04.sh -------------------------------------------------------------------------------- /test/seis/seis_05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_05.sh -------------------------------------------------------------------------------- /test/seis/seis_07.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_07.sh -------------------------------------------------------------------------------- /test/seis/seis_08.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_08.sh -------------------------------------------------------------------------------- /test/seis/seis_10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_10.sh -------------------------------------------------------------------------------- /test/seis/seis_11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_11.sh -------------------------------------------------------------------------------- /test/seis/seis_12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_12.sh -------------------------------------------------------------------------------- /test/seis/seis_13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/seis/seis_13.sh -------------------------------------------------------------------------------- /test/sph/lun2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph/lun2.txt -------------------------------------------------------------------------------- /test/sph/sph_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph/sph_1.sh -------------------------------------------------------------------------------- /test/sph/sph_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph/sph_2.sh -------------------------------------------------------------------------------- /test/sph/sph_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph/sph_3.sh -------------------------------------------------------------------------------- /test/sph/sph_4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph/sph_4.sh -------------------------------------------------------------------------------- /test/sph/sph_5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph/sph_5.sh -------------------------------------------------------------------------------- /test/sph2grd/EGM96.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph2grd/EGM96.sh -------------------------------------------------------------------------------- /test/sph2grd/normal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph2grd/normal.sh -------------------------------------------------------------------------------- /test/sph2grd/one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/sph2grd/one.sh -------------------------------------------------------------------------------- /test/surface/limits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/surface/limits.sh -------------------------------------------------------------------------------- /test/trend1d/data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/trend1d/data1.txt -------------------------------------------------------------------------------- /test/trend1d/data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/trend1d/data2.txt -------------------------------------------------------------------------------- /test/trend1d/data3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/trend1d/data3.txt -------------------------------------------------------------------------------- /test/trend1d/trend1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/trend1d/trend1.sh -------------------------------------------------------------------------------- /test/trend2d/trend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/trend2d/trend.sh -------------------------------------------------------------------------------- /test/x2sys/line.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/line.def -------------------------------------------------------------------------------- /test/x2sys/ss_faa.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/ss_faa.nc -------------------------------------------------------------------------------- /test/x2sys/x2sys_01.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/x2sys_01.sh -------------------------------------------------------------------------------- /test/x2sys/x2sys_02.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/x2sys_02.sh -------------------------------------------------------------------------------- /test/x2sys/x2sys_03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/x2sys_03.sh -------------------------------------------------------------------------------- /test/x2sys/x2sys_04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/x2sys_04.sh -------------------------------------------------------------------------------- /test/x2sys/x2sys_05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/x2sys_05.sh -------------------------------------------------------------------------------- /test/x2sys/x2sys_06.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/x2sys_06.sh -------------------------------------------------------------------------------- /test/x2sys/x2sys_07.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GenericMappingTools/gmt/HEAD/test/x2sys/x2sys_07.sh --------------------------------------------------------------------------------