Stories
Slash Boxes
Comments

In+ersec+ion for Spatial People

Mirone: MATLAB Tool Using GDAL

posted by Satri on Tuesday February 05, @06:41AM   Printer-friendly   Email story  Permalink  Trackback URI  Slashdotthis  Diggthis  Del.icio.us
from the another-tool-in-the-toolbox dept.
A month ago PerryGeo discussed a free geodata manipulation software named Mirone especially useful to those who use MATLAB. From the Minore website: "Mirone is a Windows MATLAB-based framework tool that allows the display and manipulation of a large number of grid/images formats through its interface with the GDAL library. Its main purpose is to provide users with an easy-to-use graphical interface to manipulate GMT grids." For those with an interest in MATLAB, a look at Octave might be worthed.
Trackbacks:

Related Stories

Industry: The Generic Mapping Tools [+]
I discovered the Generic Mapping Tools (GMT) described below, while reading this article on GRASS GIS and GMT integration [pdf, 450k] from the new OSGeo Journal. On its website, GMT is introduced as: "GMT is an open source collection of ~60 tools for manipulating geographic and Cartesian data sets (including filtering, trend fitting, gridding, projecting, etc.) and producing Encapsulated PostScript File (EPS) illustrations ranging from simple x-y plots via contour maps to artificially illuminated surfaces and 3-D perspective views. GMT supports ~30 map projections and transformations and comes with support data such as coastlines, rivers, and political boundaries. [...] So far, over 1500 such blocks have been registered, representing more than 15,000 individual GMT users."
Industry: Major GDAL/OGR 1.5.0 Release, Proj.4 4.6.0 Also Released [+]
The OSGeo-Announce mailing list informs us the open source GDAL/OGR 1.5.0 has been released. Considering the almost ubiquitous use of GDAL in open source and proprietary software, this is doubtlessly great news, especially with the numerous new drivers included for 1.5.0. Mateusz Loskot provides a few statistics: "more than 420 tickets closed on the Trac, implemented 17 new GDAL drivers for raster formats, and 4 new OGR drivers for vectors, implemented 4 (5 counting RFC 16) RFC documents, added 5 new command line utilities, plus, big number of features and improvements in SWIG bindings for scripting languages." In related news, Proj.4 4.6.0 has also been released.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • Indierect means

    (Score:3, Informative)
    by Hamish (352) on Tuesday February 12, @07:12AM (#2193)
    Hi,

    If the above doesn't float our boat (say you don't use MS Windows) here is a solution using GRASS GIS: import raster image into the GIS with r.in.gdal, and export to Matlab with the r.out.mat module.

    the commands would look like this:

      r.in.gdal input=map.tif output=map
      g.region rast=map
      r.out.mat input=map output=map.mat


    In the .mat file is saved things like the map's geographic bounds and resolution. Octave is fully supported if you prefer that to ML.

    Hamish