mirror of
https://github.com/medialab-prado/poblados-colonizacion-colonias-penitenciarias.git
synced 2024-12-26 12:31:22 +01:00
Merge branch 'master' of github.com:medialab-prado/poblados-colonizacion-colonias-penitenciarias
This commit is contained in:
commit
33dd302376
2 changed files with 10 additions and 4 deletions
|
@ -1,6 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/p5.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.min.js"></script>
|
||||
<script src="parcelas.js"></script>
|
||||
|
|
|
@ -57,6 +57,7 @@ function draw() {
|
|||
//var nbr = String.prototype.toUpperCase(nombres[n]);
|
||||
if (dimr[n] != -1 || !compara(mc,color(colores[n]))) fill(0);
|
||||
else fill(0);
|
||||
noStroke();
|
||||
textStyle(BOLD);
|
||||
|
||||
text(nombres[n], x[n], y[n]-10);
|
||||
|
@ -65,19 +66,23 @@ function draw() {
|
|||
text("Plan inicial: " + dim[n]+" Has", x[n], y[n]+5);
|
||||
}
|
||||
else {
|
||||
noStroke();
|
||||
if (dimr[n] != -1) text("Parcela media: " + dimr[n]+" Has", x[n], y[n]+5);
|
||||
else text("(Sin datos)", x[n], y[n]+5);
|
||||
}
|
||||
}
|
||||
|
||||
// Titulo
|
||||
fill(255,200);
|
||||
stroke(155);
|
||||
rect(605, 375, 170, 120);
|
||||
fill(0);
|
||||
textStyle(BOLD);
|
||||
textSize(14);
|
||||
text("TAMAÑO MEDIO DE EXPLOTACIÓN ENTREGADA A COLONO", 600, 350, 150, 80);
|
||||
textSize(12);
|
||||
text("TAMAÑO MEDIO DE EXPLOTACIÓN ENTREGADA A COLONO", 620, 390, 150, 80);
|
||||
textStyle(NORMAL);
|
||||
textSize(14);
|
||||
text("Datos reales frente a datos según Plan de Colonización", 600, 430, 150, 80);
|
||||
textSize(11);
|
||||
text("Interacción con el ratón: Datos reales (verde) frente a datos según Plan de Colonización (blanco)", 620, 440, 150, 80);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue