mat2grid
G = mat2grid(mat; reg=nothing, x=[], y=[], v=[], hdr=nothing, proj4::String="",
wkt::String="", title::String="", rem::String="", cmd::String="",
names::Vector{String}=String[], scale::Float32=1f0, offset::Float32=0f0)
Take a 2/3D mat
array and a hdr
1x9 [xmin xmax ymin ymax zmin zmax reg xinc yinc] header descriptor and return a grid GMTgrid type. Alternatively to hdr
, provide a pair of vectors, x
& y
, with the X and Y coordinates. Optionally add a v
vector with vertical coordinates if mat
is a 3D array and one wants to create a cube
. Optionally, the HDR arg may be omitted and it will computed from mat
alone, but then x=1:ncol, y=1:nrow
When hdr
is not used, reg=nothing
(the default) means create a gridline registration grid and reg=1
, or reg="pixel"
a pixel registered grid.
For 3D arrays the names
option is used to give a description for each layer (also saved to file when using a GDAL function).
The scale
and offset
options are used when mat
is an Integer type and we want to save the grid with a scale/offset.
Other methods of this function do:
G = mat2grid([val]; hdr=hdr_vec, reg=nothing, proj4::String="", wkt::String="", title::String="", rem::String="")
Create Float GMTgrid with size, coordinates and increment determined by the contents of the HDR var. This array, which is now MANDATORY, has either the same meaning as above OR, alternatively, containng only [xmin xmax ymin ymax xinc yinc] val
is the value that will be fill the matrix (default val = Float32(0)
). To get a Float64 array use, for example, val = 1.0
, Any other non Float64 will be converted to Float32. Example: mat2grid(1, hdr=[0. 5 0 5 1 1])
G = mat2grid(f::Function, x, y; reg=nothing, proj4::String="", wkt::String="", epsg::Int=0, title::String="", rem::String="")
Where F is a function and X,Y the vectors coordinates defining it's domain. Creates a Float32 GMTgrid with size determined by the sizes of the X & Y vectors.
Example
f(x,y) = x^2 + y^2;
G = mat2grid(f, x = -2:0.05:2, y = -2:0.05:2)
The method
G = mat2grid(f::String, ...)
Where f is a pre-set function name. Currently available:
"ackley", "eggbox", "sombrero", "parabola" and "rosenbrock"
X,Y are vectors coordinates defining the function's domain, but default values are provided for each function. creates a Float32 GMTgrid. Example: G = mat2grid("sombrero")
See Also
These docs were autogenerated using GMT: v1.11.0