Toots for thomas_szczurek@mapstodon.space account

Written by Thomas Szczurek-Gayant on 2024-12-31 at 23:09

Happy newyear #gischat

Make that year a good year to learn new things and develop yourself.

My gis goals for this year :

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-11-12 at 19:30

Je découvre que les Replay des pgdays 2024 sont dispo :

https://m.youtube.com/@PostgresqlFr/videos

Je vous conseille encore les histoires qui font peur, pour éviter de vous retrouver avec 5mo de work_mem, ou 256mo de shared_buffers (la mémoire tampon entre le disque et la ram) , comme certaines collectivités pleines de spécialistes prêt à vous dire que les bdd c'est trop compliqué pour vous 😀

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-10-15 at 16:54

2/2

Les csv décrivant les variables et sources disponibles sont ici :

https://donnees-insee.s3.fr-par.scw.cloud/bases_disponibles.csv

https://donnees-insee.s3.fr-par.scw.cloud/champs_disponibles.csv

les p et c à la fin des noms de champs signifient "exploitation principale" ou "complémentaire," soit des champs qu'il ne faut pas croiser. Le fichier des champs dispo permet de retrouver la variable insee d'origine, à laquelle il faut ajouter le millésime en début de nom (car j'aime mon prochain et ne met pas les numéros de millésime dans mes noms de champs)

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-10-15 at 16:52

Pour celles et ceux que ça interesse, j'ai créé et stocké un fichier parquet comprenant les données du recensement de l'insee pour toutes les communes de France depuis 2015 et Filosofi depuis 2017 (soit plus de 500 indicateurs). Je continuerai à le mettre à la sortie d'un nouveau millesime.

On rappele de ne pas comparer le recensement sans au moins 5 ans d'écart.

Le fichier est disponible ici :

https://donnees-insee.s3.fr-par.scw.cloud/donnees_insee_olap.parquet

requêtable en ligne avec duckdb

1/2

[#]gischat

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-07-24 at 10:12

I've just discovered an update of the French cadastre (land property boundaries). Something people argue about over a piece of stone stuck in the ground. Proposed in geojson. A format assuming you're in wgs84, a srs that loses up to 2 meters of precision compared to our national srs. Can devs please stop thinking that json is a good format for everything? #gischat

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-06-29 at 21:02

https://m.youtube.com/watch?v=-HXQHodNbEg #SciamosTuttiAntifascisti

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-06-29 at 19:59

J'enfrains peut être les règles de maptodon.space, mais le moment est important. J'ai une culture libertaire (ça veut pas dire libertarienne). L'abstention est, pour moi, non pas un je m'en foutisme mais une conviction politique. Mais demain, je vous en supplie, allez voter. Ne laissez l'extreme droite prendre le pouvoir. Comme je l'ai encore lu aujourd'hui chez des concitoyens belges "en donnant le pouvoir a l'extréme droite, on ne le récupère qu'après une guerre".

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-06-11 at 21:59

[#]pgday fr

Just use postgres

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-04-21 at 11:09

Quand vous devez importer de la donnée ign dans votre base postgres 🤨 :

=> View attached media

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-04-03 at 21:44

For those who want to learn python in gis :

https://py.geocompx.org/

A very big thanks to the authors.

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-04-02 at 21:53

Ok i was wrong. Fedora is good.

And Kde makes it better.

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-04-02 at 20:09

gs = gpd.GeoSeries.from_wkt([feature.geometry().asWkt() for feature in vlayer.getFeatures()])

# Génération de la Geodataframe

gdf = gpd.GeoDataFrame(df, geometry=gs)

return gdf

[#] name of the layer you want to geodataframe

layer_name = 'your_name'

my_gdf = layer_to_gdf(layer_name)

End of function before "# name" please indent !

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-04-02 at 20:08

[#]gischat Load a Qgis layer into a geopandas dataframe in the qgis python interpreter :

import pandas as pd

import geopandas as gpd

def layer_to_gdf(layer_name):

# PyQgisation of the layer

vlayer = QgsProject.instance().mapLayersByName(layer_name)[0]

attributes dataframe making

cols = [f.name() for f in vlayer.fields()]

datagen = ([f[col] for col in cols] for f in vlayer.getFeatures())

df = pd.DataFrame.from_records(data=datagen, columns=cols)

# generate GeoSeries

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-03-29 at 11:22

La spec geoparquet 1.1 arrive !

https://cloudnativegeo.org/blog/2024/03/coming-soon-geoparquet-1.1/

Entre le geopackage, le flatgeobuf et le geoparquet, la prochaine fois que je vois un shape merci aux témoins d'appeler les urgences et le service réanimation pour s'occuper de moi 😁

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-03-28 at 15:39

Un grand merci aux organisateur-ices des @JourneesQgis et aux bénévoles. C'était bieng ! On repart la tête pleine d'instance qfield cloud et de postgres, mais surtout avec un nouveau répertoire de blagues pour ambiancer le bureau !

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-03-20 at 14:27

Quelqu'un sait si il est possible d'utiliser une dataframe pandas comme input de l'API python de gdal/ogr ?

Does anyone know if it's possible to use a pandas dataframe as an input for gdal/ogr python api ?

Thanks !

[#]sig #gis

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-03-16 at 17:05

Ce moment où vous pensez vous mettre au vert a la campagne chez vos parents pour vous faire entre dire "on a fait venir quelqu'un pour faire les courbes de niveau du terrain". 😞"Mais est ce que vous savez ce que je fais ?". Bon, on sort #qfield et #qgis, la bd alti et hop tout d'un coup "tu pourrait pas nous laisser l'image de l'exposition ?, ça serait super pour savoir où planter les légumes". "Attendez, donnez moi votre téléphone". #LesUtlisationsDuSigATresTresGrandeEchelle

=> More informations about this toot | View the thread

Written by Thomas Szczurek-Gayant on 2024-01-17 at 21:36

Mon repertoire (en français) de ressources sig de tout type, majoritairement open source, abondez le a votre convenance ! L'anglais est le bienvenu.

https://github.com/thomas-szczurek/ressources_sig/blob/master/ressources.md

My repository (in french) about every kind of gis ressources, mostly open sources, feel free to append it ! English welcomed.

https://github.com/thomas-szczurek/ressources_sig

=> More informations about this toot | View the thread

=> This profile with reblog | Go to thomas_szczurek@mapstodon.space account

Proxy Information
Original URL
gemini://mastogem.picasoft.net/profile/109301150872002156
Status Code
Success (20)
Meta
text/gemini
Capsule Response Time
339.998037 milliseconds
Gemini-to-HTML Time
4.880124 milliseconds

This content has been proxied by September (ba2dc).