French dataset: population and GPS coordinates
By arthur charpentier on Thursday, May 24 2012, 16:42 - Informatique / R - Permalink

A short post today based on recent work by @3wen (Ewen Gallic, graduate Student in Rennes, spending a year in Montreal). Since we were working on a detailed French dataset (per commune), we needed a dataset containing a list all communes, with population and location. GPS coordinates were extracted from Google, using the following php file, inspired by http://www.andrew-kirkpatrick.com/ on Google geocoding api with php webpage. Population was interpolated from INSEE's datasets, i.e. http://www.insee.fr/ (since data are over a 35 year period, from 1975 to 2010, changes have been taken into account as carefully are possible - e.g. merges and splits of cities - based on that description). A spline model has been used for all cities (with three degrees of freedom, and null and negative interpolation became one, since we'll be using loglinear models afterwards). Names are from that dataset, still on INSEE's website, http://www.insee.fr/.
A zipped file can be downloaded here popfr19752010.zip, but it is also possible to use the code below (it is a 24Mo dataset). Since it was hard to find such a dataset online (different files can be found, but we found none with population and location), we have decided to upload that dataset. Please let us know if there are problems with those data...
> base=read.csv(
+ "http://freakonometrics.free.fr/popfr19752010.csv", + header=TRUE)
Using that code, it is possible to locate all the communes in France (metropolitan), for instance
> library(maps) > map("france") > points(base$long,base$lat,cex=.1,col="red",pch=19) > points(base$long,base$lat,cex=2*base$pop_2010/ + max(base$pop_2010),col="blue",pch=19)
|
|

- reg : code region INSEE (character)
- dep : code departement INSEE (character, corse 201 et 202 au lieu de 2A et 2B)
- com : code commune INSEE (character)
- article : article du nom de la commune (character)
- com_nom : nom de la commune (character)
- long : longitude (numeric)
- lat : latitude (numeric)
- pop_i : estimation de la population à la date i (ramenée à 1 si <=0), i=1975,...,2010 (numeric)









Comments
A t-on le droit d'utiliser la geolocalisation de google ? Et ensuite de republier en CC ? Il y a un problème de licence là non ?
Sinon le fichier là contient sans doute les infos dont vous aviez besoin http://professionnels.ign.fr/docume... et dispo sous licence ouverte
effectivement, le fichier est en ligne sur
http://professionnels.ign.fr/DISPLA...
tous les fichiers qu'on avait vu pour l'instant étaient trop incomplet (manque des villes ou pas de code INSEE). Il faudrait qu'on croise les deux pour voir précisément ce qui est dedans,
merci
Interesting. From these data, we can calculate mean population location and its evolution.Considering Metropolitan France except Corsia, while in 1975 and 2010, the mean population location of France was near from Bourges, it's in 2010 more in southwest compared to 1975.
Here are the coordinates of the mean population center of France ::
1975 : Lat : 47,270 Long : 2,633
2010 : Lat: 47,123 Long : 2,623
Howdy! Someone in my Facebook group shared this site with us so I came to look it over. Awesome ! Thanks
Wow, this piece of writing is good, my younger sister is analyzing such things, thus I am going
to tell her.