Skip to content

g.isis3mt

Generates an ISIS3 map template file according to the current GRASS GIS coordinate reference system.

g.isis3mt [-a] body=string out=string [outres=float] [restype=string] [--verbose] [--quiet] [--qq] [--ui]

Example:

g.isis3mt body=MOON out=string

grass.script.run_command("g.isis3mt", body, out, outres=None, restype="mpp", flags=None, verbose=None, quiet=None, superquiet=None)

Example:

gs.run_command("g.isis3mt", body="MOON", out="string")

grass.tools.Tools.g_isis3mt(body, out, outres=None, restype="mpp", flags=None, verbose=None, quiet=None, superquiet=None)

Example:

tools = Tools()
tools.g_isis3mt(body="MOON", out="string")

This grass.tools API is experimental in version 8.5 and expected to be stable in version 8.6.

Parameters

body=string [required]
    Target planetary body
    Allowed values: MOON, MERCURY, VENUS, MARS, Phobos, Deimos, JUPITER, Amalthea, Io, Europa, Ganymede, Callisto, SATURN, Janus, Epimetheus, Mimas, Enceladus, Tethys, Dione, Rhea, Titan, Hyperion, Iapetus, URANUS, Miranda, Ariel, Umbriel, Titania, Oberon, NEPTUNE
out=string [required]
    Filename for the ISIS3 maptemplate to be generated
outres=float
    Resolution of the ISIS3 projected data (default is: camera resolution)
restype=string
    Resolution type: meters per pixel (mpp) or pixels per degree (ppd)
    Allowed values: mpp, ppd
    Default: mpp
-a
    Align ISIS3 data to the extents of the current GRASS region
--help
    Print usage summary
--verbose
    Verbose module output
--quiet
    Quiet module output
--qq
    Very quiet module output
--ui
    Force launching GUI dialog

body : str, required
    Target planetary body
    Allowed values: MOON, MERCURY, VENUS, MARS, Phobos, Deimos, JUPITER, Amalthea, Io, Europa, Ganymede, Callisto, SATURN, Janus, Epimetheus, Mimas, Enceladus, Tethys, Dione, Rhea, Titan, Hyperion, Iapetus, URANUS, Miranda, Ariel, Umbriel, Titania, Oberon, NEPTUNE
out : str, required
    Filename for the ISIS3 maptemplate to be generated
    Used as: output
outres : float, optional
    Resolution of the ISIS3 projected data (default is: camera resolution)
restype : str, optional
    Resolution type: meters per pixel (mpp) or pixels per degree (ppd)
    Allowed values: mpp, ppd
    Default: mpp
flags : str, optional
    Allowed values: a
    a
        Align ISIS3 data to the extents of the current GRASS region
verbose : bool, optional
    Verbose module output
    Default: None
quiet : bool, optional
    Quiet module output
    Default: None
superquiet : bool, optional
    Very quiet module output
    Default: None

body : str, required
    Target planetary body
    Allowed values: MOON, MERCURY, VENUS, MARS, Phobos, Deimos, JUPITER, Amalthea, Io, Europa, Ganymede, Callisto, SATURN, Janus, Epimetheus, Mimas, Enceladus, Tethys, Dione, Rhea, Titan, Hyperion, Iapetus, URANUS, Miranda, Ariel, Umbriel, Titania, Oberon, NEPTUNE
out : str, required
    Filename for the ISIS3 maptemplate to be generated
    Used as: output
outres : float, optional
    Resolution of the ISIS3 projected data (default is: camera resolution)
restype : str, optional
    Resolution type: meters per pixel (mpp) or pixels per degree (ppd)
    Allowed values: mpp, ppd
    Default: mpp
flags : str, optional
    Allowed values: a
    a
        Align ISIS3 data to the extents of the current GRASS region
verbose : bool, optional
    Verbose module output
    Default: None
quiet : bool, optional
    Quiet module output
    Default: None
superquiet : bool, optional
    Very quiet module output
    Default: None

Returns:

result : grass.tools.support.ToolResult | None
If the tool produces text as standard output, a ToolResult object will be returned. Otherwise, None will be returned.

Raises:

grass.tools.ToolError: When the tool ended with an error.

DESCRIPTION

g.isis3mt Generates an ISIS3 map template file according to the current GRASS projection parameters

NOTE

The ISIS3 user should use matchmap=yes in cam2mapi.

AUTHORS

Alessandro Frigeri, INA, Ispra, Italy
Added to GRASS 7 by Yann Chemin

SOURCE CODE

Available at: g.isis3mt source code (history)
Latest change: Thursday Feb 20 13:02:26 2025 in commit 53de819