Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Observatorio-GC/Nodos/llms.txt

Use this file to discover all available pages before exploring further.

Beyond the urban planning and POI groups found in the grouped layer control, index.html loads a substantial set of environmental and physical-geography datasets. These cover the hydrological system (rivers, canals, catchments, water infrastructure), geological and flood risk data, land-use and natural-zone classification, renewable energy infrastructure, and mountain tourism circuits in the piedemonte area. Many of these layers are initialised as Leaflet GeoJSON objects and have styling functions applied at map load, but some are not registered in the groupedOverlays control by default — they can be accessed programmatically or added to the control as needed.

Hydrology

Godoy Cruz’s water infrastructure and drainage network are represented across several datasets.

Red Hídrica

The primary hydrological network of watercourses crossing the department.
  • GeoJSON source: RedHidrica.js
  • Variable: hidrico
  • Style: Blue line — color: "#15c8f0"
  • Popup: agregarPopup — shows Nombre_1
hidrico = L.geoJson(RedHidrica, {
    onEachFeature: agregarPopup
}).setStyle({
    color: "#15c8f0"
});

Cuencas Hidrográficas

Hydrographic catchment (watershed) polygons, rendered with a striped L.StripePattern fill to indicate their extent without obscuring underlying layers.
  • GeoJSON source: Cuencashidrograficas.js
  • Variable: cuencas
  • Style: estilocuencas() — three catchments colour-coded by qc_id: #62b8e5 (id 1), #fbb75b (id 2), #f05d51 (id 3), each with a diagonal stripe pattern at fillOpacity: 0.75
  • Popup: agregarPopupcuencas — shows Nombre_1 and Superficie (area)

Canales Colectores e Hijuelas

Secondary irrigation and drainage channels (colectores and hijuelas).
  • GeoJSON source: CanalesColectoresHijuelas.js
  • Variable: CanalesColectoresHijuelas
  • Style: Blue line — color: "#1a6eeb"
  • Popup: agregarPopupCanalesColectoresHijuelas — shows Name

Canales

Principal canal network.
  • GeoJSON source: Canales.js
  • Variable: canales
  • Style: color: "blue"
  • Popup: agregarPopuppatrimoniales — shows Nombre, UBICACION, AÑO, and DISTRITO

Diques

Dams and water retention structures.
  • GeoJSON source: Diques.js
  • Variable: diques
  • Icon: iconoNaranja (orange Leaflet marker)
  • Popup: agregarPopuppatrimoniales — shows Nombre, UBICACION, AÑO, and DISTRITO

Reservorios

Water reservoirs.
  • GeoJSON source: Reservorios.js
  • Variable: reservorios
  • Style: Green polygon — color: "#729b6f", fillOpacity: 0.75
  • Popup: agregarPopupres — shows UBICACION

Redes de Aguas

Water supply network.
  • GeoJSON source: RedesdeAguas.js
  • Variable: redesagua
  • Style: estilored() — colour-coded by id: #62b8e5 (id 1), #fbb75b (id 2), #f05d51 (id 3)
  • Popup: agregarPopupredes — shows Estado (network status)

Sistema Cloacal

Sewage and wastewater network.
  • GeoJSON source: SistemaCloacal.js
  • Variable: sistcloacal
  • Style: estilocloacas() — same colour scheme as Redes de Aguas: #62b8e5, #fbb75b, #f05d51 by id
  • Popup: agregarPopupcloacas — shows Estado

Risk Layers

Inundación

Flood risk zones across the department.
  • GeoJSON source: Inundacion.js
  • Variable: inundacion
  • Style: estiloinundacion() — four risk levels colour-coded by id: #c2dffb (id 1, low), #73b3d8 (id 2, medium), #08306b (ids 3–4, high)
  • Popup: agregarPopupbarrios — shows Nombre_1 and Descrip

Vaso de Inundación Maure

The Maure river flood basin polygon.
  • GeoJSON source: VasoInundacionMaure.js
  • Variable: maure
  • Style: Orange polygon — color: "#f16e31", fillOpacity: 0.75
  • Popup: agregarPopupfarmacias — shows Nombre

Subcuencas Maure

Sub-catchment polygons for the Maure drainage basin.
  • GeoJSON source: SubcuencasMaure.js
  • Variable: subcuencas
  • Style: Light cyan polygon — color: "#a3f1f0", fillOpacity: 0.50
  • Popup: agregarPopupfarmacias — shows Nombre

Fallas (Geological Faults)

Active and potentially active geological fault lines.
  • GeoJSON source: Fallas.js
  • Variable: fall
  • Style: Orange line — color: "orange"
  • Popup: agregarPopupfallas — shows Falla (fault name), Tipo, Movimiento, and Actividad
