Skip to content

Instantly share code, notes, and snippets.

View datagistips's full-sized avatar

mathieu rajerison datagistips

View GitHub Profile
library(XML)
library(RCurl)
library(rgdal)
source("DORLING.R")
# GEOGLA DEPARTEMENTS
deps <- readOGR(".", "DEPARTEMENT.shp")
# LIST URLS
library(rgeos)
library(spdep)
# DISTANCE
distance <- function(pt1, pt2) {
dx <- pt1[1] - pt2[1]
dy <- pt1[2] - pt2[2]
l <- sqrt(dx^2 + dy^2)
library(rgeos)
library(maptools)
load("F:/DATAS/DEPARTEMENT.rda")
foret <- read.csv2("IN/foret.csv")
######################
## SCALED CARTOGRAM ##
Map {
background-color: rgb(50,50,50);
}
#deps {
line-color:white;
line-width:1;
line-opacity:.8;
@datagistips
datagistips / alphabetical_atlas.R
Last active December 11, 2015 17:38
Pays rangés selon l'alphabet
library(rgdal)
countries <- readOGR("D:/DATAS/NATURAL EARTH/ne_110m_admin_0_countries_lakes/ne_110m_admin_0_countries_lakes.shp", "ne_110m_admin_0_countries_lakes")
first <- substr(as.character(countries$name),0,1) # on détermine la première lettre du nom du pays
first[grep("Sahara", countries$name)] <- "S"
first[grep("Guinea", countries$name)] <- "G"
first[grep("Korea", countries$name)] <- "K"
first[grep("Congo", countries$name)] <- "C"
first[grep("Antarctic", countries$name)] <- "A"
@datagistips
datagistips / per.area_atlas.R
Last active December 11, 2015 13:08
Computing Linear Shape Metric
library(rgdal)
library(spatstat)
library(maptools)
library(rgeos)
setwd("D:/METHODES/1211_ELONGATEDCOUNTRIES/")
countries <- readOGR("D:/DATAS/NATURAL EARTH/ne_110m_admin_0_countries_lakes/ne_110m_admin_0_countries_lakes.shp", "ne_110m_admin_0_countries_lakes")
@datagistips
datagistips / city_names_wordcloud.R
Created September 16, 2012 21:04
city names wordcloud
library(rgdal)
library(wordcloud)
library(reshape)
library(maptools)
library(classInt)
library(FactoMineR)
library(FNN)
### LOAD DATA ###
f <- readOGR(".", "COMMUNE")
@datagistips
datagistips / neighbor.R
Created August 10, 2012 15:38
Neighbord relationships below a certain distance threshold
library(rgdal)
library(spdep)
pol <- readOGR(".", "buildings") # read the data using rgdal
nb <- poly2nb(pol, snap=50) # create a graph. Two buildings are connected if they are 50 meters apart from one another.
pol$nNeigh <- card(nb) # card(nb) gives the neighbor counts
pol$neighGroup <- n.comp.nb(nb)$comp.id # n.comp.nb contains the informations about the disconnected compontents
@datagistips
datagistips / gist:3315054
Created August 10, 2012 15:29
Sextante QGIS - R script for analysing neighbord relationships below a certain distance threshold
##[datagistips]=group
##polygons=vector
##distance=number 10
##output=output vector
library("spdep")
nb = poly2nb(polygons, snap=distance)
polygons[["nNeigh"]] = card(nb)
@datagistips
datagistips / res_leg_2nd_T.R
Created June 20, 2012 16:27
Fichier des gagnants aux élections législatives 2nd Tour d'après le fichier de Data Publica
library(gdata)
library(stringr)
#Fichier source : http://www.data-publica.com/data/13622--resultat-par-circonscription-du-2nd-tour-des-elections-legislatives-17-juin-2012
res <- read.xls("IN/Leg 2012 Résultats CirLG FE T2.xls") # résultats législatifs
###########################
# RECUPERATION DU GAGNANT #
###########################