Argenmap includes a built-in geoprocessing panel that lets users run spatial analysis operations against OGC Web Processing Service (WPS) endpoints. Contour generation and flood simulation are executed server-side on IGN’s GeoServer infrastructure and return results as GeoJSON or image overlays that are added directly to the map as new layers. The buffer process runs entirely in the browser using Turf.js, requiring no network call to a WPS server. To open the geoprocessing panel, click the geoprocessing button in the toolbar. Users select a process from the dropdown, draw a rectangle or polyline on the map to define the area of interest, configure any process-specific parameters, and click Ejecutar. The result is automatically added to the Geoprocesos section of the layer panel. The feature is enabled or disabled globally withDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/ign-argentina/argenmap/llms.txt
Use this file to discover all available pages before exploring further.
geoprocessing.isActive in preferences.json.
Available Processes
1. Contour Lines (contour)
Generates contour lines from the ALOS DEM elevation model over a user-drawn rectangle. Draw a rectangle on the map covering the area of interest — the rectangle must cover no more than 100 km². Enter the contour interval (equidistance) in meters, then click Ejecutar. The WPS call returns contour GeoJSON, which is styled and added as a new layer in the Geoprocesos section.
The process calls IGN’s GeoServer WPS at:
alos_unificado.
Configurable styles (applied only to the contour process):
Hex color for regular contour lines. Default:
#e0b44c.Stroke width in pixels for regular contour lines. Default:
0.8.Interval in meters between index (directrix) contours. Default:
500.Hex color for index contour lines. Default:
#967529.Stroke width in pixels for index contour lines. Default:
1. Note: the field name is d_weigth (source spelling) in preferences.json.Leaflet
smoothFactor applied to the contour polyline layer. Higher values produce smoother but less accurate lines. Default: 1.7.2. Flood Simulation / Cota (waterRise)
Simulates water level rise over an area. This process requires a Contour Lines layer to already exist on the map — users select one from the Capa dropdown, then use the slider to choose a water elevation level. The WPS returns a raster image overlay showing the flooded area at the selected elevation.
WPS endpoint:
geoprocesos:alos_unificado.
The styles object defined for contour does not apply to this process. No styles block is configured for waterRise in availableProcesses.
3. Buffer / Influence Area (buffer)
Generates a buffer polygon around the features of an active layer within a user-drawn selection rectangle. The buffer distance is entered in meters; the selection rectangle may cover up to 1,000 km². This process runs entirely client-side using Turf.js — no WPS endpoint is required.
For layers loaded from local files, Argenmap calls turf.buffer() directly on the GeoJSON features that intersect the drawn rectangle. For WMS layers with a remote host, Argenmap first fetches the features via WFS, then applies the buffer calculation in the browser with Turf.js.
No baseUrl is configured for this process in availableProcesses since it requires no server call.
4. Elevation Profile (elevationProfile)
Draws a cross-section elevation chart along a user-drawn polyline. Draw a polyline on the map, select it from the Capa dropdown, and execute to generate an elevation profile chart.
No baseUrl is configured for this process in availableProcesses.
Configuration Reference
The full geoprocessing block inpreferences.json controls all aspects of the panel:
geoprocessing object:
Enables or disables the entire geoprocessing feature. When
false, the geoprocessing button does not appear in the toolbar.Tooltip text shown on the geoprocessing toolbar button.
Font Awesome class for the toolbar button icon (e.g.
"fa fa-cog").Title shown at the top of the geoprocessing modal dialog.
Label displayed above the area-selection drawing instructions inside the modal. Default:
"Areas a procesar".availableProcesses[]:
Human-readable name shown in the process selector dropdown.
Internal process identifier. Must be one of:
"contour", "waterRise", "buffer", "elevationProfile".Full WPS endpoint URL including
service=WPS&version=1.0.0 parameters. Required for contour and waterRise. Not used for buffer (client-side) or elevationProfile.Name of the DEM or raster layer on the WPS server to use as input data. Required for
contour and waterRise.Prefix string prepended to result layer names in the panel (e.g.
"curvas_de_nivel_").Style overrides for the result layer. Only applicable to the
contour process. No other processes use this field.The Contour Lines and Flood Simulation processes send requests to IGN’s GeoServer instances at
imagenes.ign.gob.ar. These operations require an active internet connection and that the IGN WPS servers are reachable from the user’s network.