GIS and Media fusion

"The explosive growth of the GeoWeb and geographic information has made GIS powerful media for the general public to communicate, but perhaps more importantly, GIS have also become media for constructive dialogs and interactions about social issues." - Sui & Goodchild

User Tools

Site Tools


ogo14:precarite.map

Projet Précarité.Map

Le point de départ était la BD précarité.ch brut de SQL et de CSV : precarite.dump.zip

Géocodage

  • Après géocodage avec MMQGIS::Geocode, voici un fichier SQL dump avec 123 lieux géocodés : precarite_geocoded.dump.sql.zip
  • Attention sur la table ad_geo :
    • elle contient les lieux avec l'attribut géographique the_geom
    • son attribut id est de type varchar et requiert donc un transtypage (ad_geo.id::int) pour effectuer la jointure avec la table ad_theme (voir la requête ci-dessous)
SELECT 
  ad_geo.title, 
  ad_geo.id, 
  theme.title
FROM 
  public.ad_geo, 
  public.ad_theme, 
  public.theme
WHERE 
  ad_geo.id::int = ad_theme.ad_id AND
  ad_theme.theme_id = theme.id;

Visualisation de lieux

  • cartographie thématique et interrogation des lieux

Edition de lieux

  • saisie/modification d'un nouveau lieu avec toutes les facilités de positionnement
ogo14/precarite.map.txt · Last modified: 2018/05/16 10:05 (external edit)