diff --git a/docs/graficos/hidraulicas.html b/docs/graficos/hidraulicas.html index 68186c1..4209ed7 100755 --- a/docs/graficos/hidraulicas.html +++ b/docs/graficos/hidraulicas.html @@ -1,6 +1,7 @@ + diff --git a/docs/graficos/hidraulicas.js b/docs/graficos/hidraulicas.js index 82b4cd7..10a534f 100644 --- a/docs/graficos/hidraulicas.js +++ b/docs/graficos/hidraulicas.js @@ -105,6 +105,22 @@ function draw() { } } } + // Titulo + fill(255,200); + stroke(155); + rect(605, 365, 170, 130); + fill(0); + textStyle(BOLD); + textSize(12); + text("NÚMERO DE CANALES Y ACEQUIAS POR CONFEDERACION HIDRÁULICA", 620, 380, 150, 80); + textStyle(NORMAL); + textSize(11); + noStroke(); + fill(155,0,0); + text("Interacción con el ratón:",620, 430, 150, 20); + fill(0); + text("Kilómetros de canales y acequias construidos en cada una de las cuencas durante la colonización", 620, 445, 150, 80); + } function compara(c1, c2) { diff --git a/docs/graficos/mecanizacion.html b/docs/graficos/mecanizacion.html index f9d820f..892b522 100644 --- a/docs/graficos/mecanizacion.html +++ b/docs/graficos/mecanizacion.html @@ -1,6 +1,7 @@ + diff --git a/docs/graficos/mecanizacion.js b/docs/graficos/mecanizacion.js index 3b49d38..09d75ee 100644 --- a/docs/graficos/mecanizacion.js +++ b/docs/graficos/mecanizacion.js @@ -94,6 +94,22 @@ function draw() { fill(0); text(nbr, x[n], y[n]-7); } + + // Titulo + fill(255,200); + stroke(155); + rect(605, 365, 170, 130); + fill(0); + textStyle(BOLD); + textSize(12); + text("NÚMERO DE TRACTORES Y COSECHADORAS POR POBLADO DE COLONIZACIÓN", 620, 380, 150, 80); + textStyle(NORMAL); + textSize(11); + noStroke(); + fill(155,0,0); + text("Interacción con el ratón:",620, 430, 150, 20); + fill(0); + text("Número medio de tractores y cosechadoras por poblado en la cuenca seleccionada", 620, 445, 150, 80); } function compara(c1, c2) { diff --git a/docs/graficos/parcelas.js b/docs/graficos/parcelas.js index d0456b3..db27094 100644 --- a/docs/graficos/parcelas.js +++ b/docs/graficos/parcelas.js @@ -31,7 +31,7 @@ function setup() { var framesWidth = document.getElementById("#p5").offsetWidth; var framesHeight = document.getElementById("#p5").offsetHeight; - createCanvas(framesWidth,framesHeight); + createCanvas(800, 519); nombres = new Array("Norte","Duero","Ebro","Pirineo","Jucar","Tajo","Guadiana","Guadalquivir","Sur", "Segura", "Baleares y Canarias"); colores = new Array("#f00","#0f0","#00f","#ff0","#0ff","#a00","#0a0","#00a","#aa0","#0aa", "#aaa"); x = new Array(158,243, 429, 597, 432, 268, 226, 253, 362,432, 611); @@ -115,7 +115,3 @@ function draw() { function compara(c1, c2) { return red(c1) == red(c2) && green(c1) == green(c2) && blue(c1) == blue(c2); } - -function windowResized() { - resizeCanvas(windowWidth, windowHeight); -}