Skip to content

Instantly share code, notes, and snippets.

View ThomasG77's full-sized avatar

Thomas Gratier ThomasG77

View GitHub Profile
@ThomasG77
ThomasG77 / fix_vrt.py
Last active September 14, 2023 00:16
Lien Adresse et parcelles
import xml.etree.ElementTree as ET
from optparse import OptionParser
parser = OptionParser()
(options, args) = parser.parse_args()
tree = ET.parse(args[0])
root = tree.getroot()
for child in root:
@ThomasG77
ThomasG77 / README.md
Last active July 27, 2023 00:17
Lister les fichiers INAO sur leur owncloud pour le Portail des plans officiels de délimitation
@ThomasG77
ThomasG77 / README.md
Last active July 24, 2023 18:26
Recette génération Territoire vie santé (TVS) 2022

Territoire vie santé (TVS)

Source de données

https://drees.shinyapps.io/carto-apl/_w_2acfc377/#tab-9818-3 puis dans l'onglet téléchargement, pris le fichier xlsx Correspondance_communes_tvs_2022.xlsx depuis le lien "Télécharger la table de correspondance communes - territoires de vie-santé :" le 24 juillet 2023

Transformé en CSV portant le nom correspondance_communes_tvs_2022.csv

Récupération des communes

@ThomasG77
ThomasG77 / gtfs-to-gpkg.sh
Created June 28, 2023 13:02
Load GTFS as GPKG with GDAL 3.7
#!/usr/bin/env bash
# You need GDAL 3.7 to get GTFS driver supported and also -json option for ogrinfo (since 3.6 for this particular feature)
# To override, do something like
# gpkg_output_name=tutu.gpkg gtfs_path_or_url=mygtfs.zip bash gtfs-to-gpkg.sh
gtfs_path_or_url="${gtfs_path_or_url:-/vsicurl/https://eu.ftp.opendatasoft.com/stif/GTFS/IDFM-gtfs.zip}"
gpkg_output_name="${gpkg_output_name:-idfm-gtfs.gpkg}"
cmd=gdalinfo
if [ -x "$(command -v "$cmd")" ]; then
echo "Notice: $cmd is in \$PATH"
sudo apt install libvulkan1
wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_109.0.5414.119-1_amd64.deb
# missing deps found with https://support.google.com/chrome/thread/199526613?hl=en&msgid=200997792
wget http://archive.ubuntu.com/ubuntu/pool/main/libu/libu2f-host/libu2f-udev_1.1.4-1_all.deb
sudo dpkg -i libu2f-udev_1.1.4-1_all.deb
# Ubuntu 16.04
# Adapted from https://askubuntu.com/a/1419680
# As recommended, used portable release spource code e.g https://www.openssh.com/portable.html
sudo apt install \
libssl-dev \
gcc g++ gdb cpp \
make cmake \
libtool \
libc6 \
autoconf automake pkg-config \

Sélectionner des parcelles selon l'étendue avec l'API Carto - Module Cadastre de l'IGN

Il faut prendre un GeoJSON en entrée du type Feature comme ci-dessous

{"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":{"coordinates":[[[-1.5567700133586584,47.21868047390478],[-1.5567362349704865,47.21787748555562],[-1.5560156293505258,47.21776277194195],[-1.5554413967479377,47.21783924771219],[-1.5554301372852422,47.21858870442267],[-1.5558917752596528,47.218802832966105],[-1.5560494077386977,47.21878753809898],[-1.556398451085954,47.21872635858563],[-1.5567700133586584,47.21868047390478]]],"type":"Polygon"}}]}

Ensuite, il faut prendre le bloc après "geometry":

@ThomasG77
ThomasG77 / maptam-22-metropoles.csv
Created May 23, 2023 12:46
GeoJSON maptam 22 metropoles avec communes
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
commune_principale_maptam;code_siren
Bordeaux;243300316
Brest;242900314
Clermont;246300701
Dijon;242100410
Grenoble;200040715
Lille;200093201
Metz;200039865
Montpellier;243400017
Nancy;245400676
import json
profiler = QgsApplication.profiler()
tree = []
for row in range(0, profiler.rowCount()):
line = []
for col in range(0, profiler.columnCount()):
index = profiler.index(row, col)
line.append(profiler.data(index))
if len(line) == 2:

Issue related to releases files from announcement https://blog.geofabrik.de/?p=589

The recipe

sudo update
sudo apt-get -q install -y build-essential git wget unzip tmux htop aria2 sysstat brotli cmake ifstat libsqlite3-dev openssl libssl-dev pkg-config curl gnupg2 ca-certificates lsb-release nginx

# install rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y