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.

The ESTRUCTURA URBANA group contains the four foundational planning-boundary layers for the department of Godoy Cruz. These polygon and line layers define the legal and administrative geography of the municipality: the nine departmental districts established by the most recent district ordinance, the consolidated neighbourhood fabric, the official urban perimeter, and the full land-use zoning scheme. Because these layers form the spatial skeleton on which all other thematic data is placed, they are typically activated first when beginning an analysis session.

Distritos (Ordenanza N° 7124/2021)

Layer control label: Distritos (Ordenanza N° 7124/2021) Legal basis: Ordenanza Municipal N° 7124/2021, which redrew the departmental district boundaries currently in force. What it shows: Nine polygon features representing the departmental districts (distritos departamentales) of Godoy Cruz. Each district is rendered in a distinct colour derived from its qc_id property so that adjoining districts are visually separated at a glance. Style: The estiloDistritosDepartamentales() function iterates over each feature and applies a unique stroke colour with fillOpacity: 0.25, keeping underlying base-map detail readable. The nine colours assigned by qc_id are:
qc_idColour
0#93278f (purple)
1#0e0ef0 (blue)
2#efba00 (amber)
3#ec6726 (orange)
4#139b48 (green)
5#941313 (dark red)
6#105689 (navy)
7#41b6a5 (teal)
8#ff3eb2 (pink)
Popup: Provided by agregarPopupDistritosDepartamentales, which displays the district name (Nombre_1) and its area in square kilometres (Area_km2).
function agregarPopupDistritosDepartamentales(feature, layer) {
    if (feature.properties && feature.properties.Nombre_1) {
        layer.bindPopup("<strong>" + feature.properties.Nombre_1 + "</strong><br/>" + feature.properties.Area_km2);
    }
}

Barrios Consolidados

Layer control label: Barrios Consolidados What it shows: Polygon features delineating the consolidated neighbourhood units (barrios consolidados) recognised by municipal planning. These represent established urban fabric that is distinguished from informal settlements or expansion areas. Style: No explicit setStyle call is made at initialisation; the layer renders with Leaflet’s default blue stroke and semi-transparent fill. Popup: Provided by agregarPopupBarriosConsolidados, which shows the neighbourhood name from the Nombre_1 property.
function agregarPopupBarriosConsolidados(feature, layer) {
    if (feature.properties && feature.properties.Nombre_1) {
        layer.bindPopup("<strong>" + feature.properties.Nombre_1 + "</strong>");
    }
}

Límite Urbano (Ordenanza Nº 7074/2020)

Layer control label: Límite Urbano (Ordenanza Nº 7074/2020) Legal basis: Ordenanza Municipal Nº 7074/2020, which defines the current official urban perimeter of Godoy Cruz. What it shows: A line layer tracing the outer urban boundary that separates the urbanised area from the piedemonte and rural zones. It is the definitive legal limit for urban expansion. Style: Applied with a flat red stroke (color: 'red') at Leaflet’s default line weight, making the boundary clearly visible against both satellite and street base maps. Popup: Uses agregarPopupfarmacias (a generic name-display function), which shows the Nombre property of each feature if present.

Zonificación (Ordenanza Nº 4947/03)

Layer control label: Zonificación (Ordenanza Nº 4947/03) Legal basis: Ordenanza Municipal Nº 4947/03, the principal land-use zoning ordinance for Godoy Cruz. What it shows: Polygon features covering the full zoning map of the department. Each polygon carries a Layer property identifying its zone type (e.g., RESIDENCIAL, COMERCIAL, INDUSTRIAL1, PARQUE RECREACION). The estilozoni() function assigns a distinct fill colour to each zone category, and the popup displays the zone name directly. Style: The estilozoni() function applies per-feature colouring with fillOpacity: 0.35:
Zone (Layer value)Colour
CEMENTERIO#202bf1
CENTRO CIVICO#035d04
COMERCIAL#0055ff
COMERCIAL MIXTA#e9e517
EXTENSION INDUSTRIAL#6619ff
INDUSTRIAL1#dcc587
INDUSTRIAL2#6a9cd1
PARQUE RECREACION#1ed736
CULTURAL#c074d1
RESIDENCIAL#48ccdb
RESIDENCIAL MIXTA#e95f28
Popup: Provided by agregarPopupzoni, which binds the zone label from the Layer property.
function agregarPopupzoni(feature, layer) {
    if (feature.properties && feature.properties.Layer) {
        layer.bindPopup("<strong>" + feature.properties.Layer + "</strong>");
    }
}
Layer initialisation:
zonificacion = L.geoJson(Zonificacion, {
    onEachFeature: agregarPopupzoni
});
After initialisation, estilozoni() is called during map setup to walk every feature and apply the colour-coded style based on the Layer property value.

Build docs developers (and LLMs) love