#!/usr/bin/env python3 # -*- coding: utf-8 -*- # utilities for generating HTML indices # (c) 2003-2019 by the GRASS Development Team, Markus Neteler, Glynn Clements, Luca Delucchi import sys import os import string from datetime import datetime ## TODO: better fix this in include/Make/Html.make, see bug RT #5361 # exclude following list of modules from help index: exclude_mods = [ "i.find", "r.watershed.ram", "r.watershed.seg", "v.topo.check", "helptext.html"] # these modules don't use G_parser() desc_override = { "g.parser": "Provides automated parser, GUI, and help support for GRASS scipts.", "r.li.daemon": "Support module for r.li landscape index calculations." } ############################################################################ header1_tmpl = string.Template(\ r"""
Geographic Resources Analysis Support System, commonly referred to as GRASS GIS, is a Geographic Information System (GIS) used for geospatial data management and analysis, image processing, graphics/maps production, spatial modeling, and visualization. GRASS is currently used in academic and commercial settings around the world, as well as by many governmental agencies and environmental consulting companies.
This reference manual details the use of modules distributed with Geographic Resources Analysis Support System (GRASS), an open source (GNU GPLed), image processing and geographic information system (GIS).
""") #" overview_tmpl = string.Template(\ r"""Quick Introduction
|
Graphical User InterfaceDisplay |
GeneralAddonsProgrammer's Manual |
Raster processing |
3D raster processing |
Image processing |
Vector processing |
Database |
Temporal processing |
Cartography |
Miscellaneous & Variables |
Python |
wxGUI Graphical User Interface | wxGUI Graphical User Interface |
3D visualization suite | wxGUI.nviz 3D visualization suite |
database intro | database intro |
imagery intro | imagery intro |
projection intro | projection intro |
raster3D intro | raster3D intro |
raster intro | raster intro |
temporal intro | temporal intro |
vector intro | vector intro |
SQL | SQL |
Variables | Variables |
#
Main index | Topics index | Keywords index | Graphical index | Full index
© 2003-${year} GRASS Development Team, GRASS GIS ${grass_version} Reference Manual
${basename} | ${desc} |
${basename} | ${desc} |