Index: Makefile =================================================================== --- Makefile (nonexistent) +++ Makefile (copie de travail) @@ -0,0 +1,56 @@ +# $FreeBSD$ + +PORTNAME= gmt5 +DISTVERSION= 5.4.4 +DISTVERSIONSUFFIX= -src +CATEGORIES= graphics +MASTER_SITES= ftp://ftp.soest.hawaii.edu/%SUBDIR%/ \ + ftp://ftp.geologi.uio.no/pub/%SUBDIR%/ \ + ftp://ftp.iag.usp.br/%SUBDIR%/ \ + ftp://ftp.scc.u-tokai.ac.jp/pub/%SUBDIR%/ \ + http://gd.tuwien.ac.at/graphics/visual/%SUBDIR%/ \ + http://gmt.mirror.ac.za/%SUBDIR%/ \ + ftp://ftp.soest.hawaii.edu/gshhg/:gshhg \ + ftp://ftp.scc.u-tokai.ac.jp/pub/gmt/:gshhg +MASTER_SITE_SUBDIR= gmt gmt/legacy +DISTNAME= gmt-${DISTVERSION}${DISTVERSIONSUFFIX} + +MAINTAINER= lbartoletti@tuxfamily.org +COMMENT= Generic Mapping Tools - data processing and display software package + +LICENSE= GPLv3 LGPL3 +LICENSE_COMB= multi + +LIB_DEPENDS= libnetcdf.so:science/netcdf \ + libcurl.so:ftp/curl \ + libpcre.so:devel/pcre \ + libfftw3f_threads.so:math/fftw3-float \ + libgdal.so:graphics/gdal +RUN_DEPENDS= bash:shells/bash +BUILD_DEPENDS= ${LOCALBASE}/share/dcw-gmt/dcw-gmt.nc:graphics/gmt5-dcw \ + ${LOCALBASE}/share/gshhg-gmt/binned_GSHHS_c.nc:graphics/gmt5-gshhg + +WRKSRC= ${WRKDIR}/gmt-${PORTVERSION} + +USES= shebangfix cmake:outsource +SHEBANG_GLOB= *.sh *.in +SHEBANG_FILES= share/tools/ncdeflate src/img/img2google src/gmtswitch + +USE_LDCONFIG= yes + +CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_C_FLAGS=-fstrict-aliasing \ + -DCMAKE_INSTALL_PREFIX=${PREFIX} \ + -DDCW_ROOT=${LOCALBASE}/share/gmt5-dcw \ + -DGSHHG_ROOT=${LOCALBASE}/share/gmt5-gshhg \ + -DGMT_INSTALL_MODULE_LINKS=off \ + -DGMT_INSTALL_TRADITIONAL_FOLDERNAMES=off \ + -DGMT_DATADIR=share/${PORTNAME} \ + -DGMT_DOCDIR=share/doc/${PORTNAME} \ + -DGMT_MANDIR=share/doc/${PORTNAME}/man \ + -DGMT_INSTALL_NAME_SUFFIX=-gmt5 + +#STRIP_BINS= gmtff gmtswitch isogmt +#STRIP_LIBS= libgmt5.so.4 libgmtps.so.4 libpsl.so.4 + +.include Property changes on: Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: distinfo =================================================================== --- distinfo (nonexistent) +++ distinfo (copie de travail) @@ -0,0 +1,7 @@ +TIMESTAMP = 1534844298 +SHA256 (gmt-5.4.4-src.tar.gz) = 1baf3d6b049db7cc6cbd7506524cdca45c41e3bfffb24814245fc18f5a8626c2 +SIZE (gmt-5.4.4-src.tar.gz) = 118099492 +SHA256 (gshhg-gmt-2.3.7.tar.gz) = 9bb1a956fca0718c083bef842e625797535a00ce81f175df08b042c2a92cfe7f +SIZE (gshhg-gmt-2.3.7.tar.gz) = 57052180 +SHA256 (dcw-gmt-1.1.4.tar.gz) = 8d47402abcd7f54a0f711365cd022e4eaea7da324edac83611ca035ea443aad3 +SIZE (dcw-gmt-1.1.4.tar.gz) = 21117179 Property changes on: distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: files/patch-src_CMakeLists.txt =================================================================== --- files/patch-src_CMakeLists.txt (nonexistent) +++ files/patch-src_CMakeLists.txt (copie de travail) @@ -0,0 +1,22 @@ +--- src/CMakeLists.txt.orig 2018-03-10 21:01:02 UTC ++++ src/CMakeLists.txt +@@ -40,6 +40,10 @@ message (STATUS "Searching dependent lib + find_package (NETCDF REQUIRED) + include_directories (${NETCDF_INCLUDE_DIR}) + ++#libexecinfo is required in *BSD ++find_package(Backtrace REQUIRED) ++list (APPEND GMT_OPTIONAL_LIBRARIES ${Backtrace_LIBRARIES}) ++ + # libcurl is required since 5.4 + find_package (CURL REQUIRED) + include_directories (${CURL_INCLUDE_DIRS}) +@@ -560,7 +564,7 @@ endif (HAVE_M_LIBRARY) + # set the build version (VERSION) and the API version (SOVERSION) + set_target_properties (gmtlib + PROPERTIES +- OUTPUT_NAME gmt ++ OUTPUT_NAME gmt5 + PREFIX "${LIB_PREFIX}" + IMPORT_PREFIX "${LIB_PREFIX}" + VERSION ${GMT_LIB_VERSION} Property changes on: files/patch-src_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: files/patch-src_common__string.h =================================================================== --- files/patch-src_common__string.h (nonexistent) +++ files/patch-src_common__string.h (copie de travail) @@ -0,0 +1,12 @@ +--- src/common_string.h.orig 2018-08-21 09:40:24 UTC ++++ src/common_string.h +@@ -82,7 +82,9 @@ EXTERN_MSC char *stresep (char **stringp + + EXTERN_MSC int gmt_match_string_in_file (const char *filename, const char *string); + ++#ifndef __FreeBSD__ + EXTERN_MSC char *basename(char *path); ++#endif + + #ifdef __cplusplus + } Property changes on: files/patch-src_common__string.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: pkg-descr =================================================================== --- pkg-descr (nonexistent) +++ pkg-descr (copie de travail) @@ -0,0 +1,6 @@ +GMT is an open source collection of ~130 tools for manipulating +geographic and Cartesian data sets and producing PostScript +illustrations ranging from simple x-y plots via contour maps to +artificially illuminated surfaces and 3D perspective views. + +WWW: https://gmt.soest.hawaii.edu/ Property changes on: pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: pkg-plist =================================================================== --- pkg-plist (nonexistent) +++ pkg-plist (copie de travail) @@ -0,0 +1,1807 @@ +bin/gmt +bin/gmt-config-gmt5 +bin/gmt-gmt5 +bin/gmt_shell_functions-gmt5.sh +bin/gmtswitch-gmt5 +bin/isogmt-gmt5 +etc/bash_completion.d/gmt_completion.bash +include/gmt-gmt5/common_math.h +include/gmt-gmt5/common_string.h +include/gmt-gmt5/compat/qsort.h +include/gmt-gmt5/config.h +include/gmt-gmt5/declspec.h +include/gmt-gmt5/gmt.h +include/gmt-gmt5/gmt_common.h +include/gmt-gmt5/gmt_config.h +include/gmt-gmt5/gmt_constants.h +include/gmt-gmt5/gmt_contour.h +include/gmt-gmt5/gmt_core_module.h +include/gmt-gmt5/gmt_customio.h +include/gmt-gmt5/gmt_dcw.h +include/gmt-gmt5/gmt_decorate.h +include/gmt-gmt5/gmt_defaults.h +include/gmt-gmt5/gmt_dev.h +include/gmt-gmt5/gmt_dimensions.h +include/gmt-gmt5/gmt_error.h +include/gmt-gmt5/gmt_error_codes.h +include/gmt-gmt5/gmt_fft.h +include/gmt-gmt5/gmt_gdalread.h +include/gmt-gmt5/gmt_grd.h +include/gmt-gmt5/gmt_grdio.h +include/gmt-gmt5/gmt_hash.h +include/gmt-gmt5/gmt_io.h +include/gmt-gmt5/gmt_macros.h +include/gmt-gmt5/gmt_mb.h +include/gmt-gmt5/gmt_memory.h +include/gmt-gmt5/gmt_nan.h +include/gmt-gmt5/gmt_notposix.h +include/gmt-gmt5/gmt_plot.h +include/gmt-gmt5/gmt_private.h +include/gmt-gmt5/gmt_project.h +include/gmt-gmt5/gmt_prototypes.h +include/gmt-gmt5/gmt_psl.h +include/gmt-gmt5/gmt_resources.h +include/gmt-gmt5/gmt_shore.h +include/gmt-gmt5/gmt_supplements_module.h +include/gmt-gmt5/gmt_symbol.h +include/gmt-gmt5/gmt_synopsis.h +include/gmt-gmt5/gmt_texture.h +include/gmt-gmt5/gmt_time.h +include/gmt-gmt5/gmt_types.h +include/gmt-gmt5/gmt_version.h +include/gmt-gmt5/gshhg/gmt_gshhg.h +include/gmt-gmt5/gshhg/gshhg.h +include/gmt-gmt5/meca/meca.h +include/gmt-gmt5/meca/utilmeca.h +include/gmt-gmt5/mgd77/cm4_functions.h +include/gmt-gmt5/mgd77/mgd77.h +include/gmt-gmt5/mgd77/mgd77_IGF_coeffs.h +include/gmt-gmt5/mgd77/mgd77_codes.h +include/gmt-gmt5/mgd77/mgd77_e77.h +include/gmt-gmt5/mgd77/mgd77_functions.h +include/gmt-gmt5/mgd77/mgd77_init.h +include/gmt-gmt5/mgd77/mgd77_recalc.h +include/gmt-gmt5/mgd77/mgd77_rls_coeffs.h +include/gmt-gmt5/mgd77/mgd77defaults.h +include/gmt-gmt5/mgd77/mgd77magref.h +include/gmt-gmt5/mgd77/mgd77sniffer.h +include/gmt-gmt5/mgd77/mgd77snifferdefaults.h +include/gmt-gmt5/postscriptlight.h +include/gmt-gmt5/potential/okbfuns.h +include/gmt-gmt5/psl_config.h +include/gmt-gmt5/qsort.h +include/gmt-gmt5/spotter/spotter.h +include/gmt-gmt5/x2sys/x2sys.h +lib/gmt-gmt5/plugins/supplements.so +lib/libgmt5.so +lib/libgmt5.so.5 +lib/libgmt5.so.5.4.4 +lib/libpostscriptlight.so +lib/libpostscriptlight.so.5 +lib/libpostscriptlight.so.5.4.4 +%%DOCSDIR%%/copying/COPYING.LESSERv3 +%%DOCSDIR%%/copying/COPYINGv3 +%%DOCSDIR%%/copying/LICENSE.TXT +%%DOCSDIR%%/examples/README.SCRIPTS +%%DOCSDIR%%/examples/anim01/anim_01.sh +%%DOCSDIR%%/examples/anim02/anim_02.sh +%%DOCSDIR%%/examples/anim02/us.nc +%%DOCSDIR%%/examples/anim03/Iceland.nc +%%DOCSDIR%%/examples/anim03/anim_03.sh +%%DOCSDIR%%/examples/anim04/USEast_Coast.nc +%%DOCSDIR%%/examples/anim04/anim_04.sh +%%DOCSDIR%%/examples/anim05/anim_05.sh +%%DOCSDIR%%/examples/anim05/table_5.11 +%%DOCSDIR%%/examples/do_view.sh +%%DOCSDIR%%/examples/ex01/example_01.sh +%%DOCSDIR%%/examples/ex01/osu91a1f_16.nc +%%DOCSDIR%%/examples/ex02/HI_geoid2.nc +%%DOCSDIR%%/examples/ex02/HI_topo2.nc +%%DOCSDIR%%/examples/ex02/example_02.sh +%%DOCSDIR%%/examples/ex03/example_03.sh +%%DOCSDIR%%/examples/ex03/sat.xyg +%%DOCSDIR%%/examples/ex03/ship.xyg +%%DOCSDIR%%/examples/ex03/shipsat.dos +%%DOCSDIR%%/examples/ex04/HI_geoid4.nc +%%DOCSDIR%%/examples/ex04/HI_topo4.nc +%%DOCSDIR%%/examples/ex04/example_04.sh +%%DOCSDIR%%/examples/ex04/geoid.cpt +%%DOCSDIR%%/examples/ex04/topo.cpt +%%DOCSDIR%%/examples/ex05/example_05.sh +%%DOCSDIR%%/examples/ex06/example_06.sh +%%DOCSDIR%%/examples/ex06/fractures.txt +%%DOCSDIR%%/examples/ex06/v3206.t +%%DOCSDIR%%/examples/ex07/example_07.sh +%%DOCSDIR%%/examples/ex07/fz.xy +%%DOCSDIR%%/examples/ex07/isochron.xy +%%DOCSDIR%%/examples/ex07/quakes.xym +%%DOCSDIR%%/examples/ex07/ridge.xy +%%DOCSDIR%%/examples/ex08/example_08.sh +%%DOCSDIR%%/examples/ex08/guinea_bay.nc +%%DOCSDIR%%/examples/ex09/example_09.sh +%%DOCSDIR%%/examples/ex09/fz.xy +%%DOCSDIR%%/examples/ex09/ridge.xy +%%DOCSDIR%%/examples/ex09/tracks.txt +%%DOCSDIR%%/examples/ex10/example_10.sh +%%DOCSDIR%%/examples/ex10/languages.txt +%%DOCSDIR%%/examples/ex10/legend.txt +%%DOCSDIR%%/examples/ex11/cut-here.txt +%%DOCSDIR%%/examples/ex11/example_11.sh +%%DOCSDIR%%/examples/ex11/rays.txt +%%DOCSDIR%%/examples/ex12/example_12.sh +%%DOCSDIR%%/examples/ex12/table_5.11 +%%DOCSDIR%%/examples/ex13/example_13.sh +%%DOCSDIR%%/examples/ex14/example_14.sh +%%DOCSDIR%%/examples/ex14/table_5.11 +%%DOCSDIR%%/examples/ex15/example_15.sh +%%DOCSDIR%%/examples/ex15/ship.xyz +%%DOCSDIR%%/examples/ex16/circuit.ras +%%DOCSDIR%%/examples/ex16/ex16.cpt +%%DOCSDIR%%/examples/ex16/example_16.sh +%%DOCSDIR%%/examples/ex16/table_5.11 +%%DOCSDIR%%/examples/ex17/example_17.sh +%%DOCSDIR%%/examples/ex17/india_geoid.nc +%%DOCSDIR%%/examples/ex17/india_topo.nc +%%DOCSDIR%%/examples/ex18/AK_gulf_grav.nc +%%DOCSDIR%%/examples/ex18/example_18.sh +%%DOCSDIR%%/examples/ex19/GMT_covertext.eps +%%DOCSDIR%%/examples/ex19/circuit.ras +%%DOCSDIR%%/examples/ex19/example_19.sh +%%DOCSDIR%%/examples/ex20/bullseye.def +%%DOCSDIR%%/examples/ex20/example_20.sh +%%DOCSDIR%%/examples/ex21/RHAT_price.csv +%%DOCSDIR%%/examples/ex21/example_21.sh +%%DOCSDIR%%/examples/ex22/USGS.ras +%%DOCSDIR%%/examples/ex22/example_22.sh +%%DOCSDIR%%/examples/ex22/neic_quakes.txt +%%DOCSDIR%%/examples/ex23/example_23.sh +%%DOCSDIR%%/examples/ex24/example_24.sh +%%DOCSDIR%%/examples/ex24/oz_quakes.txt +%%DOCSDIR%%/examples/ex25/example_25.sh +%%DOCSDIR%%/examples/ex26/example_26.sh +%%DOCSDIR%%/examples/ex27/example_27.sh +%%DOCSDIR%%/examples/ex27/tasman_grav.nc +%%DOCSDIR%%/examples/ex28/Kilauea.utm.nc +%%DOCSDIR%%/examples/ex28/example_28.sh +%%DOCSDIR%%/examples/ex29/example_29.sh +%%DOCSDIR%%/examples/ex29/mars370.txt +%%DOCSDIR%%/examples/ex30/example_30.sh +%%DOCSDIR%%/examples/ex31/europe-capitals-ru.csv +%%DOCSDIR%%/examples/ex31/europe-capitals.csv +%%DOCSDIR%%/examples/ex31/example_31.sh +%%DOCSDIR%%/examples/ex31/fonts/GPL.txt +%%DOCSDIR%%/examples/ex31/fonts/LICENCE.txt +%%DOCSDIR%%/examples/ex31/fonts/LinBiolinum_Bd-0.5.5.otf +%%DOCSDIR%%/examples/ex31/fonts/LinBiolinum_It-0.5.1.otf +%%DOCSDIR%%/examples/ex31/fonts/LinBiolinum_Kb-0.5.4.otf +%%DOCSDIR%%/examples/ex31/fonts/LinBiolinum_Re-0.6.4.otf +%%DOCSDIR%%/examples/ex31/fonts/LinBiolinum_Sl-0.4.9.otf +%%DOCSDIR%%/examples/ex31/fonts/LinLibertine_BI-4.1.0.otf +%%DOCSDIR%%/examples/ex31/fonts/LinLibertine_Bd-4.1.5.otf +%%DOCSDIR%%/examples/ex31/fonts/LinLibertine_C-4.0.4.otf +%%DOCSDIR%%/examples/ex31/fonts/LinLibertine_It-4.2.6.otf +%%DOCSDIR%%/examples/ex31/fonts/LinLibertine_Re-4.7.5.otf +%%DOCSDIR%%/examples/ex31/fonts/OFL.txt +%%DOCSDIR%%/examples/ex31/fonts/README.txt +%%DOCSDIR%%/examples/ex32/euflag.nc +%%DOCSDIR%%/examples/ex32/euflag.png +%%DOCSDIR%%/examples/ex32/example_32.sh +%%DOCSDIR%%/examples/ex32/topo.nc +%%DOCSDIR%%/examples/ex33/example_33.sh +%%DOCSDIR%%/examples/ex33/spac.nc +%%DOCSDIR%%/examples/ex34/FR+IT.nc +%%DOCSDIR%%/examples/ex34/example_34.sh +%%DOCSDIR%%/examples/ex35/example_35.sh +%%DOCSDIR%%/examples/ex35/gshhs_c.txt +%%DOCSDIR%%/examples/ex36/example_36.sh +%%DOCSDIR%%/examples/ex36/mars370.txt +%%DOCSDIR%%/examples/ex37/example_37.sh +%%DOCSDIR%%/examples/ex37/grav.V18.par.surf.1km.sq.nc +%%DOCSDIR%%/examples/ex37/mb.par.surf.1km.sq.nc +%%DOCSDIR%%/examples/ex38/example_38.sh +%%DOCSDIR%%/examples/ex38/topo.nc +%%DOCSDIR%%/examples/ex39/VenusTopo180.txt +%%DOCSDIR%%/examples/ex39/example_39.sh +%%DOCSDIR%%/examples/ex40/GSHHS_h_Australia.txt +%%DOCSDIR%%/examples/ex40/example_40.sh +%%DOCSDIR%%/examples/ex41/example_41.sh +%%DOCSDIR%%/examples/ex41/my_color.cpt +%%DOCSDIR%%/examples/ex41/my_data.txt +%%DOCSDIR%%/examples/ex41/my_symbol.def +%%DOCSDIR%%/examples/ex41/my_table.txt +%%DOCSDIR%%/examples/ex42/BEDMAP_elevation.nc +%%DOCSDIR%%/examples/ex42/example_42.sh +%%DOCSDIR%%/examples/ex43/bb_weights.asc +%%DOCSDIR%%/examples/ex43/example_43.sh +%%DOCSDIR%%/examples/ex44/example_44.sh +%%DOCSDIR%%/examples/ex45/CO2.txt +%%DOCSDIR%%/examples/ex45/example_45.sh +%%DOCSDIR%%/examples/ex46/example_46.sh +%%DOCSDIR%%/examples/ex46/sunglasses.eps +%%DOCSDIR%%/examples/ex47/example_47.sh +%%DOCSDIR%%/examples/ex47/hertzsprung-russell.txt +%%DOCSDIR%%/examples/ex48/etopo10m.nc +%%DOCSDIR%%/examples/ex48/example_48.sh +%%DOCSDIR%%/examples/ex49/age_gridline.nc +%%DOCSDIR%%/examples/ex49/depth_pixel.nc +%%DOCSDIR%%/examples/ex49/example_49.sh +%%DOCSDIR%%/examples/ex49/ridge.gmt +%%DOCSDIR%%/examples/ex50/example_50.sh +%%DOCSDIR%%/examples/run_ex_tests.sh +%%DOCSDIR%%/html/.buildinfo +%%DOCSDIR%%/html/B.html +%%DOCSDIR%%/html/F.html +%%DOCSDIR%%/html/GM.html +%%DOCSDIR%%/html/GMT_API.html +%%DOCSDIR%%/html/GMT_Docs.html +%%DOCSDIR%%/html/GMT_Tutorial.html +%%DOCSDIR%%/html/GR.html +%%DOCSDIR%%/html/Gallery.html +%%DOCSDIR%%/html/I.html +%%DOCSDIR%%/html/K.html +%%DOCSDIR%%/html/M.html +%%DOCSDIR%%/html/N.html +%%DOCSDIR%%/html/P.html +%%DOCSDIR%%/html/PS.html +%%DOCSDIR%%/html/S.html +%%DOCSDIR%%/html/SUP_GSHHS.html +%%DOCSDIR%%/html/SUP_IMGSRC.html +%%DOCSDIR%%/html/SUP_MECA.html +%%DOCSDIR%%/html/SUP_MGD77.html +%%DOCSDIR%%/html/SUP_MISC.html +%%DOCSDIR%%/html/SUP_POTENTIAL.html +%%DOCSDIR%%/html/SUP_SEGY.html +%%DOCSDIR%%/html/SUP_SPOTTER.html +%%DOCSDIR%%/html/SUP_X2SYS.html +%%DOCSDIR%%/html/T.html +%%DOCSDIR%%/html/Users_contrib_script.html +%%DOCSDIR%%/html/Users_contrib_symbols.html +%%DOCSDIR%%/html/X.html +%%DOCSDIR%%/html/_images/GMT4_mode.png +%%DOCSDIR%%/html/_images/GMT5_Summit_2016.jpg +%%DOCSDIR%%/html/_images/GMT5_external.png +%%DOCSDIR%%/html/_images/GMT5_mode.png +%%DOCSDIR%%/html/_images/GMT_-B_custom.png +%%DOCSDIR%%/html/_images/GMT_-B_geo_1.png +%%DOCSDIR%%/html/_images/GMT_-B_geo_2.png +%%DOCSDIR%%/html/_images/GMT_-B_linear.png +%%DOCSDIR%%/html/_images/GMT_-B_log.png +%%DOCSDIR%%/html/_images/GMT_-B_pow.png +%%DOCSDIR%%/html/_images/GMT_-B_time1.png +%%DOCSDIR%%/html/_images/GMT_-B_time2.png +%%DOCSDIR%%/html/_images/GMT_-B_time3.png +%%DOCSDIR%%/html/_images/GMT_-B_time4.png +%%DOCSDIR%%/html/_images/GMT_-B_time5.png +%%DOCSDIR%%/html/_images/GMT_-B_time6.png +%%DOCSDIR%%/html/_images/GMT_-B_time7.png +%%DOCSDIR%%/html/_images/GMT_-J.png +%%DOCSDIR%%/html/_images/GMT_-OK.png +%%DOCSDIR%%/html/_images/GMT_-P.png +%%DOCSDIR%%/html/_images/GMT_-R.png +%%DOCSDIR%%/html/_images/GMT_-U.png +%%DOCSDIR%%/html/_images/GMT_-XY.png +%%DOCSDIR%%/html/_images/GMT_API_flow.png +%%DOCSDIR%%/html/_images/GMT_API_use.png +%%DOCSDIR%%/html/_images/GMT_App_E.png +%%DOCSDIR%%/html/_images/GMT_App_F_stand+_iso+.png +%%DOCSDIR%%/html/_images/GMT_App_F_symbol_dingbats.png +%%DOCSDIR%%/html/_images/GMT_App_G.png +%%DOCSDIR%%/html/_images/GMT_App_J_1.png +%%DOCSDIR%%/html/_images/GMT_App_J_2.png +%%DOCSDIR%%/html/_images/GMT_App_J_3.png +%%DOCSDIR%%/html/_images/GMT_App_K_1.png +%%DOCSDIR%%/html/_images/GMT_App_K_2.png +%%DOCSDIR%%/html/_images/GMT_App_K_3.png +%%DOCSDIR%%/html/_images/GMT_App_K_4.png +%%DOCSDIR%%/html/_images/GMT_App_K_5.png +%%DOCSDIR%%/html/_images/GMT_App_M_1a.png +%%DOCSDIR%%/html/_images/GMT_App_M_1b.png +%%DOCSDIR%%/html/_images/GMT_App_M_2.png +%%DOCSDIR%%/html/_images/GMT_App_N_1.png +%%DOCSDIR%%/html/_images/GMT_App_O_1.png +%%DOCSDIR%%/html/_images/GMT_App_O_2.png +%%DOCSDIR%%/html/_images/GMT_App_O_3.png +%%DOCSDIR%%/html/_images/GMT_App_O_4.png +%%DOCSDIR%%/html/_images/GMT_App_O_5.png +%%DOCSDIR%%/html/_images/GMT_App_O_6.png +%%DOCSDIR%%/html/_images/GMT_App_O_7.png +%%DOCSDIR%%/html/_images/GMT_App_O_8.png +%%DOCSDIR%%/html/_images/GMT_App_O_9.png +%%DOCSDIR%%/html/_images/GMT_App_P_2.png +%%DOCSDIR%%/html/_images/GMT_CPTscale.png +%%DOCSDIR%%/html/_images/GMT_Defaults_1a.png +%%DOCSDIR%%/html/_images/GMT_Defaults_1b.png +%%DOCSDIR%%/html/_images/GMT_Defaults_1c.png +%%DOCSDIR%%/html/_images/GMT_Environment.png +%%DOCSDIR%%/html/_images/GMT_RGBchart_a4.png +%%DOCSDIR%%/html/_images/GMT_TM.png +%%DOCSDIR%%/html/_images/GMT_albers.png +%%DOCSDIR%%/html/_images/GMT_anchor.png +%%DOCSDIR%%/html/_images/GMT_arrows.png +%%DOCSDIR%%/html/_images/GMT_arrows_types.png +%%DOCSDIR%%/html/_images/GMT_atan.png +%%DOCSDIR%%/html/_images/GMT_az_equidistant.png +%%DOCSDIR%%/html/_images/GMT_bezier.png +%%DOCSDIR%%/html/_images/GMT_cassini.png +%%DOCSDIR%%/html/_images/GMT_chunking.png +%%DOCSDIR%%/html/_images/GMT_color_interpolate.png +%%DOCSDIR%%/html/_images/GMT_colorbar.png +%%DOCSDIR%%/html/_images/GMT_coverlogo.png +%%DOCSDIR%%/html/_images/GMT_cyclic.png +%%DOCSDIR%%/html/_images/GMT_dir_rose.png +%%DOCSDIR%%/html/_images/GMT_eckert4.png +%%DOCSDIR%%/html/_images/GMT_eckert6.png +%%DOCSDIR%%/html/_images/GMT_equi_cyl.png +%%DOCSDIR%%/html/_images/GMT_equidistant_conic.png +%%DOCSDIR%%/html/_images/GMT_gall_stereo.png +%%DOCSDIR%%/html/_images/GMT_general_cyl.png +%%DOCSDIR%%/html/_images/GMT_gnomonic.png +%%DOCSDIR%%/html/_images/GMT_grinten.png +%%DOCSDIR%%/html/_images/GMT_hammer.png +%%DOCSDIR%%/html/_images/GMT_hinge.png +%%DOCSDIR%%/html/_images/GMT_images.png +%%DOCSDIR%%/html/_images/GMT_insert.png +%%DOCSDIR%%/html/_images/GMT_lambert_az_hemi.png +%%DOCSDIR%%/html/_images/GMT_lambert_az_rect.png +%%DOCSDIR%%/html/_images/GMT_lambert_conic.png +%%DOCSDIR%%/html/_images/GMT_legend.png +%%DOCSDIR%%/html/_images/GMT_linear.png +%%DOCSDIR%%/html/_images/GMT_linear_cal.png +%%DOCSDIR%%/html/_images/GMT_linear_d.png +%%DOCSDIR%%/html/_images/GMT_linearrow.png +%%DOCSDIR%%/html/_images/GMT_linecap.png +%%DOCSDIR%%/html/_images/GMT_lineoffset.png +%%DOCSDIR%%/html/_images/GMT_log.png +%%DOCSDIR%%/html/_images/GMT_mag_rose.png +%%DOCSDIR%%/html/_images/GMT_mapscale.png +%%DOCSDIR%%/html/_images/GMT_mercator.png +%%DOCSDIR%%/html/_images/GMT_miller.png +%%DOCSDIR%%/html/_images/GMT_mollweide.png +%%DOCSDIR%%/html/_images/GMT_nearneighbor.png +%%DOCSDIR%%/html/_images/GMT_obl_merc.png +%%DOCSDIR%%/html/_images/GMT_obl_nz.png +%%DOCSDIR%%/html/_images/GMT_orthographic.png +%%DOCSDIR%%/html/_images/GMT_panel.png +%%DOCSDIR%%/html/_images/GMT_perspective.png +%%DOCSDIR%%/html/_images/GMT_polar.png +%%DOCSDIR%%/html/_images/GMT_polyconic.png +%%DOCSDIR%%/html/_images/GMT_pow.png +%%DOCSDIR%%/html/_images/GMT_pstext_clearance.png +%%DOCSDIR%%/html/_images/GMT_pstext_justify.png +%%DOCSDIR%%/html/_images/GMT_registration.png +%%DOCSDIR%%/html/_images/GMT_robinson.png +%%DOCSDIR%%/html/_images/GMT_sinus_int.png +%%DOCSDIR%%/html/_images/GMT_sinusoidal.png +%%DOCSDIR%%/html/_images/GMT_stereographic_general.png +%%DOCSDIR%%/html/_images/GMT_stereographic_polar.png +%%DOCSDIR%%/html/_images/GMT_stereographic_rect.png +%%DOCSDIR%%/html/_images/GMT_stereonets.png +%%DOCSDIR%%/html/_images/GMT_transverse_merc.png +%%DOCSDIR%%/html/_images/GMT_tut_1.png +%%DOCSDIR%%/html/_images/GMT_tut_10.png +%%DOCSDIR%%/html/_images/GMT_tut_11.png +%%DOCSDIR%%/html/_images/GMT_tut_12.png +%%DOCSDIR%%/html/_images/GMT_tut_13.png +%%DOCSDIR%%/html/_images/GMT_tut_14.png +%%DOCSDIR%%/html/_images/GMT_tut_15.png +%%DOCSDIR%%/html/_images/GMT_tut_16.png +%%DOCSDIR%%/html/_images/GMT_tut_17.png +%%DOCSDIR%%/html/_images/GMT_tut_18.png +%%DOCSDIR%%/html/_images/GMT_tut_19.png +%%DOCSDIR%%/html/_images/GMT_tut_2.png +%%DOCSDIR%%/html/_images/GMT_tut_3.png +%%DOCSDIR%%/html/_images/GMT_tut_4.png +%%DOCSDIR%%/html/_images/GMT_tut_5.png +%%DOCSDIR%%/html/_images/GMT_tut_6.png +%%DOCSDIR%%/html/_images/GMT_tut_7.png +%%DOCSDIR%%/html/_images/GMT_tut_8.png +%%DOCSDIR%%/html/_images/GMT_tut_9.png +%%DOCSDIR%%/html/_images/GMT_utm_zones.png +%%DOCSDIR%%/html/_images/GMT_volcano.png +%%DOCSDIR%%/html/_images/GMT_winkel.png +%%DOCSDIR%%/html/_images/anim_01.png +%%DOCSDIR%%/html/_images/anim_02.png +%%DOCSDIR%%/html/_images/anim_03.png +%%DOCSDIR%%/html/_images/anim_04.png +%%DOCSDIR%%/html/_images/anim_05.png +%%DOCSDIR%%/html/_images/atlantwhitesided.png +%%DOCSDIR%%/html/_images/atlantwhitesided_high.png +%%DOCSDIR%%/html/_images/atlantwhitesided_low.png +%%DOCSDIR%%/html/_images/beluga.png +%%DOCSDIR%%/html/_images/beluga_high.png +%%DOCSDIR%%/html/_images/beluga_low.png +%%DOCSDIR%%/html/_images/bottlenose.png +%%DOCSDIR%%/html/_images/bottlenose_high.png +%%DOCSDIR%%/html/_images/bottlenose_low.png +%%DOCSDIR%%/html/_images/bowhead.png +%%DOCSDIR%%/html/_images/bowhead_high.png +%%DOCSDIR%%/html/_images/bowhead_low.png +%%DOCSDIR%%/html/_images/burmeistersporpoise.png +%%DOCSDIR%%/html/_images/burmeistersporpoise_high.png +%%DOCSDIR%%/html/_images/burmeistersporpoise_low.png +%%DOCSDIR%%/html/_images/commondolphin.png +%%DOCSDIR%%/html/_images/commondolphin_high.png +%%DOCSDIR%%/html/_images/commondolphin_low.png +%%DOCSDIR%%/html/_images/commondolphin_midhigh.png +%%DOCSDIR%%/html/_images/commondolphin_midlow.png +%%DOCSDIR%%/html/_images/commonporpoise.png +%%DOCSDIR%%/html/_images/commonporpoise_high.png +%%DOCSDIR%%/html/_images/commonporpoise_low.png +%%DOCSDIR%%/html/_images/cuviersbeaked.png +%%DOCSDIR%%/html/_images/cuviersbeaked_high.png +%%DOCSDIR%%/html/_images/cuviersbeaked_low.png +%%DOCSDIR%%/html/_images/example_01.png +%%DOCSDIR%%/html/_images/example_02.png +%%DOCSDIR%%/html/_images/example_03.png +%%DOCSDIR%%/html/_images/example_04.png +%%DOCSDIR%%/html/_images/example_05.png +%%DOCSDIR%%/html/_images/example_06.png +%%DOCSDIR%%/html/_images/example_07.png +%%DOCSDIR%%/html/_images/example_08.png +%%DOCSDIR%%/html/_images/example_09.png +%%DOCSDIR%%/html/_images/example_10.png +%%DOCSDIR%%/html/_images/example_11.png +%%DOCSDIR%%/html/_images/example_12.png +%%DOCSDIR%%/html/_images/example_13.png +%%DOCSDIR%%/html/_images/example_14.png +%%DOCSDIR%%/html/_images/example_15.png +%%DOCSDIR%%/html/_images/example_16.png +%%DOCSDIR%%/html/_images/example_17.png +%%DOCSDIR%%/html/_images/example_18.png +%%DOCSDIR%%/html/_images/example_19.png +%%DOCSDIR%%/html/_images/example_20.png +%%DOCSDIR%%/html/_images/example_21.png +%%DOCSDIR%%/html/_images/example_22.png +%%DOCSDIR%%/html/_images/example_23.png +%%DOCSDIR%%/html/_images/example_24.png +%%DOCSDIR%%/html/_images/example_25.png +%%DOCSDIR%%/html/_images/example_26.png +%%DOCSDIR%%/html/_images/example_27.png +%%DOCSDIR%%/html/_images/example_28.png +%%DOCSDIR%%/html/_images/example_29.png +%%DOCSDIR%%/html/_images/example_30.png +%%DOCSDIR%%/html/_images/example_31.png +%%DOCSDIR%%/html/_images/example_32.png +%%DOCSDIR%%/html/_images/example_33.png +%%DOCSDIR%%/html/_images/example_34.png +%%DOCSDIR%%/html/_images/example_35.png +%%DOCSDIR%%/html/_images/example_36.png +%%DOCSDIR%%/html/_images/example_37.png +%%DOCSDIR%%/html/_images/example_38.png +%%DOCSDIR%%/html/_images/example_39.png +%%DOCSDIR%%/html/_images/example_40.png +%%DOCSDIR%%/html/_images/example_41.png +%%DOCSDIR%%/html/_images/example_42.png +%%DOCSDIR%%/html/_images/example_43.png +%%DOCSDIR%%/html/_images/example_44.png +%%DOCSDIR%%/html/_images/example_45.png +%%DOCSDIR%%/html/_images/example_46.png +%%DOCSDIR%%/html/_images/example_47.png +%%DOCSDIR%%/html/_images/example_48.png +%%DOCSDIR%%/html/_images/example_49.png +%%DOCSDIR%%/html/_images/example_50.png +%%DOCSDIR%%/html/_images/finwhale.png +%%DOCSDIR%%/html/_images/finwhale_high.png +%%DOCSDIR%%/html/_images/finwhale_low.png +%%DOCSDIR%%/html/_images/formatpicture.png +%%DOCSDIR%%/html/_images/geo-cleavage.png +%%DOCSDIR%%/html/_images/geo-cleavage_hor.png +%%DOCSDIR%%/html/_images/geo-cleavage_vert.png +%%DOCSDIR%%/html/_images/geo-foliation-2.png +%%DOCSDIR%%/html/_images/geo-foliation-3.png +%%DOCSDIR%%/html/_images/geo-foliation.png +%%DOCSDIR%%/html/_images/geo-foliation_hor.png +%%DOCSDIR%%/html/_images/geo-foliation_vert.png +%%DOCSDIR%%/html/_images/geo-joint.png +%%DOCSDIR%%/html/_images/geo-joint_hor.png +%%DOCSDIR%%/html/_images/geo-joint_vert.png +%%DOCSDIR%%/html/_images/geo-lineation-2.png +%%DOCSDIR%%/html/_images/geo-lineation-3.png +%%DOCSDIR%%/html/_images/geo-lineation.png +%%DOCSDIR%%/html/_images/geo-lineation_hor.png +%%DOCSDIR%%/html/_images/geo-lineation_vert.png +%%DOCSDIR%%/html/_images/geo-plane.png +%%DOCSDIR%%/html/_images/geo-plane_gentle.png +%%DOCSDIR%%/html/_images/geo-plane_hor.png +%%DOCSDIR%%/html/_images/geo-plane_inv.png +%%DOCSDIR%%/html/_images/geo-plane_medium.png +%%DOCSDIR%%/html/_images/geo-plane_rake.png +%%DOCSDIR%%/html/_images/geo-plane_steep.png +%%DOCSDIR%%/html/_images/geo-plane_und.png +%%DOCSDIR%%/html/_images/geo-plane_vert.png +%%DOCSDIR%%/html/_images/gimp-sliders+panel.png +%%DOCSDIR%%/html/_images/graywhale.png +%%DOCSDIR%%/html/_images/graywhale_high.png +%%DOCSDIR%%/html/_images/graywhale_low.png +%%DOCSDIR%%/html/_images/hsv-cone.png +%%DOCSDIR%%/html/_images/humpbacktail_one.png +%%DOCSDIR%%/html/_images/humpbacktail_one_low.png +%%DOCSDIR%%/html/_images/humpbacktail_two.png +%%DOCSDIR%%/html/_images/humpbacktail_two_low.png +%%DOCSDIR%%/html/_images/jumpback.png +%%DOCSDIR%%/html/_images/jumpback_high.png +%%DOCSDIR%%/html/_images/jumpback_low.png +%%DOCSDIR%%/html/_images/killerwhale.png +%%DOCSDIR%%/html/_images/killerwhale_high.png +%%DOCSDIR%%/html/_images/killerwhale_low.png +%%DOCSDIR%%/html/_images/longfinnedpilotwhale.png +%%DOCSDIR%%/html/_images/longfinnedpilotwhale_high.png +%%DOCSDIR%%/html/_images/longfinnedpilotwhale_low.png +%%DOCSDIR%%/html/_images/math/011e5790a6c33043ceadca81d9657dde6c61d769.png +%%DOCSDIR%%/html/_images/math/019ae039983ef3296f633b0591a0ec68ecab4baa.png +%%DOCSDIR%%/html/_images/math/021544f44170a0f49c908e326ff0f1e031e7089c.png +%%DOCSDIR%%/html/_images/math/0501b6aa8c3ab85ec83f27c12b607169d1ac77bd.png +%%DOCSDIR%%/html/_images/math/099ab1cc9d20eeeea3d8f476bb1dfb29dacca21b.png +%%DOCSDIR%%/html/_images/math/0a3c6cd97aeaf209914e20d58c5e02b6895c2cea.png +%%DOCSDIR%%/html/_images/math/0baac3ba41f4eb845f57415f1b908477924ad8f2.png +%%DOCSDIR%%/html/_images/math/0d487b6f822630defe5e09bfd4e12dd32535a5b6.png +%%DOCSDIR%%/html/_images/math/0f1f5ff8b7fb61bd5fd0c51d76d5a47187b62538.png +%%DOCSDIR%%/html/_images/math/159354e659980399ebd6b171fe4cb3cd736d96ef.png +%%DOCSDIR%%/html/_images/math/175df900e3e981d636295fd26a560e15305ff1ea.png +%%DOCSDIR%%/html/_images/math/1858add0549a8ee8cda01dc9a38b516a7b405910.png +%%DOCSDIR%%/html/_images/math/18f332d83c5f96a8fdc52b81445811bb59eb5841.png +%%DOCSDIR%%/html/_images/math/1d29fbe284a7e396552bddcc92a9d9e04d2537f4.png +%%DOCSDIR%%/html/_images/math/212fdf061de2419820ed070a3e1fdbebbcbb41e5.png +%%DOCSDIR%%/html/_images/math/214eb8a4d9a622d1d31f06cad9f5264e29242b63.png +%%DOCSDIR%%/html/_images/math/21f0c8e466176af6c3edf025de1ce7e28c071ba2.png +%%DOCSDIR%%/html/_images/math/2b17a1275a697483affc137fcb2b44bf2d8b7eab.png +%%DOCSDIR%%/html/_images/math/2d019834c153d74e3f6831b64d109ad0ffb88816.png +%%DOCSDIR%%/html/_images/math/2fc94db8fa7bba3deeee75b2c021c377128c0aa6.png +%%DOCSDIR%%/html/_images/math/307e583980f527b3f26e1e159435e0a8d262736b.png +%%DOCSDIR%%/html/_images/math/3562ce49c671c2217db4daa1d39dd23f76b2df62.png +%%DOCSDIR%%/html/_images/math/37d351e14ef2032e00ffd924aee49fe85ed39003.png +%%DOCSDIR%%/html/_images/math/3be04d4207434584251f6921820c24ac9fa8c6f1.png +%%DOCSDIR%%/html/_images/math/40a8deaddb6108dcbec21ed3cde990f88927996a.png +%%DOCSDIR%%/html/_images/math/43ea8ebfd9ca993ad8f9968121ecafb21460d20a.png +%%DOCSDIR%%/html/_images/math/44f70e6bffa2548a4531e23c11ebf35fc319e817.png +%%DOCSDIR%%/html/_images/math/46f994cdeffa23dda31fe2262951cee5ed526e24.png +%%DOCSDIR%%/html/_images/math/48f4110f8d8c44a25806dcac960876a07ac9170d.png +%%DOCSDIR%%/html/_images/math/4a9cc470ae69ecffcb0b35de9a2614ac7dfc3b71.png +%%DOCSDIR%%/html/_images/math/4d26a3c646f81ab56cceb818c7801dd1f3cfaaf3.png +%%DOCSDIR%%/html/_images/math/4d650774928c729291c26a2055edc4883247d235.png +%%DOCSDIR%%/html/_images/math/4ebcb9715648af942ac80428559928e079481305.png +%%DOCSDIR%%/html/_images/math/4f551825fb6ccbd700f0660ab1eece53721174bc.png +%%DOCSDIR%%/html/_images/math/4fe7eb8b17d01cf08f04b2d99ea022f838acb17a.png +%%DOCSDIR%%/html/_images/math/5301752595b6c2833e57adf7f05d7abdd30e1732.png +%%DOCSDIR%%/html/_images/math/58033bee727e7fb8c01efce0ee321c1e3299e1d1.png +%%DOCSDIR%%/html/_images/math/5c3ed992c1c01900f80904247f312026eeee2ee3.png +%%DOCSDIR%%/html/_images/math/5caeb5931b75efe042b7b9f10d76166ffc0aa3d5.png +%%DOCSDIR%%/html/_images/math/5d09caa34fff19582f65120fb8a0b1fede4042d5.png +%%DOCSDIR%%/html/_images/math/5d3a7b3e9c3094a633b6774f0fc189524faad610.png +%%DOCSDIR%%/html/_images/math/5ed3dcffca2d7c9e5cf87c663a307af112c9f582.png +%%DOCSDIR%%/html/_images/math/5f75a9b552d13d37adb7f7f6d246b6c3b804edd7.png +%%DOCSDIR%%/html/_images/math/5fb3b2dc1e3072ba345650dbdbb9e6a364f644f0.png +%%DOCSDIR%%/html/_images/math/5fe247c393f20aa3b29ff9086db18e69f997d633.png +%%DOCSDIR%%/html/_images/math/6099459e82d2382200078e23cf35a527bf9f093d.png +%%DOCSDIR%%/html/_images/math/66ddcaa3a50f10f3444e4e047df1fb2d0b024eed.png +%%DOCSDIR%%/html/_images/math/67a6412155864bb00de09fc0cd799c856c999c58.png +%%DOCSDIR%%/html/_images/math/6845e1b6592022d808c964a11e9a702e3c5deb2b.png +%%DOCSDIR%%/html/_images/math/698f0dcdf87587993bdabccf2e9fd1da993b17f7.png +%%DOCSDIR%%/html/_images/math/6b57768264d2bc7808fb3e14da884426225cd2a0.png +%%DOCSDIR%%/html/_images/math/6bdc4889807779f37a722969b640c0bb70171c72.png +%%DOCSDIR%%/html/_images/math/6ce6dc085f40651e9c4179e3b4d3b1e4c92c40cb.png +%%DOCSDIR%%/html/_images/math/704ece9527a4f3d54bd4af0aa6e92781ad9fe92e.png +%%DOCSDIR%%/html/_images/math/75e5c5697e8fc891c80069421d6511b2212dbcc4.png +%%DOCSDIR%%/html/_images/math/86b41d3253901abf1531e05a121d52f439d6b61a.png +%%DOCSDIR%%/html/_images/math/877d234f4cec6974ce218fc2e975a486a7972dfd.png +%%DOCSDIR%%/html/_images/math/89268504580baa51d52737fa7c5f462c6a4df4c4.png +%%DOCSDIR%%/html/_images/math/8b1dfcd547ba7227aba0b865211e3a11245a3db7.png +%%DOCSDIR%%/html/_images/math/8c80cfe8695853bfca9f47221a873edcafe65268.png +%%DOCSDIR%%/html/_images/math/92ac4b8e5d76ff3f0232eafc7b2518bd7c4804d2.png +%%DOCSDIR%%/html/_images/math/982fd096f65177167a283cab057cca953ff27405.png +%%DOCSDIR%%/html/_images/math/9c2f6f93dd5ce09e53917e0c567ec6e48fd2e68b.png +%%DOCSDIR%%/html/_images/math/9e2236dc4303628703472b478c3b69bc9590adbe.png +%%DOCSDIR%%/html/_images/math/a17431a37e36c05a08183c14e240c7d10a395874.png +%%DOCSDIR%%/html/_images/math/a30817251cfcfc855ad0b9069928ac6dd19cf2e7.png +%%DOCSDIR%%/html/_images/math/a32ae8bbe2c76d0f6eef74fc506d29faa9aec4fe.png +%%DOCSDIR%%/html/_images/math/a4eb94d82eafed978aaa7973a4f4f75145f4dbb7.png +%%DOCSDIR%%/html/_images/math/a5b72efcff1c09be039a9786d0772d98ad2ac984.png +%%DOCSDIR%%/html/_images/math/a702e781dfc76762a3a132c2031fba8898430925.png +%%DOCSDIR%%/html/_images/math/ac8d15db97ec7dd8ce2ffe976ee4867c85853315.png +%%DOCSDIR%%/html/_images/math/ad2c2506a6fed80703c61e852c09532ec038cf49.png +%%DOCSDIR%%/html/_images/math/af30ee04918cc489dac060631c61943f66b1c9f0.png +%%DOCSDIR%%/html/_images/math/af9ca2fc45529639e5a88e897407b7c85186d9c5.png +%%DOCSDIR%%/html/_images/math/b4b46f0c794d3653d0e51729a0c1166329010749.png +%%DOCSDIR%%/html/_images/math/b57f97a3becb6e5be1095d2e183cb12ecf94cb69.png +%%DOCSDIR%%/html/_images/math/b5e423d95f64e574d03848240b5e92b6bdadbbff.png +%%DOCSDIR%%/html/_images/math/b7a28d4b8d1588d2a6216b19178710fe96fcf6a3.png +%%DOCSDIR%%/html/_images/math/b8509cb40df0596104775286a9a1d6cac10762f9.png +%%DOCSDIR%%/html/_images/math/ba312cf0eeebc5f3ecc40ece2c744c499d75dc2d.png +%%DOCSDIR%%/html/_images/math/bae508f8b90711a500281d854d959df50fb72da2.png +%%DOCSDIR%%/html/_images/math/c0276fb36faceafd702eea931d967d0398bd70a5.png +%%DOCSDIR%%/html/_images/math/c1b7eba6326c041a9d11aa66367dd844e5cc06c7.png +%%DOCSDIR%%/html/_images/math/c2f31c22645274c375eff7920cfdfdc18d60341f.png +%%DOCSDIR%%/html/_images/math/c80c3b6fd3d954fa3b58666e478c83170a9b57c1.png +%%DOCSDIR%%/html/_images/math/ce0fd9f405141510ca6eeb0622265f649f01d5d0.png +%%DOCSDIR%%/html/_images/math/cf5e71ea40507e75192469aa6fbf833e3d29e831.png +%%DOCSDIR%%/html/_images/math/d9450e2db23530c27842b67859f6e60abb8fe3ee.png +%%DOCSDIR%%/html/_images/math/df12a48a20ad594eff664a0a8101eafad3638a1e.png +%%DOCSDIR%%/html/_images/math/df54a5fed9d8b02839e113400b1a93368254dc34.png +%%DOCSDIR%%/html/_images/math/e305dfa22c4411e6b7f8de1cb5aaac31d3713258.png +%%DOCSDIR%%/html/_images/math/e390f9eee7dc907e18661c1c5fcfc311a90da4f6.png +%%DOCSDIR%%/html/_images/math/e4190a754e097bacb1943d2a58f74637d7d37d75.png +%%DOCSDIR%%/html/_images/math/e58d8325fbb7099cdd0e6023f6302a352d3714ae.png +%%DOCSDIR%%/html/_images/math/e6a8926f4b259f5e5c0ac650e3efb0f71d583a7e.png +%%DOCSDIR%%/html/_images/math/ec23709387ab2d8ad2147380dc54b1e52de21d24.png +%%DOCSDIR%%/html/_images/math/effea00c1645302010fef8a7fc6a61691789a2ff.png +%%DOCSDIR%%/html/_images/math/f39f5be027e612786845fd254d80f77b5da5b6b9.png +%%DOCSDIR%%/html/_images/math/fa2af3dab1abd3cbf568a7242ec8a7dc811062de.png +%%DOCSDIR%%/html/_images/math/fc7576763f2a846119d277c2d3aee7ed2539e5b8.png +%%DOCSDIR%%/html/_images/math/fc83816dd39188b468a9385072012a44068d64b0.png +%%DOCSDIR%%/html/_images/math/fcce496443affb182964cfcbd662a06c582f104b.png +%%DOCSDIR%%/html/_images/math/fdf6501bec5987984965f15d09235c645fe06ccb.png +%%DOCSDIR%%/html/_images/math/ffc9dd4576513f46d674e05179985ed5b2f97cce.png +%%DOCSDIR%%/html/_images/minkewhale.png +%%DOCSDIR%%/html/_images/minkewhale_high.png +%%DOCSDIR%%/html/_images/minkewhale_low.png +%%DOCSDIR%%/html/_images/northernrightwhale.png +%%DOCSDIR%%/html/_images/northernrightwhale_high.png +%%DOCSDIR%%/html/_images/northernrightwhale_low.png +%%DOCSDIR%%/html/_images/pigmyspermwhale.png +%%DOCSDIR%%/html/_images/pigmyspermwhale_high.png +%%DOCSDIR%%/html/_images/pigmyspermwhale_low.png +%%DOCSDIR%%/html/_images/pirata.png +%%DOCSDIR%%/html/_images/rendering.png +%%DOCSDIR%%/html/_images/rissosdolphin.png +%%DOCSDIR%%/html/_images/rissosdolphin_high.png +%%DOCSDIR%%/html/_images/rissosdolphin_low.png +%%DOCSDIR%%/html/_images/seiwhale.png +%%DOCSDIR%%/html/_images/seiwhale_high.png +%%DOCSDIR%%/html/_images/seiwhale_low.png +%%DOCSDIR%%/html/_images/shortfinnedpilotwhale.png +%%DOCSDIR%%/html/_images/shortfinnedpilotwhale_high.png +%%DOCSDIR%%/html/_images/shortfinnedpilotwhale_low.png +%%DOCSDIR%%/html/_images/southernrightwhale.png +%%DOCSDIR%%/html/_images/southernrightwhale_high.png +%%DOCSDIR%%/html/_images/southernrightwhale_low.png +%%DOCSDIR%%/html/_images/spectacledporpoise.png +%%DOCSDIR%%/html/_images/spectacledporpoise_high.png +%%DOCSDIR%%/html/_images/spectacledporpoise_low.png +%%DOCSDIR%%/html/_images/spermwhale.png +%%DOCSDIR%%/html/_images/spermwhale_high.png +%%DOCSDIR%%/html/_images/spermwhale_low.png +%%DOCSDIR%%/html/_images/spermwhaletail.png +%%DOCSDIR%%/html/_images/spermwhaletail_high.png +%%DOCSDIR%%/html/_images/spermwhaletail_low.png +%%DOCSDIR%%/html/_images/srightwhaledolphin.png +%%DOCSDIR%%/html/_images/srightwhaledolphin_high.png +%%DOCSDIR%%/html/_images/srightwhaledolphin_low.png +%%DOCSDIR%%/html/_images/stripeddolphin.png +%%DOCSDIR%%/html/_images/stripeddolphin_high.png +%%DOCSDIR%%/html/_images/stripeddolphin_low.png +%%DOCSDIR%%/html/_images/unidentifiedbeakedwhale.png +%%DOCSDIR%%/html/_images/unidentifiedbeakedwhale_high.png +%%DOCSDIR%%/html/_images/unidentifiedbeakedwhale_low.png +%%DOCSDIR%%/html/_images/unidentifieddolphin.png +%%DOCSDIR%%/html/_images/unidentifieddolphin_high.png +%%DOCSDIR%%/html/_images/unidentifieddolphin_low.png +%%DOCSDIR%%/html/_images/unidentifiedwhale.png +%%DOCSDIR%%/html/_images/unidentifiedwhale_high.png +%%DOCSDIR%%/html/_images/unidentifiedwhale_low.png +%%DOCSDIR%%/html/_images/vertical_slice.png +%%DOCSDIR%%/html/_sources/B.rst.txt +%%DOCSDIR%%/html/_sources/F.rst.txt +%%DOCSDIR%%/html/_sources/GM.rst.txt +%%DOCSDIR%%/html/_sources/GMT_API.rst.txt +%%DOCSDIR%%/html/_sources/GMT_Docs.rst.txt +%%DOCSDIR%%/html/_sources/GMT_Tutorial.rst.txt +%%DOCSDIR%%/html/_sources/GR.rst.txt +%%DOCSDIR%%/html/_sources/Gallery.rst.txt +%%DOCSDIR%%/html/_sources/I.rst.txt +%%DOCSDIR%%/html/_sources/K.rst.txt +%%DOCSDIR%%/html/_sources/M.rst.txt +%%DOCSDIR%%/html/_sources/N.rst.txt +%%DOCSDIR%%/html/_sources/P.rst.txt +%%DOCSDIR%%/html/_sources/PS.rst.txt +%%DOCSDIR%%/html/_sources/S.rst.txt +%%DOCSDIR%%/html/_sources/SUP_GSHHS.rst.txt +%%DOCSDIR%%/html/_sources/SUP_IMGSRC.rst.txt +%%DOCSDIR%%/html/_sources/SUP_MECA.rst.txt +%%DOCSDIR%%/html/_sources/SUP_MGD77.rst.txt +%%DOCSDIR%%/html/_sources/SUP_MISC.rst.txt +%%DOCSDIR%%/html/_sources/SUP_POTENTIAL.rst.txt +%%DOCSDIR%%/html/_sources/SUP_SEGY.rst.txt +%%DOCSDIR%%/html/_sources/SUP_SPOTTER.rst.txt +%%DOCSDIR%%/html/_sources/SUP_X2SYS.rst.txt +%%DOCSDIR%%/html/_sources/T.rst.txt +%%DOCSDIR%%/html/_sources/Users_contrib_script.rst.txt +%%DOCSDIR%%/html/_sources/Users_contrib_symbols.rst.txt +%%DOCSDIR%%/html/_sources/X.rst.txt +%%DOCSDIR%%/html/_sources/api.rst.txt +%%DOCSDIR%%/html/_sources/blockmean.rst.txt +%%DOCSDIR%%/html/_sources/blockmedian.rst.txt +%%DOCSDIR%%/html/_sources/blockmode.rst.txt +%%DOCSDIR%%/html/_sources/cookbook.rst.txt +%%DOCSDIR%%/html/_sources/examples_options.rst.txt +%%DOCSDIR%%/html/_sources/filter1d.rst.txt +%%DOCSDIR%%/html/_sources/fitcircle.rst.txt +%%DOCSDIR%%/html/_sources/gallery/anim01.rst.txt +%%DOCSDIR%%/html/_sources/gallery/anim02.rst.txt +%%DOCSDIR%%/html/_sources/gallery/anim03.rst.txt +%%DOCSDIR%%/html/_sources/gallery/anim04.rst.txt +%%DOCSDIR%%/html/_sources/gallery/anim05.rst.txt +%%DOCSDIR%%/html/_sources/gallery/anim_introduction.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex01.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex02.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex03.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex04.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex05.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex06.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex07.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex08.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex09.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex10.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex11.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex12.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex13.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex14.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex15.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex16.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex17.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex18.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex19.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex20.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex21.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex22.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex23.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex24.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex25.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex26.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex27.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex28.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex29.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex30.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex31.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex32.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex33.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex34.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex35.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex36.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex37.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex38.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex39.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex40.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex41.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex42.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex43.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex44.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex45.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex46.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex47.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex48.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex49.rst.txt +%%DOCSDIR%%/html/_sources/gallery/ex50.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_script/vertical_slice.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/Cetacea.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/Geology.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/atlantwhitesided.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/atlantwhitesided_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/atlantwhitesided_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/beluga.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/beluga_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/beluga_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/bottlenose.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/bottlenose_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/bottlenose_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/bowhead.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/bowhead_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/bowhead_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/burmeistersporpoise.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/burmeistersporpoise_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/burmeistersporpoise_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/commondolphin.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/commondolphin_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/commondolphin_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/commondolphin_midhigh.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/commondolphin_midlow.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/commonporpoise.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/commonporpoise_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/commonporpoise_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/cuviersbeaked.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/cuviersbeaked_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/cuviersbeaked_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/finwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/finwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/finwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-cleavage.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-cleavage_hor.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-cleavage_vert.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-foliation-2.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-foliation-3.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-foliation.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-foliation_hor.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-foliation_vert.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-joint.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-joint_hor.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-joint_vert.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-lineation-2.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-lineation-3.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-lineation.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-lineation_hor.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-lineation_vert.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane_gentle.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane_hor.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane_inv.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane_medium.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane_rake.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane_steep.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane_und.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/geo-plane_vert.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/graywhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/graywhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/graywhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/humpbacktail_one.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/humpbacktail_one_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/humpbacktail_two.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/humpbacktail_two_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/jumpback.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/jumpback_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/jumpback_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/killerwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/killerwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/killerwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/longfinnedpilotwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/longfinnedpilotwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/longfinnedpilotwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/minkewhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/minkewhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/minkewhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/northernrightwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/northernrightwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/northernrightwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/pigmyspermwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/pigmyspermwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/pigmyspermwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/pirata.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/rissosdolphin.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/rissosdolphin_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/rissosdolphin_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/seiwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/seiwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/seiwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/shortfinnedpilotwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/shortfinnedpilotwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/shortfinnedpilotwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/southernrightwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/southernrightwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/southernrightwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spectacledporpoise.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spectacledporpoise_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spectacledporpoise_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spermwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spermwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spermwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spermwhaletail.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spermwhaletail_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/spermwhaletail_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/srightwhaledolphin.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/srightwhaledolphin_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/srightwhaledolphin_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/stripeddolphin.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/stripeddolphin_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/stripeddolphin_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifiedbeakedwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifiedbeakedwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifiedbeakedwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifieddolphin.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifieddolphin_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifieddolphin_low.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifiedwhale.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifiedwhale_high.rst.txt +%%DOCSDIR%%/html/_sources/gallery/users_contrib_symbols/unidentifiedwhale_low.rst.txt +%%DOCSDIR%%/html/_sources/gmt.conf.rst.txt +%%DOCSDIR%%/html/_sources/gmt.rst.txt +%%DOCSDIR%%/html/_sources/gmt2kml.rst.txt +%%DOCSDIR%%/html/_sources/gmt5syntax.rst.txt +%%DOCSDIR%%/html/_sources/gmt_shell_functions.sh.rst.txt +%%DOCSDIR%%/html/_sources/gmtcolors.rst.txt +%%DOCSDIR%%/html/_sources/gmtconnect.rst.txt +%%DOCSDIR%%/html/_sources/gmtconvert.rst.txt +%%DOCSDIR%%/html/_sources/gmtdefaults.rst.txt +%%DOCSDIR%%/html/_sources/gmtget.rst.txt +%%DOCSDIR%%/html/_sources/gmtinfo.rst.txt +%%DOCSDIR%%/html/_sources/gmtlogo.rst.txt +%%DOCSDIR%%/html/_sources/gmtmath.rst.txt +%%DOCSDIR%%/html/_sources/gmtregress.rst.txt +%%DOCSDIR%%/html/_sources/gmtselect.rst.txt +%%DOCSDIR%%/html/_sources/gmtset.rst.txt +%%DOCSDIR%%/html/_sources/gmtsimplify.rst.txt +%%DOCSDIR%%/html/_sources/gmtspatial.rst.txt +%%DOCSDIR%%/html/_sources/gmtswitch.rst.txt +%%DOCSDIR%%/html/_sources/gmtvector.rst.txt +%%DOCSDIR%%/html/_sources/gmtwhich.rst.txt +%%DOCSDIR%%/html/_sources/grd2cpt.rst.txt +%%DOCSDIR%%/html/_sources/grd2rgb.rst.txt +%%DOCSDIR%%/html/_sources/grd2xyz.rst.txt +%%DOCSDIR%%/html/_sources/grdblend.rst.txt +%%DOCSDIR%%/html/_sources/grdclip.rst.txt +%%DOCSDIR%%/html/_sources/grdcontour.rst.txt +%%DOCSDIR%%/html/_sources/grdconvert.rst.txt +%%DOCSDIR%%/html/_sources/grdcut.rst.txt +%%DOCSDIR%%/html/_sources/grdedit.rst.txt +%%DOCSDIR%%/html/_sources/grdfft.rst.txt +%%DOCSDIR%%/html/_sources/grdfilter.rst.txt +%%DOCSDIR%%/html/_sources/grdgradient.rst.txt +%%DOCSDIR%%/html/_sources/grdhisteq.rst.txt +%%DOCSDIR%%/html/_sources/grdimage.rst.txt +%%DOCSDIR%%/html/_sources/grdinfo.rst.txt +%%DOCSDIR%%/html/_sources/grdlandmask.rst.txt +%%DOCSDIR%%/html/_sources/grdmask.rst.txt +%%DOCSDIR%%/html/_sources/grdmath.rst.txt +%%DOCSDIR%%/html/_sources/grdpaste.rst.txt +%%DOCSDIR%%/html/_sources/grdproject.rst.txt +%%DOCSDIR%%/html/_sources/grdraster.rst.txt +%%DOCSDIR%%/html/_sources/grdsample.rst.txt +%%DOCSDIR%%/html/_sources/grdtrack.rst.txt +%%DOCSDIR%%/html/_sources/grdtrend.rst.txt +%%DOCSDIR%%/html/_sources/grdvector.rst.txt +%%DOCSDIR%%/html/_sources/grdview.rst.txt +%%DOCSDIR%%/html/_sources/grdvolume.rst.txt +%%DOCSDIR%%/html/_sources/greenspline.rst.txt +%%DOCSDIR%%/html/_sources/index.rst.txt +%%DOCSDIR%%/html/_sources/isogmt.rst.txt +%%DOCSDIR%%/html/_sources/jl_wrapper.rst.txt +%%DOCSDIR%%/html/_sources/julia_wrapper.rst.txt +%%DOCSDIR%%/html/_sources/kml2gmt.rst.txt +%%DOCSDIR%%/html/_sources/makecpt.rst.txt +%%DOCSDIR%%/html/_sources/man_pages.rst.txt +%%DOCSDIR%%/html/_sources/mapproject.rst.txt +%%DOCSDIR%%/html/_sources/matlab_wrapper.rst.txt +%%DOCSDIR%%/html/_sources/ml_wrapper.rst.txt +%%DOCSDIR%%/html/_sources/nearneighbor.rst.txt +%%DOCSDIR%%/html/_sources/postscriptlight.rst.txt +%%DOCSDIR%%/html/_sources/proj_codes_GMT.rst.txt +%%DOCSDIR%%/html/_sources/proj_codes_PROJ4.rst.txt +%%DOCSDIR%%/html/_sources/project.rst.txt +%%DOCSDIR%%/html/_sources/psbasemap.rst.txt +%%DOCSDIR%%/html/_sources/psclip.rst.txt +%%DOCSDIR%%/html/_sources/pscoast.rst.txt +%%DOCSDIR%%/html/_sources/pscontour.rst.txt +%%DOCSDIR%%/html/_sources/psconvert.rst.txt +%%DOCSDIR%%/html/_sources/pshistogram.rst.txt +%%DOCSDIR%%/html/_sources/psimage.rst.txt +%%DOCSDIR%%/html/_sources/pslegend.rst.txt +%%DOCSDIR%%/html/_sources/psmask.rst.txt +%%DOCSDIR%%/html/_sources/psrose.rst.txt +%%DOCSDIR%%/html/_sources/psscale.rst.txt +%%DOCSDIR%%/html/_sources/pssolar.rst.txt +%%DOCSDIR%%/html/_sources/psternary.rst.txt +%%DOCSDIR%%/html/_sources/pstext.rst.txt +%%DOCSDIR%%/html/_sources/pswiggle.rst.txt +%%DOCSDIR%%/html/_sources/psxy.rst.txt +%%DOCSDIR%%/html/_sources/psxyz.rst.txt +%%DOCSDIR%%/html/_sources/quick_ref.rst.txt +%%DOCSDIR%%/html/_sources/sample1d.rst.txt +%%DOCSDIR%%/html/_sources/spectrum1d.rst.txt +%%DOCSDIR%%/html/_sources/sph2grd.rst.txt +%%DOCSDIR%%/html/_sources/sphdistance.rst.txt +%%DOCSDIR%%/html/_sources/sphinterpolate.rst.txt +%%DOCSDIR%%/html/_sources/sphtriangulate.rst.txt +%%DOCSDIR%%/html/_sources/splitxyz.rst.txt +%%DOCSDIR%%/html/_sources/std_opts.rst.txt +%%DOCSDIR%%/html/_sources/supplements/gshhg/gshhg.rst.txt +%%DOCSDIR%%/html/_sources/supplements/img/img2google.rst.txt +%%DOCSDIR%%/html/_sources/supplements/img/img2grd.rst.txt +%%DOCSDIR%%/html/_sources/supplements/meca/pscoupe.rst.txt +%%DOCSDIR%%/html/_sources/supplements/meca/psmeca.rst.txt +%%DOCSDIR%%/html/_sources/supplements/meca/pspolar.rst.txt +%%DOCSDIR%%/html/_sources/supplements/meca/pssac.rst.txt +%%DOCSDIR%%/html/_sources/supplements/meca/psvelo.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77convert.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77header.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77info.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77list.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77magref.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77manage.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77path.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77sniffer.rst.txt +%%DOCSDIR%%/html/_sources/supplements/mgd77/mgd77track.rst.txt +%%DOCSDIR%%/html/_sources/supplements/misc/dimfilter.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/gmtflexure.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/gmtgravmag3d.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/gpsgridder.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/gravfft.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/grdflexure.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/grdgravmag3d.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/grdredpol.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/grdseamount.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/talwani2d.rst.txt +%%DOCSDIR%%/html/_sources/supplements/potential/talwani3d.rst.txt +%%DOCSDIR%%/html/_sources/supplements/segy/pssegy.rst.txt +%%DOCSDIR%%/html/_sources/supplements/segy/pssegyz.rst.txt +%%DOCSDIR%%/html/_sources/supplements/segy/segy2grd.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/backtracker.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/gmtpmodeler.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/grdpmodeler.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/grdrotater.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/grdspotter.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/hotspotter.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/originator.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/rotconverter.rst.txt +%%DOCSDIR%%/html/_sources/supplements/spotter/rotsmoother.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_binlist.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_cross.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_datalist.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_get.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_init.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_list.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_merge.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_put.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_report.rst.txt +%%DOCSDIR%%/html/_sources/supplements/x2sys/x2sys_solve.rst.txt +%%DOCSDIR%%/html/_sources/surface.rst.txt +%%DOCSDIR%%/html/_sources/trend1d.rst.txt +%%DOCSDIR%%/html/_sources/trend2d.rst.txt +%%DOCSDIR%%/html/_sources/triangulate.rst.txt +%%DOCSDIR%%/html/_sources/tutorial.rst.txt +%%DOCSDIR%%/html/_sources/xyz2grd.rst.txt +%%DOCSDIR%%/html/_static/ajax-loader.gif +%%DOCSDIR%%/html/_static/basic.css +%%DOCSDIR%%/html/_static/bg-header1.png +%%DOCSDIR%%/html/_static/bg-header2.png +%%DOCSDIR%%/html/_static/classic.css +%%DOCSDIR%%/html/_static/comment-bright.png +%%DOCSDIR%%/html/_static/comment-close.png +%%DOCSDIR%%/html/_static/comment.png +%%DOCSDIR%%/html/_static/default.css +%%DOCSDIR%%/html/_static/doctools.js +%%DOCSDIR%%/html/_static/documentation_options.js +%%DOCSDIR%%/html/_static/down-pressed.png +%%DOCSDIR%%/html/_static/down.png +%%DOCSDIR%%/html/_static/file.png +%%DOCSDIR%%/html/_static/jquery-3.2.1.js +%%DOCSDIR%%/html/_static/jquery.js +%%DOCSDIR%%/html/_static/minus.png +%%DOCSDIR%%/html/_static/overlaypopup.css +%%DOCSDIR%%/html/_static/plus.png +%%DOCSDIR%%/html/_static/pygments.css +%%DOCSDIR%%/html/_static/rtd-sidebar.js +%%DOCSDIR%%/html/_static/rtd.css +%%DOCSDIR%%/html/_static/searchtools.js +%%DOCSDIR%%/html/_static/sidebar.js +%%DOCSDIR%%/html/_static/underscore-1.3.1.js +%%DOCSDIR%%/html/_static/underscore.js +%%DOCSDIR%%/html/_static/up-pressed.png +%%DOCSDIR%%/html/_static/up.png +%%DOCSDIR%%/html/_static/websupport.js +%%DOCSDIR%%/html/api.html +%%DOCSDIR%%/html/blockmean.html +%%DOCSDIR%%/html/blockmedian.html +%%DOCSDIR%%/html/blockmode.html +%%DOCSDIR%%/html/cookbook.html +%%DOCSDIR%%/html/examples_options.html +%%DOCSDIR%%/html/filter1d.html +%%DOCSDIR%%/html/fitcircle.html +%%DOCSDIR%%/html/gallery/anim01.html +%%DOCSDIR%%/html/gallery/anim02.html +%%DOCSDIR%%/html/gallery/anim03.html +%%DOCSDIR%%/html/gallery/anim04.html +%%DOCSDIR%%/html/gallery/anim05.html +%%DOCSDIR%%/html/gallery/anim_introduction.html +%%DOCSDIR%%/html/gallery/ex01.html +%%DOCSDIR%%/html/gallery/ex02.html +%%DOCSDIR%%/html/gallery/ex03.html +%%DOCSDIR%%/html/gallery/ex04.html +%%DOCSDIR%%/html/gallery/ex05.html +%%DOCSDIR%%/html/gallery/ex06.html +%%DOCSDIR%%/html/gallery/ex07.html +%%DOCSDIR%%/html/gallery/ex08.html +%%DOCSDIR%%/html/gallery/ex09.html +%%DOCSDIR%%/html/gallery/ex10.html +%%DOCSDIR%%/html/gallery/ex11.html +%%DOCSDIR%%/html/gallery/ex12.html +%%DOCSDIR%%/html/gallery/ex13.html +%%DOCSDIR%%/html/gallery/ex14.html +%%DOCSDIR%%/html/gallery/ex15.html +%%DOCSDIR%%/html/gallery/ex16.html +%%DOCSDIR%%/html/gallery/ex17.html +%%DOCSDIR%%/html/gallery/ex18.html +%%DOCSDIR%%/html/gallery/ex19.html +%%DOCSDIR%%/html/gallery/ex20.html +%%DOCSDIR%%/html/gallery/ex21.html +%%DOCSDIR%%/html/gallery/ex22.html +%%DOCSDIR%%/html/gallery/ex23.html +%%DOCSDIR%%/html/gallery/ex24.html +%%DOCSDIR%%/html/gallery/ex25.html +%%DOCSDIR%%/html/gallery/ex26.html +%%DOCSDIR%%/html/gallery/ex27.html +%%DOCSDIR%%/html/gallery/ex28.html +%%DOCSDIR%%/html/gallery/ex29.html +%%DOCSDIR%%/html/gallery/ex30.html +%%DOCSDIR%%/html/gallery/ex31.html +%%DOCSDIR%%/html/gallery/ex32.html +%%DOCSDIR%%/html/gallery/ex33.html +%%DOCSDIR%%/html/gallery/ex34.html +%%DOCSDIR%%/html/gallery/ex35.html +%%DOCSDIR%%/html/gallery/ex36.html +%%DOCSDIR%%/html/gallery/ex37.html +%%DOCSDIR%%/html/gallery/ex38.html +%%DOCSDIR%%/html/gallery/ex39.html +%%DOCSDIR%%/html/gallery/ex40.html +%%DOCSDIR%%/html/gallery/ex41.html +%%DOCSDIR%%/html/gallery/ex42.html +%%DOCSDIR%%/html/gallery/ex43.html +%%DOCSDIR%%/html/gallery/ex44.html +%%DOCSDIR%%/html/gallery/ex45.html +%%DOCSDIR%%/html/gallery/ex46.html +%%DOCSDIR%%/html/gallery/ex47.html +%%DOCSDIR%%/html/gallery/ex48.html +%%DOCSDIR%%/html/gallery/ex49.html +%%DOCSDIR%%/html/gallery/ex50.html +%%DOCSDIR%%/html/gallery/users_contrib_script/vertical_slice.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/Cetacea.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/Geology.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/atlantwhitesided.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/atlantwhitesided_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/atlantwhitesided_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/beluga.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/beluga_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/beluga_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/bottlenose.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/bottlenose_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/bottlenose_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/bowhead.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/bowhead_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/bowhead_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/burmeistersporpoise.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/burmeistersporpoise_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/burmeistersporpoise_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/commondolphin.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/commondolphin_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/commondolphin_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/commondolphin_midhigh.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/commondolphin_midlow.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/commonporpoise.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/commonporpoise_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/commonporpoise_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/cuviersbeaked.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/cuviersbeaked_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/cuviersbeaked_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/finwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/finwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/finwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-cleavage.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-cleavage_hor.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-cleavage_vert.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-foliation-2.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-foliation-3.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-foliation.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-foliation_hor.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-foliation_vert.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-joint.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-joint_hor.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-joint_vert.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-lineation-2.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-lineation-3.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-lineation.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-lineation_hor.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-lineation_vert.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane_gentle.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane_hor.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane_inv.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane_medium.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane_rake.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane_steep.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane_und.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/geo-plane_vert.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/graywhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/graywhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/graywhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/humpbacktail_one.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/humpbacktail_one_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/humpbacktail_two.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/humpbacktail_two_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/jumpback.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/jumpback_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/jumpback_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/killerwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/killerwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/killerwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/longfinnedpilotwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/longfinnedpilotwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/longfinnedpilotwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/minkewhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/minkewhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/minkewhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/northernrightwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/northernrightwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/northernrightwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/pigmyspermwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/pigmyspermwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/pigmyspermwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/pirata.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/rissosdolphin.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/rissosdolphin_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/rissosdolphin_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/seiwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/seiwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/seiwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/shortfinnedpilotwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/shortfinnedpilotwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/shortfinnedpilotwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/southernrightwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/southernrightwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/southernrightwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spectacledporpoise.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spectacledporpoise_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spectacledporpoise_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spermwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spermwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spermwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spermwhaletail.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spermwhaletail_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/spermwhaletail_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/srightwhaledolphin.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/srightwhaledolphin_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/srightwhaledolphin_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/stripeddolphin.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/stripeddolphin_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/stripeddolphin_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifiedbeakedwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifiedbeakedwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifiedbeakedwhale_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifieddolphin.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifieddolphin_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifieddolphin_low.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifiedwhale.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifiedwhale_high.html +%%DOCSDIR%%/html/gallery/users_contrib_symbols/unidentifiedwhale_low.html +%%DOCSDIR%%/html/genindex.html +%%DOCSDIR%%/html/gmt.conf.html +%%DOCSDIR%%/html/gmt.html +%%DOCSDIR%%/html/gmt2kml.html +%%DOCSDIR%%/html/gmt5syntax.html +%%DOCSDIR%%/html/gmt_shell_functions.sh.html +%%DOCSDIR%%/html/gmtcolors.html +%%DOCSDIR%%/html/gmtconnect.html +%%DOCSDIR%%/html/gmtconvert.html +%%DOCSDIR%%/html/gmtdefaults.html +%%DOCSDIR%%/html/gmtget.html +%%DOCSDIR%%/html/gmtinfo.html +%%DOCSDIR%%/html/gmtlogo.html +%%DOCSDIR%%/html/gmtmath.html +%%DOCSDIR%%/html/gmtregress.html +%%DOCSDIR%%/html/gmtselect.html +%%DOCSDIR%%/html/gmtset.html +%%DOCSDIR%%/html/gmtsimplify.html +%%DOCSDIR%%/html/gmtspatial.html +%%DOCSDIR%%/html/gmtswitch.html +%%DOCSDIR%%/html/gmtvector.html +%%DOCSDIR%%/html/gmtwhich.html +%%DOCSDIR%%/html/grd2cpt.html +%%DOCSDIR%%/html/grd2rgb.html +%%DOCSDIR%%/html/grd2xyz.html +%%DOCSDIR%%/html/grdblend.html +%%DOCSDIR%%/html/grdclip.html +%%DOCSDIR%%/html/grdcontour.html +%%DOCSDIR%%/html/grdconvert.html +%%DOCSDIR%%/html/grdcut.html +%%DOCSDIR%%/html/grdedit.html +%%DOCSDIR%%/html/grdfft.html +%%DOCSDIR%%/html/grdfilter.html +%%DOCSDIR%%/html/grdgradient.html +%%DOCSDIR%%/html/grdhisteq.html +%%DOCSDIR%%/html/grdimage.html +%%DOCSDIR%%/html/grdinfo.html +%%DOCSDIR%%/html/grdlandmask.html +%%DOCSDIR%%/html/grdmask.html +%%DOCSDIR%%/html/grdmath.html +%%DOCSDIR%%/html/grdpaste.html +%%DOCSDIR%%/html/grdproject.html +%%DOCSDIR%%/html/grdraster.html +%%DOCSDIR%%/html/grdsample.html +%%DOCSDIR%%/html/grdtrack.html +%%DOCSDIR%%/html/grdtrend.html +%%DOCSDIR%%/html/grdvector.html +%%DOCSDIR%%/html/grdview.html +%%DOCSDIR%%/html/grdvolume.html +%%DOCSDIR%%/html/greenspline.html +%%DOCSDIR%%/html/index.html +%%DOCSDIR%%/html/isogmt.html +%%DOCSDIR%%/html/jl_wrapper.html +%%DOCSDIR%%/html/julia_wrapper.html +%%DOCSDIR%%/html/kml2gmt.html +%%DOCSDIR%%/html/makecpt.html +%%DOCSDIR%%/html/man_pages.html +%%DOCSDIR%%/html/mapproject.html +%%DOCSDIR%%/html/matlab_wrapper.html +%%DOCSDIR%%/html/ml_wrapper.html +%%DOCSDIR%%/html/nearneighbor.html +%%DOCSDIR%%/html/objects.inv +%%DOCSDIR%%/html/postscriptlight.html +%%DOCSDIR%%/html/proj_codes_GMT.html +%%DOCSDIR%%/html/proj_codes_PROJ4.html +%%DOCSDIR%%/html/project.html +%%DOCSDIR%%/html/psbasemap.html +%%DOCSDIR%%/html/psclip.html +%%DOCSDIR%%/html/pscoast.html +%%DOCSDIR%%/html/pscontour.html +%%DOCSDIR%%/html/psconvert.html +%%DOCSDIR%%/html/pshistogram.html +%%DOCSDIR%%/html/psimage.html +%%DOCSDIR%%/html/pslegend.html +%%DOCSDIR%%/html/psmask.html +%%DOCSDIR%%/html/psrose.html +%%DOCSDIR%%/html/psscale.html +%%DOCSDIR%%/html/pssolar.html +%%DOCSDIR%%/html/psternary.html +%%DOCSDIR%%/html/pstext.html +%%DOCSDIR%%/html/pswiggle.html +%%DOCSDIR%%/html/psxy.html +%%DOCSDIR%%/html/psxyz.html +%%DOCSDIR%%/html/quick_ref.html +%%DOCSDIR%%/html/sample1d.html +%%DOCSDIR%%/html/search.html +%%DOCSDIR%%/html/searchindex.js +%%DOCSDIR%%/html/spectrum1d.html +%%DOCSDIR%%/html/sph2grd.html +%%DOCSDIR%%/html/sphdistance.html +%%DOCSDIR%%/html/sphinterpolate.html +%%DOCSDIR%%/html/sphtriangulate.html +%%DOCSDIR%%/html/splitxyz.html +%%DOCSDIR%%/html/std_opts.html +%%DOCSDIR%%/html/supplements/gshhg/gshhg.html +%%DOCSDIR%%/html/supplements/img/img2google.html +%%DOCSDIR%%/html/supplements/img/img2grd.html +%%DOCSDIR%%/html/supplements/meca/pscoupe.html +%%DOCSDIR%%/html/supplements/meca/psmeca.html +%%DOCSDIR%%/html/supplements/meca/pspolar.html +%%DOCSDIR%%/html/supplements/meca/pssac.html +%%DOCSDIR%%/html/supplements/meca/psvelo.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77convert.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77header.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77info.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77list.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77magref.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77manage.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77path.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77sniffer.html +%%DOCSDIR%%/html/supplements/mgd77/mgd77track.html +%%DOCSDIR%%/html/supplements/misc/dimfilter.html +%%DOCSDIR%%/html/supplements/potential/gmtflexure.html +%%DOCSDIR%%/html/supplements/potential/gmtgravmag3d.html +%%DOCSDIR%%/html/supplements/potential/gpsgridder.html +%%DOCSDIR%%/html/supplements/potential/gravfft.html +%%DOCSDIR%%/html/supplements/potential/grdflexure.html +%%DOCSDIR%%/html/supplements/potential/grdgravmag3d.html +%%DOCSDIR%%/html/supplements/potential/grdredpol.html +%%DOCSDIR%%/html/supplements/potential/grdseamount.html +%%DOCSDIR%%/html/supplements/potential/talwani2d.html +%%DOCSDIR%%/html/supplements/potential/talwani3d.html +%%DOCSDIR%%/html/supplements/segy/pssegy.html +%%DOCSDIR%%/html/supplements/segy/pssegyz.html +%%DOCSDIR%%/html/supplements/segy/segy2grd.html +%%DOCSDIR%%/html/supplements/spotter/backtracker.html +%%DOCSDIR%%/html/supplements/spotter/gmtpmodeler.html +%%DOCSDIR%%/html/supplements/spotter/grdpmodeler.html +%%DOCSDIR%%/html/supplements/spotter/grdrotater.html +%%DOCSDIR%%/html/supplements/spotter/grdspotter.html +%%DOCSDIR%%/html/supplements/spotter/hotspotter.html +%%DOCSDIR%%/html/supplements/spotter/originator.html +%%DOCSDIR%%/html/supplements/spotter/rotconverter.html +%%DOCSDIR%%/html/supplements/spotter/rotsmoother.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_binlist.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_cross.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_datalist.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_get.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_init.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_list.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_merge.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_put.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_report.html +%%DOCSDIR%%/html/supplements/x2sys/x2sys_solve.html +%%DOCSDIR%%/html/surface.html +%%DOCSDIR%%/html/trend1d.html +%%DOCSDIR%%/html/trend2d.html +%%DOCSDIR%%/html/triangulate.html +%%DOCSDIR%%/html/tutorial.html +%%DOCSDIR%%/html/xyz2grd.html +%%DOCSDIR%%/man/man1/backtracker.1.gz +%%DOCSDIR%%/man/man1/blockmean.1.gz +%%DOCSDIR%%/man/man1/blockmedian.1.gz +%%DOCSDIR%%/man/man1/blockmode.1.gz +%%DOCSDIR%%/man/man1/dimfilter.1.gz +%%DOCSDIR%%/man/man1/filter1d.1.gz +%%DOCSDIR%%/man/man1/fitcircle.1.gz +%%DOCSDIR%%/man/man1/gmt.1.gz +%%DOCSDIR%%/man/man1/gmt2kml.1.gz +%%DOCSDIR%%/man/man1/gmt5syntax.1.gz +%%DOCSDIR%%/man/man1/gmt_shell_functions.sh.1.gz +%%DOCSDIR%%/man/man1/gmtconnect.1.gz +%%DOCSDIR%%/man/man1/gmtconvert.1.gz +%%DOCSDIR%%/man/man1/gmtdefaults.1.gz +%%DOCSDIR%%/man/man1/gmtflexure.1.gz +%%DOCSDIR%%/man/man1/gmtget.1.gz +%%DOCSDIR%%/man/man1/gmtgravmag3d.1.gz +%%DOCSDIR%%/man/man1/gmtinfo.1.gz +%%DOCSDIR%%/man/man1/gmtlogo.1.gz +%%DOCSDIR%%/man/man1/gmtmath.1.gz +%%DOCSDIR%%/man/man1/gmtpmodeler.1.gz +%%DOCSDIR%%/man/man1/gmtregress.1.gz +%%DOCSDIR%%/man/man1/gmtselect.1.gz +%%DOCSDIR%%/man/man1/gmtset.1.gz +%%DOCSDIR%%/man/man1/gmtsimplify.1.gz +%%DOCSDIR%%/man/man1/gmtspatial.1.gz +%%DOCSDIR%%/man/man1/gmtswitch.1.gz +%%DOCSDIR%%/man/man1/gmtvector.1.gz +%%DOCSDIR%%/man/man1/gmtwhich.1.gz +%%DOCSDIR%%/man/man1/gpsgridder.1.gz +%%DOCSDIR%%/man/man1/gravfft.1.gz +%%DOCSDIR%%/man/man1/grd2cpt.1.gz +%%DOCSDIR%%/man/man1/grd2rgb.1.gz +%%DOCSDIR%%/man/man1/grd2xyz.1.gz +%%DOCSDIR%%/man/man1/grdblend.1.gz +%%DOCSDIR%%/man/man1/grdclip.1.gz +%%DOCSDIR%%/man/man1/grdcontour.1.gz +%%DOCSDIR%%/man/man1/grdconvert.1.gz +%%DOCSDIR%%/man/man1/grdcut.1.gz +%%DOCSDIR%%/man/man1/grdedit.1.gz +%%DOCSDIR%%/man/man1/grdfft.1.gz +%%DOCSDIR%%/man/man1/grdfilter.1.gz +%%DOCSDIR%%/man/man1/grdflexure.1.gz +%%DOCSDIR%%/man/man1/grdgradient.1.gz +%%DOCSDIR%%/man/man1/grdgravmag3d.1.gz +%%DOCSDIR%%/man/man1/grdhisteq.1.gz +%%DOCSDIR%%/man/man1/grdimage.1.gz +%%DOCSDIR%%/man/man1/grdinfo.1.gz +%%DOCSDIR%%/man/man1/grdlandmask.1.gz +%%DOCSDIR%%/man/man1/grdmask.1.gz +%%DOCSDIR%%/man/man1/grdmath.1.gz +%%DOCSDIR%%/man/man1/grdpaste.1.gz +%%DOCSDIR%%/man/man1/grdpmodeler.1.gz +%%DOCSDIR%%/man/man1/grdproject.1.gz +%%DOCSDIR%%/man/man1/grdraster.1.gz +%%DOCSDIR%%/man/man1/grdredpol.1.gz +%%DOCSDIR%%/man/man1/grdrotater.1.gz +%%DOCSDIR%%/man/man1/grdsample.1.gz +%%DOCSDIR%%/man/man1/grdseamount.1.gz +%%DOCSDIR%%/man/man1/grdspotter.1.gz +%%DOCSDIR%%/man/man1/grdtrack.1.gz +%%DOCSDIR%%/man/man1/grdtrend.1.gz +%%DOCSDIR%%/man/man1/grdvector.1.gz +%%DOCSDIR%%/man/man1/grdview.1.gz +%%DOCSDIR%%/man/man1/grdvolume.1.gz +%%DOCSDIR%%/man/man1/greenspline.1.gz +%%DOCSDIR%%/man/man1/gshhg.1.gz +%%DOCSDIR%%/man/man1/hotspotter.1.gz +%%DOCSDIR%%/man/man1/img2grd.1.gz +%%DOCSDIR%%/man/man1/isogmt.1.gz +%%DOCSDIR%%/man/man1/kml2gmt.1.gz +%%DOCSDIR%%/man/man1/makecpt.1.gz +%%DOCSDIR%%/man/man1/mapproject.1.gz +%%DOCSDIR%%/man/man1/mgd77convert.1.gz +%%DOCSDIR%%/man/man1/mgd77header.1.gz +%%DOCSDIR%%/man/man1/mgd77info.1.gz +%%DOCSDIR%%/man/man1/mgd77list.1.gz +%%DOCSDIR%%/man/man1/mgd77magref.1.gz +%%DOCSDIR%%/man/man1/mgd77manage.1.gz +%%DOCSDIR%%/man/man1/mgd77path.1.gz +%%DOCSDIR%%/man/man1/mgd77sniffer.1.gz +%%DOCSDIR%%/man/man1/mgd77track.1.gz +%%DOCSDIR%%/man/man1/nearneighbor.1.gz +%%DOCSDIR%%/man/man1/originator.1.gz +%%DOCSDIR%%/man/man1/project.1.gz +%%DOCSDIR%%/man/man1/psbasemap.1.gz +%%DOCSDIR%%/man/man1/psclip.1.gz +%%DOCSDIR%%/man/man1/pscoast.1.gz +%%DOCSDIR%%/man/man1/pscontour.1.gz +%%DOCSDIR%%/man/man1/psconvert.1.gz +%%DOCSDIR%%/man/man1/pscoupe.1.gz +%%DOCSDIR%%/man/man1/pshistogram.1.gz +%%DOCSDIR%%/man/man1/psimage.1.gz +%%DOCSDIR%%/man/man1/pslegend.1.gz +%%DOCSDIR%%/man/man1/psmask.1.gz +%%DOCSDIR%%/man/man1/psmeca.1.gz +%%DOCSDIR%%/man/man1/pspolar.1.gz +%%DOCSDIR%%/man/man1/psrose.1.gz +%%DOCSDIR%%/man/man1/pssac.1.gz +%%DOCSDIR%%/man/man1/psscale.1.gz +%%DOCSDIR%%/man/man1/pssegy.1.gz +%%DOCSDIR%%/man/man1/pssegyz.1.gz +%%DOCSDIR%%/man/man1/pssolar.1.gz +%%DOCSDIR%%/man/man1/psternary.1.gz +%%DOCSDIR%%/man/man1/pstext.1.gz +%%DOCSDIR%%/man/man1/psvelo.1.gz +%%DOCSDIR%%/man/man1/pswiggle.1.gz +%%DOCSDIR%%/man/man1/psxy.1.gz +%%DOCSDIR%%/man/man1/psxyz.1.gz +%%DOCSDIR%%/man/man1/rotconverter.1.gz +%%DOCSDIR%%/man/man1/sample1d.1.gz +%%DOCSDIR%%/man/man1/segy2grd.1.gz +%%DOCSDIR%%/man/man1/spectrum1d.1.gz +%%DOCSDIR%%/man/man1/sph2grd.1.gz +%%DOCSDIR%%/man/man1/sphdistance.1.gz +%%DOCSDIR%%/man/man1/sphinterpolate.1.gz +%%DOCSDIR%%/man/man1/sphtriangulate.1.gz +%%DOCSDIR%%/man/man1/splitxyz.1.gz +%%DOCSDIR%%/man/man1/surface.1.gz +%%DOCSDIR%%/man/man1/talwani2d.1.gz +%%DOCSDIR%%/man/man1/talwani3d.1.gz +%%DOCSDIR%%/man/man1/trend1d.1.gz +%%DOCSDIR%%/man/man1/trend2d.1.gz +%%DOCSDIR%%/man/man1/triangulate.1.gz +%%DOCSDIR%%/man/man1/x2sys_binlist.1.gz +%%DOCSDIR%%/man/man1/x2sys_cross.1.gz +%%DOCSDIR%%/man/man1/x2sys_datalist.1.gz +%%DOCSDIR%%/man/man1/x2sys_get.1.gz +%%DOCSDIR%%/man/man1/x2sys_init.1.gz +%%DOCSDIR%%/man/man1/x2sys_list.1.gz +%%DOCSDIR%%/man/man1/x2sys_merge.1.gz +%%DOCSDIR%%/man/man1/x2sys_put.1.gz +%%DOCSDIR%%/man/man1/x2sys_report.1.gz +%%DOCSDIR%%/man/man1/x2sys_solve.1.gz +%%DOCSDIR%%/man/man1/xyz2grd.1.gz +%%DOCSDIR%%/man/man3/postscriptlight.3.gz +%%DOCSDIR%%/man/man5/gmt.conf.5.gz +%%DOCSDIR%%/man/man5/gmtcolors.5.gz +%%DOCSDIR%%/pdf/GMT_RGBchart_a4.pdf +%%DOCSDIR%%/pdf/GMT_RGBchart_letter.pdf +%%DOCSDIR%%/pdf/GMT_RGBchart_tabloid.pdf +%%DOCSDIR%%/supplements/meca/README.meca +%%DOCSDIR%%/supplements/misc/README.misc +%%DOCSDIR%%/supplements/misc/dim.template.sh +%%DOCSDIR%%/supplements/segy/README.segyprogs +%%DOCSDIR%%/supplements/segy/segyprogs_1.sh +%%DOCSDIR%%/supplements/segy/segyprogs_2.sh +%%DOCSDIR%%/supplements/segy/segyprogs_3.sh +%%DOCSDIR%%/supplements/segy/segyprogs_4.sh +%%DOCSDIR%%/supplements/segy/segyprogs_5.sh +%%DOCSDIR%%/supplements/segy/test.list +%%DOCSDIR%%/supplements/segy/wa1_mig13.segy +%%DOCSDIR%%/supplements/spotter/DC85.txt +%%DOCSDIR%%/supplements/spotter/README.spotter +%%DOCSDIR%%/supplements/spotter/WK97.txt +%%DOCSDIR%%/supplements/spotter/pac_hs.txt +%%DOCSDIR%%/supplements/spotter/seamounts.txt +%%DOCSDIR%%/supplements/spotter/spotter.bat +%%DOCSDIR%%/supplements/spotter/spotter.sh +%%DOCSDIR%%/supplements/x2sys/README.x2sys +%%DOCSDIR%%/supplements/x2sys/test_x2sys.sh +%%DOCSDIR%%/tutorial/bermuda.nc +%%DOCSDIR%%/tutorial/data +%%DOCSDIR%%/tutorial/otemp.anal1deg.nc +%%DOCSDIR%%/tutorial/quakes.cpt +%%DOCSDIR%%/tutorial/quakes.ngdc +%%DOCSDIR%%/tutorial/ship.xyz +%%DOCSDIR%%/tutorial/topo.cpt +%%DOCSDIR%%/tutorial/us.nc +%%DATADIR%%/VERSION +%%DATADIR%%/cpt/abyss.cpt +%%DATADIR%%/cpt/bathy.cpt +%%DATADIR%%/cpt/categorical.cpt +%%DATADIR%%/cpt/cool.cpt +%%DATADIR%%/cpt/copper.cpt +%%DATADIR%%/cpt/cubhelix.cpt +%%DATADIR%%/cpt/cyclic.cpt +%%DATADIR%%/cpt/dem1.cpt +%%DATADIR%%/cpt/dem2.cpt +%%DATADIR%%/cpt/dem3.cpt +%%DATADIR%%/cpt/dem4.cpt +%%DATADIR%%/cpt/drywet.cpt +%%DATADIR%%/cpt/earth.cpt +%%DATADIR%%/cpt/elevation.cpt +%%DATADIR%%/cpt/etopo1.cpt +%%DATADIR%%/cpt/gebco.cpt +%%DATADIR%%/cpt/geo.cpt +%%DATADIR%%/cpt/globe.cpt +%%DATADIR%%/cpt/gray.cpt +%%DATADIR%%/cpt/haxby.cpt +%%DATADIR%%/cpt/hot.cpt +%%DATADIR%%/cpt/ibcso.cpt +%%DATADIR%%/cpt/inferno.cpt +%%DATADIR%%/cpt/jet.cpt +%%DATADIR%%/cpt/magma.cpt +%%DATADIR%%/cpt/nighttime.cpt +%%DATADIR%%/cpt/no_green.cpt +%%DATADIR%%/cpt/ocean.cpt +%%DATADIR%%/cpt/paired.cpt +%%DATADIR%%/cpt/panoply.cpt +%%DATADIR%%/cpt/plasma.cpt +%%DATADIR%%/cpt/polar.cpt +%%DATADIR%%/cpt/rainbow.cpt +%%DATADIR%%/cpt/red2green.cpt +%%DATADIR%%/cpt/relief.cpt +%%DATADIR%%/cpt/seafloor.cpt +%%DATADIR%%/cpt/sealand.cpt +%%DATADIR%%/cpt/seis.cpt +%%DATADIR%%/cpt/split.cpt +%%DATADIR%%/cpt/terra.cpt +%%DATADIR%%/cpt/topo.cpt +%%DATADIR%%/cpt/viridis.cpt +%%DATADIR%%/cpt/world.cpt +%%DATADIR%%/cpt/wysiwyg.cpt +%%DATADIR%%/custom/astroid.def +%%DATADIR%%/custom/circle.def +%%DATADIR%%/custom/cross.def +%%DATADIR%%/custom/crosshair.def +%%DATADIR%%/custom/deltoid.def +%%DATADIR%%/custom/diamond.def +%%DATADIR%%/custom/flash.def +%%DATADIR%%/custom/gmt_custom_symbols.conf +%%DATADIR%%/custom/hexagon.def +%%DATADIR%%/custom/hlens.def +%%DATADIR%%/custom/hlozenge.def +%%DATADIR%%/custom/hneedle.def +%%DATADIR%%/custom/hurricane.def +%%DATADIR%%/custom/invtriangle.def +%%DATADIR%%/custom/lcrescent.def +%%DATADIR%%/custom/lflag.def +%%DATADIR%%/custom/ltriangle.def +%%DATADIR%%/custom/meca.def +%%DATADIR%%/custom/octagon.def +%%DATADIR%%/custom/pacman.def +%%DATADIR%%/custom/pentagon.def +%%DATADIR%%/custom/rcrescent.def +%%DATADIR%%/custom/rflag.def +%%DATADIR%%/custom/rtriangle.def +%%DATADIR%%/custom/sectoid.def +%%DATADIR%%/custom/square.def +%%DATADIR%%/custom/squaroid.def +%%DATADIR%%/custom/star.def +%%DATADIR%%/custom/star3.def +%%DATADIR%%/custom/star4.def +%%DATADIR%%/custom/starp.def +%%DATADIR%%/custom/sun.def +%%DATADIR%%/custom/triangle.def +%%DATADIR%%/custom/trirot1.def +%%DATADIR%%/custom/trirot2.def +%%DATADIR%%/custom/trirot3.def +%%DATADIR%%/custom/trirot4.def +%%DATADIR%%/custom/vlens.def +%%DATADIR%%/custom/vlozenge.def +%%DATADIR%%/custom/vneedle.def +%%DATADIR%%/custom/volcano.def +%%DATADIR%%/dbase/grdraster.info +%%DATADIR%%/localization/br.d +%%DATADIR%%/localization/gmt_cn1.locale +%%DATADIR%%/localization/gmt_cn2.locale +%%DATADIR%%/localization/gmt_de.locale +%%DATADIR%%/localization/gmt_dk.locale +%%DATADIR%%/localization/gmt_eh.locale +%%DATADIR%%/localization/gmt_es.locale +%%DATADIR%%/localization/gmt_fi.locale +%%DATADIR%%/localization/gmt_fr.locale +%%DATADIR%%/localization/gmt_gr.locale +%%DATADIR%%/localization/gmt_hi.locale +%%DATADIR%%/localization/gmt_hu.locale +%%DATADIR%%/localization/gmt_ie.locale +%%DATADIR%%/localization/gmt_il.locale +%%DATADIR%%/localization/gmt_is.locale +%%DATADIR%%/localization/gmt_it.locale +%%DATADIR%%/localization/gmt_jp.locale +%%DATADIR%%/localization/gmt_kr.locale +%%DATADIR%%/localization/gmt_nl.locale +%%DATADIR%%/localization/gmt_no.locale +%%DATADIR%%/localization/gmt_pl.locale +%%DATADIR%%/localization/gmt_pt.locale +%%DATADIR%%/localization/gmt_ru.locale +%%DATADIR%%/localization/gmt_se.locale +%%DATADIR%%/localization/gmt_sg.locale +%%DATADIR%%/localization/gmt_to.locale +%%DATADIR%%/localization/gmt_tr.locale +%%DATADIR%%/localization/gmt_uk.locale +%%DATADIR%%/localization/gmt_us.locale +%%DATADIR%%/mgd77/Dst_all.wdc +%%DATADIR%%/mgd77/F107_mon.plt +%%DATADIR%%/mgd77/mgd77_paths.txt +%%DATADIR%%/mgd77/umdl.CM4 +%%DATADIR%%/mgg/carter.d +%%DATADIR%%/mgg/gmtfile_paths +%%DATADIR%%/postscriptlight/PSL_custom_fonts.txt +%%DATADIR%%/postscriptlight/PSL_label.ps +%%DATADIR%%/postscriptlight/PSL_pattern_01.ras +%%DATADIR%%/postscriptlight/PSL_pattern_02.ras +%%DATADIR%%/postscriptlight/PSL_pattern_03.ras +%%DATADIR%%/postscriptlight/PSL_pattern_04.ras +%%DATADIR%%/postscriptlight/PSL_pattern_05.ras +%%DATADIR%%/postscriptlight/PSL_pattern_06.ras +%%DATADIR%%/postscriptlight/PSL_pattern_07.ras +%%DATADIR%%/postscriptlight/PSL_pattern_08.ras +%%DATADIR%%/postscriptlight/PSL_pattern_09.ras +%%DATADIR%%/postscriptlight/PSL_pattern_10.ras +%%DATADIR%%/postscriptlight/PSL_pattern_11.ras +%%DATADIR%%/postscriptlight/PSL_pattern_12.ras +%%DATADIR%%/postscriptlight/PSL_pattern_13.ras +%%DATADIR%%/postscriptlight/PSL_pattern_14.ras +%%DATADIR%%/postscriptlight/PSL_pattern_15.ras +%%DATADIR%%/postscriptlight/PSL_pattern_16.ras +%%DATADIR%%/postscriptlight/PSL_pattern_17.ras +%%DATADIR%%/postscriptlight/PSL_pattern_18.ras +%%DATADIR%%/postscriptlight/PSL_pattern_19.ras +%%DATADIR%%/postscriptlight/PSL_pattern_20.ras +%%DATADIR%%/postscriptlight/PSL_pattern_21.ras +%%DATADIR%%/postscriptlight/PSL_pattern_22.ras +%%DATADIR%%/postscriptlight/PSL_pattern_23.ras +%%DATADIR%%/postscriptlight/PSL_pattern_24.ras +%%DATADIR%%/postscriptlight/PSL_pattern_25.ras +%%DATADIR%%/postscriptlight/PSL_pattern_26.ras +%%DATADIR%%/postscriptlight/PSL_pattern_27.ras +%%DATADIR%%/postscriptlight/PSL_pattern_28.ras +%%DATADIR%%/postscriptlight/PSL_pattern_29.ras +%%DATADIR%%/postscriptlight/PSL_pattern_30.ras +%%DATADIR%%/postscriptlight/PSL_pattern_31.ras +%%DATADIR%%/postscriptlight/PSL_pattern_32.ras +%%DATADIR%%/postscriptlight/PSL_pattern_33.ras +%%DATADIR%%/postscriptlight/PSL_pattern_34.ras +%%DATADIR%%/postscriptlight/PSL_pattern_35.ras +%%DATADIR%%/postscriptlight/PSL_pattern_36.ras +%%DATADIR%%/postscriptlight/PSL_pattern_37.ras +%%DATADIR%%/postscriptlight/PSL_pattern_38.ras +%%DATADIR%%/postscriptlight/PSL_pattern_39.ras +%%DATADIR%%/postscriptlight/PSL_pattern_40.ras +%%DATADIR%%/postscriptlight/PSL_pattern_41.ras +%%DATADIR%%/postscriptlight/PSL_pattern_42.ras +%%DATADIR%%/postscriptlight/PSL_pattern_43.ras +%%DATADIR%%/postscriptlight/PSL_pattern_44.ras +%%DATADIR%%/postscriptlight/PSL_pattern_45.ras +%%DATADIR%%/postscriptlight/PSL_pattern_46.ras +%%DATADIR%%/postscriptlight/PSL_pattern_47.ras +%%DATADIR%%/postscriptlight/PSL_pattern_48.ras +%%DATADIR%%/postscriptlight/PSL_pattern_49.ras +%%DATADIR%%/postscriptlight/PSL_pattern_50.ras +%%DATADIR%%/postscriptlight/PSL_pattern_51.ras +%%DATADIR%%/postscriptlight/PSL_pattern_52.ras +%%DATADIR%%/postscriptlight/PSL_pattern_53.ras +%%DATADIR%%/postscriptlight/PSL_pattern_54.ras +%%DATADIR%%/postscriptlight/PSL_pattern_55.ras +%%DATADIR%%/postscriptlight/PSL_pattern_56.ras +%%DATADIR%%/postscriptlight/PSL_pattern_57.ras +%%DATADIR%%/postscriptlight/PSL_pattern_58.ras +%%DATADIR%%/postscriptlight/PSL_pattern_59.ras +%%DATADIR%%/postscriptlight/PSL_pattern_60.ras +%%DATADIR%%/postscriptlight/PSL_pattern_61.ras +%%DATADIR%%/postscriptlight/PSL_pattern_62.ras +%%DATADIR%%/postscriptlight/PSL_pattern_63.ras +%%DATADIR%%/postscriptlight/PSL_pattern_64.ras +%%DATADIR%%/postscriptlight/PSL_pattern_65.ras +%%DATADIR%%/postscriptlight/PSL_pattern_66.ras +%%DATADIR%%/postscriptlight/PSL_pattern_67.ras +%%DATADIR%%/postscriptlight/PSL_pattern_68.ras +%%DATADIR%%/postscriptlight/PSL_pattern_69.ras +%%DATADIR%%/postscriptlight/PSL_pattern_70.ras +%%DATADIR%%/postscriptlight/PSL_pattern_71.ras +%%DATADIR%%/postscriptlight/PSL_pattern_72.ras +%%DATADIR%%/postscriptlight/PSL_pattern_73.ras +%%DATADIR%%/postscriptlight/PSL_pattern_74.ras +%%DATADIR%%/postscriptlight/PSL_pattern_75.ras +%%DATADIR%%/postscriptlight/PSL_pattern_76.ras +%%DATADIR%%/postscriptlight/PSL_pattern_77.ras +%%DATADIR%%/postscriptlight/PSL_pattern_78.ras +%%DATADIR%%/postscriptlight/PSL_pattern_79.ras +%%DATADIR%%/postscriptlight/PSL_pattern_80.ras +%%DATADIR%%/postscriptlight/PSL_pattern_81.ras +%%DATADIR%%/postscriptlight/PSL_pattern_82.ras +%%DATADIR%%/postscriptlight/PSL_pattern_83.ras +%%DATADIR%%/postscriptlight/PSL_pattern_84.ras +%%DATADIR%%/postscriptlight/PSL_pattern_85.ras +%%DATADIR%%/postscriptlight/PSL_pattern_86.ras +%%DATADIR%%/postscriptlight/PSL_pattern_87.ras +%%DATADIR%%/postscriptlight/PSL_pattern_88.ras +%%DATADIR%%/postscriptlight/PSL_pattern_89.ras +%%DATADIR%%/postscriptlight/PSL_pattern_90.ras +%%DATADIR%%/postscriptlight/PSL_prologue.ps +%%DATADIR%%/postscriptlight/PSL_text.ps +%%DATADIR%%/postscriptlight/gmt_custom_media.conf +%%DATADIR%%/spotter/Global_EarthByte_230-0Ma_GK07_AREPS.rot +%%DATADIR%%/spotter/Global_EarthByte_Plate_ID_Table.txt +%%DATADIR%%/spotter/Global_EarthByte_Plate_ID_Table_AREPS.txt +%%DATADIR%%/spotter/Matthews_etal_GPC_2016_410-0Ma_GK07.rot +%%DATADIR%%/tools/gmt5syntax +%%DATADIR%%/tools/gmt_aliases.csh +%%DATADIR%%/tools/gmt_functions.sh +%%DATADIR%%/tools/gmt_links.sh +%%DATADIR%%/tools/gmt_make_custom_code.sh +%%DATADIR%%/tools/gmt_prepmex.sh +%%DATADIR%%/tools/gmt_uninstall.sh +%%DATADIR%%/tools/img2google +%%DATADIR%%/tools/ncdeflate +%%DATADIR%%/x2sys/dat.def +%%DATADIR%%/x2sys/geo.def +%%DATADIR%%/x2sys/geoz.def +%%DATADIR%%/x2sys/gmt.def +%%DATADIR%%/x2sys/mgd77+.def +%%DATADIR%%/x2sys/mgd77.def +%%DATADIR%%/x2sys/xy.def +%%DATADIR%%/x2sys/xyz.def Property changes on: pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property