This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function clean($string) | |
{ | |
$string = strtr($string,"áéíóúÁÉÍÓÚñÑ.","aeiouAEIOUnN "); | |
// Remove all remaining other unknown characters | |
// $string = preg_replace('/[^a-zA-Z0-9\-]/', ' ', $string); | |
// $string = preg_replace('/^[\-]+/', '', $string); | |
// $string = preg_replace('/[\-]+$/', '', $string); | |
// $string = preg_replace('/[\-]{2,}/', ' ', $string); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------------------------------------------------------ | |
Introducción | |
Ariel Aizemberg / twitter: @aaizemberg | |
SIIA ( http://www.siia.gov.ar/ ) & Ministerio de Agricultura ( http://www.minagri.gob.ar/ ) | |
El proyecto RIDES esta parcialmente financiado por el SIIA @ MinAgri | |
En esta charla vamos ver como se hacen las aplicaciones interactivas en RIDES Tucumán. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# FOSS4G Conference | |
# | |
# Data Access Workshop | |
# | |
# Authors: Jeff McKenna - @mapserving | |
# Ariel Aizemberg - @aaizemberg | |
############################################################## | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ariel Aizemberg | |
@aaizemberg ( https://twitter.com/aaizemberg ) | |
http://www.linkedin.com/in/arielaizemberg | |
Introducción | |
Que es D3 | |
Quién creó esta librería | |
Mirar algunos ejemplos de la galería | |
https://github.com/mbostock/d3/wiki/Gallery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://geonode.org/ | |
google --> "foss4g 2013 geonode" | |
W7: GeoNode, A complete SDI | |
http://2013.foss4g.org/conf/programme/workshops/7/ | |
W10: GeoNode Developers Workshop | |
http://2013.foss4g.org/conf/programme/workshops/6/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
topics | |
data scraping (http://cippec.org/data/ --> view source --> ...) | |
open data / okfn-ar (indec / registro para bajar los datos) | |
data mining | |
reducción de dimensiones | |
clustering (kmeans) | |
data visualization | |
thematic maps --> http://en.wikipedia.org/wiki/Thematic_map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Herramientas/Links que vamos a utilizar durante el taller: | |
* R | |
* Processing & Processing.js | |
* D3.js (?) --> https://gist.github.com/aaizemberg/6153101 | |
* QGIS ó QuantumGIS | |
* Tableau Public | |
... | |
* http://www.w3schools.com/ | |
* http://en.wikipedia.org/wiki/Scalable_Vector_Graphics | |
* JSBIN --> http://jsbin.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Cuarteto de Anscombe</title> | |
<meta charset=utf-8 /> | |
<script src="//d3js.org/d3.v5.min.js"></script> | |
</head> | |
<body> | |
<p> | |
<button id="i" type="button">I</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<meta charset=utf-8 /> | |
<title>tabs</title> | |
</head> | |
<body> | |
<button type="button" id="b1">tab 1</button> | |
<button type="button" id="b2">tab 2</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<meta charset=utf-8 /> | |
<title>puntos</title> | |
</head> | |
<body> | |
<button id="up" type="button">Up</button> | |
<button id="down" type="button">Down</button> |
OlderNewer