1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
- :tocdepth: 4
- :orphan:
- .. set default highlighting language for this document:
- .. highlight:: c
- **The Generic Mapping Tools**
- **The MATLAB Interface**
- **Pål (Paul) Wessel**
- **SOEST, University of Hawai'i at Manoa**
- **Joaquim F. Luis**
- **Universidade do Algarve, Faro, Portugal**
- Introduction
- ============
- The GMT MATLAB interface makes it possible to access all GMT modules from MATLAB.
- Users of MATLAB can write MATLAB scripts that call upon GMT modules to do any of the
- things GMT normally can do, and return the results (grids, data-tables, CPTs, text-files,
- and even final images via :doc:`psconvert`) to MATLAB variables. MATLAB matrices can be given
- as input to GMT modules. Examples below will give you the general idea.
- Installing
- ==========
- Windows
- -------
- The Windows installers come already with the gmtmex.mexw64|32 and gmt.m files necessary run the MEX.
- Only make sure that the GMT binary dir is either in the Windows path (the installer does that for you)
- and in the MATLAB path (you have to do it yourself).
- If you want to (re)build the MEX file yourself, see the *compile_mex.bat* in the source GitHub repository.
- OS X
- ----
- We have successfully built the MATLAB interface under OS X. However, due to the way MATLAB handles shared libraries
- it is a delicate process, with several caveats. This may change over time as we work with MathWorks to straighten out the
- kinks. The following works:
- #. Install the GMT OS X Bundle
- #. Run the gmt_prepmex.sh script in the bundle's share/tools directory. This will duplicate
- the GMT 5.3 installation into /opt/gmt and re-baptize all the shared libraries.
- #. Use gmtswitch to make /opt/gmt the current active GMT version
- #. Checkout the gmt-mex project via subversion into some directory, i.e.,
- git clone https://github.com/GenericMappingTools/gmtmex.git
- #. In gmt-mex/trunk, run autoconf then configure --enable-matlab (and maybe --enable-debug) is you
- can help debug things.
- #. Run make which builds the gmtmex.mexmaci64. This executable is accessed by the gmt.m script.
- #. Set your MATLAB path so these two can be found (or copy them to a suitable directory).
- #. Make sure your gmt.conf file has the entry GMT_CUSTOM_LIBS=/opt/gmt/lib/gmt/plugins/supplements.so.
- You can also build your own bundle (see CMakeLists.txt in main GMT directory). The above works
- with UNIX installations from fink or HomeBrew but fails for us if under MacPorts (then, MATLAB
- will complain about wrong shared HDF5 library and we crash).
- If you wish to help debug in XCode then see the gmt-mex wiki for more details. While the latest
- 2016a MATLAB version works with XCode 7, earlier versions may require 6.4 and you will have
- to install the older Xcode version.
- We used the 2016b MATLAB version to build the interface but 2015a,b should also work. Older
- versions may also work but we have not attempted this since we only have access to these three.
- Unix/Linux)
- -----------
- Preliminary experiments indicate we will have to fight the shared library dilemma here as well.
- Volunteers on Linux wishing to run the GMT MATLAB interface are needed to make progress.
- Using
- =====
- The MATLAB wrapper was designed to work in a way the closest as possible to the command line version
- and yet to provide all the facilities of the MATLAB IDE (the ML command line desktop). In this sense,
- all **GMT** options are put in a single text string that is passed, plus the data itself when it applies,
- to the ``gmt()`` command. For example to reproduce the CookBook example of an Hemisphere map using a
- Azimuthal projection
- .. code-block:: none
- gmt('coast -Rg -JA280/30/3.5i -Bg -Dc -A1000 -Gnavy -P > GMT_lambert_az_hemi.ps')
- but that is not particularly interesting as after all we could do the exact same thing on the a shell
- command line. Things start to get interesting when we can send data *in* and *out* from MATLAB to
- **GMT**. So, consider the following example
- .. code-block:: none
- t = rand(100,3) * 150;
- G = gmt('surface -R0/150/0/150 -I1', t);
- Here we just created a random data *100x3* matrix and told **GMT** to grid it using it's program
- *surface*. Note how the syntax follows closely the standard usage but we sent the data to be
- interpolated (the *t* matrix) as the second argument to the ``gmt()`` function. And on return we
- got the *G* variable that is a structure holding the grid and it's metadata. See the
- :ref:`grid struct <grid-struct>` for the details of its members.
- Imagining that we want to plot that random data art, we can do it with a call to *grdimage*\ , like
- .. code-block:: none
- gmt('grdimage -JX8c -Ba -P -Cblue,red > crap_img.ps', G)
- Note that we now sent the *G grid* as argument instead of the **-G**\ *gridname* that we would have
- used in the command line. But for readability we could well had left the **-G** option in command string. E.g:
- .. code-block:: none
- gmt('grdimage -JX8c -Ba -P -Cblue,red -G > crap_img.ps', G)
- While for this particular case it makes no difference to use or not the **-G**, because there is **only**
- one input, the same does not hold true when we have more than one. For example, we can run the same example
- but compute the CPT separately.
- .. code-block:: none
- cpt = gmt('grd2cpt -Cblue,red', G);
- gmt('grdimage -JX8c -Ba -P -C -G > crap_img.ps', G, cpt)
- Now we had to explicitly write the **-C** & **-G** (well, actually we could have omitted the **-G** because
- it's a mandatory input but that would make the things more confusing). Note also the order of the input data variables.
- It is crucial that any *required* (primary) input data objects (for grdimage that is the grid) are given before
- any *optional* (secondary) input data objects (here, that is the CPT object). The same is true for modules that
- return more than one item: List the required output object first followed by optional ones.
- To illustrate another aspect on the importance of the order of input data let us see how to plot a sine curve
- made of colored filled circles.
- .. code-block:: none
- x = linspace(-pi, pi)'; % The *xx* var
- seno = sin(x); % *yy*
- xyz = [x seno seno]; % Duplicate *yy* so that it can be colored
- cpt = gmt('makecpt -T-1/1/0.1'); % Create a CPT
- gmt('plot -R-3.2/3.2/-1.1/1.1 -JX12c -Sc0.1c -C -P -Ba > seno.ps', xyz, cpt)
- The point here is that we had to give *xyz, cpt* and not *cpt, xyz* (which would error) because optional input data
- associated with an option letter **always comes after the required input**.
- To plot text strings we send in the input data wrapped in a cell array. Example:
- .. code-block:: none
- lines = {'5 6 Some label', '6 7 Another label'};
- gmt('text -R0/10/0/10 -JM6i -Bafg -F+f18p -P > text.ps', lines)
- and we get back text info in cell arrays as well. Using the *G* grid computed above we can run *gmtinfo* on it
- .. code-block:: none
- info = gmt('info', G)
- At the end of an **GMT** session work we call the internal functions that will do the house keeping of
- freeing no longer needed memory. We do that with this command:
- .. code-block:: none
- gmt('destroy')
- So that's basically how it works. When numeric data have to be sent *in* to **GMT** we use
- MATLAB variables holding the data in matrices or structures or cell arrays, depending on data type. On
- return we get the computed result stored in variables that we gave as output arguments.
- Things only complicate a little more for the cases where we can have more than one *input* or
- *output* arguments, since the order or the arguments matter (Remember the rule: primary first, secondary second).
- The file *gallery.m*, that reproduces the examples in the Gallery section of the GMT
- documentation, has many (not so trivial) examples on usage of the MEX GMT API.
- .. _grid-struct:
- .. code-block:: none
- proj4 % Projection string in PROJ4 syntax (Optional)
- wkt % Projection string in WKT syntax (Optional)
- range % 1x6 vector with [x_min x_max y_min y_max z_min z_max]
- inc % 1x2 vector with [x_inc y_inc]
- registration % Registration type: 0 -> Grid registration; 1 -> Pixel registration
- nodata % The value of nodata
- pad % A scalar pad. Optional and only when direction is to GMT. (new in 1.1)
- title % Title (Optional)
- comment % Remark (Optional)
- command % Command used to create the grid (Optional)
- datatype % 'float' or 'double'
- x % [1 x n_columns] vector with XX coordinates
- y % [1 x n_rows] vector with YY coordinates
- z % [n_rows x n_columns] grid array
- x_unit % Units of XX axis (Optional)
- y_unit % Units of YY axis (Optional)
- z_unit % Units of ZZ axis (Optional)
- layout % A three character string describing the image memory layout
- Definition of the *grid structure* that holds a grid and its metadata.
- .. _img-struct:
- .. code-block:: none
- proj4 % Projection string in PROJ4 syntax (Optional)
- wkt % Projection string in WKT syntax (Optional)
- range % 1x6 vector with [x_min x_max y_min y_max z_min z_max]
- inc % 1x2 vector with [x_inc y_inc]
- registration % Registration type: 0 -> Grid registration; 1 -> Pixel registration [Default]
- nodata % The value of nodata
- pad % A scalar pad (optional). Use only when direction is to GMT and Image will be projected ([2]) (new in 1.1)
- title % Title (Optional)
- comment % Remark (Optional)
- command % Command used to create the image (Optional)
- datatype % 'uint8' or 'int8' (needs checking)
- x % [1 x n_columns] vector with XX coordinates
- y % [1 x n_rows] vector with YY coordinates
- image % [n_rows x n_columns] image array
- x_unit % Units of XX axis (Optional)
- y_unit % Units of YY axis (Optional)
- z_unit % Units of ZZ axis (Optional)
- colormap % A color palette structure
- alpha % A [n_rows x n_columns] alpha array
- layout % A four character string describing the image memory layout
- Definition of the *image structure* that holds an image and its metadata.
- .. _cpt-struct:
- .. code-block:: none
- colormap % A [ncolors x 3] matrix with colorvalues in [0-1] range
- alpha % A [ncolors x 1] vector with transparency (alpha) values in [0-1] range (optional)
- range % A [ncolors x 2] matrix with z_low z_high for each 'color' interval
- minmax % A 2 elements vector with [z_min z_max]
- bnf % A [3 x 3] matrix with color values in [0-1] range for background, foreground, and NaN-nodes
- depth % Depth of the CPT (1, 8, 24)
- hinge % The z-value for split colormaps [NaN means no hinge]
- cpt %
- model % Either RGB oy CMYK
- comment % Remark (Optional)
- Definition of the *CPT structure* that holds the color palette.
- .. _PS-struct:
- .. code-block:: c
- postscript % A string with all the PostScript code as text
- length % Number of bytes in the string
- mode % 1 means has header only, 2 means has trailer only, 3 means complete
- comment % Remark (Optional)
- Definition of the *PS structure* that holds the PostScript plot.
|