function agregarPopupfallas(feature, layer) {
    if (feature.properties && feature.properties.Falla) {
        layer.bindPopup("<strong>" + feature.properties.Falla + "</strong><br/>" + "Tipo <strong>" + feature.properties.Tipo + "</strong><br/>" + "Movimiento <strong>" + feature.properties.Movimiento + "</strong><br/>" + "Actividad <strong>" + feature.properties.Actividad);
    }
}

Land Use

Suelo (Soil Classification)

Soil and terrain classification zones.
  • GeoJSON source: Suelo.js
  • Variable: suelo
  • Style: estilosuelo() — three categories by id: #d18581 (id 1), #64c589 (id 2), #dcc57d (id 3), each with fillOpacity: 0.75
  • Popup: agregarPopup — shows Nombre_1

Zona Natural

Natural and protected land areas in the piedemonte.
  • GeoJSON source: ZonaNatural.js
  • Variable: zonatu
  • Style: Red polygon — color: "#e31a1c", fillOpacity: 0.75
  • Popup: agregarPopupPiedemonte — shows Nombre and a link to the Plan Municipal de Ordenamiento Territorial (PMOT)

Zona Urbana

Urban land classification zones.
  • GeoJSON source: ZonaUrbana.js
  • Variable: zonaurb
  • Style: Yellow polygon — color: "#e2e21a", fillOpacity: 0.75
  • Popup: agregarPopupPiedemonte — shows Nombre and the PMOT link

Zona Ley 4886

Land areas governed by Provincial Law 4886 (piedemonte protection legislation).
  • GeoJSON source: ZonaLey4886.js
  • Variable: zonaley
  • Style: estiloley() — five greyscale levels by id: #fafafa, #9f9f9f, #b8b8b8, #d7d7d7, #848484
  • Popup: agregarPopupzonaLey4886 — shows REFERENCIA, NOMBRE, dominant land use (UsoDominan), conditional land use (UsoCondic), minimum density (DensidMin), and maximum density (DensidMax)

Renewable Energy

Paneles Solares

Individual solar panel installations mapped across the department.
  • GeoJSON source: PanelesSolares.js
  • Variable: paneles
  • Icon: iconoPanel (img/paneles_3.png)
  • Popup: agregarPopupPaneles — shows descriptio (installation description) and Name
function agregarPopupPaneles(feature, layer) {
    if (feature.properties && feature.properties.descriptio) {
        layer.bindPopup("<strong>" + feature.properties.descriptio + "</strong><br/>" + feature.properties.Name + "</strong><br/>");
    }
}

Granja Solar

The municipal solar farm polygon.
  • GeoJSON source: GranjaSolar.js
  • Variable: granjaSolar
  • Style: Orange polygon — color: "#e37e12", fillOpacity: 0.75
  • Popup: agregarPopupbarrios — shows Nombre_1 and Descrip

Tourism and Recreation Circuits

Sendero Geológico

The geological trail in the piedemonte area, showing points of geological interest.
  • GeoJSON source: SenderoGeologico.js
  • Variable: sendGeo
  • Style: estilosendero() — applies color: "#cf7601" (brown-orange) to all features with id: 1
  • Popup: agregarPopupfarmacias — shows Nombre

Circuito Cieneguita–Trancas

Mountain circuit route from Cieneguita to Trancas.
  • GeoJSON source: CieneguitaTrancas.js
  • Variable: circuitoCieneguita
  • Style: Green line — color: "#20e41d"
  • Popup: agregarPopupCircuitos — shows Nombre and Distancia

Circuito Trancas–Ignacio

Mountain circuit route from Trancas to Ignacio.
  • GeoJSON source: TrancasIgnacio.js
  • Variable: circuitoIgnacio
  • Style: color: "yellow"
  • Popup: agregarPopupCircuitos — shows Nombre and Distancia

Ripieras

Gravel road (ripiera) surfaces in the rural and piedemonte zones.
  • GeoJSON source: Ripieras.js
  • Variable: ripieras
  • Style: Red polygon — color: "#e31a1c", fillOpacity: 0.75
  • Popup: agregarPopupfarmacias — shows Nombre

Puestos

Rural outpost locations (puestos) in the mountain and piedemonte areas.
  • GeoJSON source: Puestos.js
  • Variable: puestos
  • Icon: iconoRojo (red Leaflet marker)
  • Popup: agregarPopupfarmacias — shows Nombre
Several of the layers described on this page — including the hydrological network, risk zones, and tourism circuits — are loaded and styled in index.html but are not registered in the groupedOverlays object that powers the visible layer control. They are available as JavaScript variables and can be added to the map or to the layer control programmatically using layer.addTo(map) or by including them in a groupedOverlays entry.

Build docs developers (and LLMs) love