Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

La vm_communes est mal intersectée avec t_layer_territoire #599

Open
TheoLechemia opened this issue Jan 22, 2025 · 1 comment
Open

La vm_communes est mal intersectée avec t_layer_territoire #599

TheoLechemia opened this issue Jan 22, 2025 · 1 comment
Labels

Comments

@TheoLechemia
Copy link
Member

Depuis le passage en 4326, la création de la vm_communes n'est pas intersecté correctement avec t_layer_territoire.
En effet, c'est ce code qui est utilisé :

SELECT c.insee,
    c.commune_maj,
    c.the_geom,
    st_asgeojson(st_transform(c.the_geom, 4326)) AS commune_geojson
   FROM atlas.l_communes c
     JOIN atlas.t_layer_territoire t ON 
	st_contains(
		st_buffer(
			t.the_geom, 
			200
		), 
c.the_geom);

or en 4326, le paramètre 200 ne vaut pas 200 mètre, mais plusieurs kilomètres.

Il faudrait le remplacer par : 0.002 (ce qui vaut approximativement 200m en degré décimaux)

@TheoLechemia TheoLechemia changed the title La vm_communes est mal intersecté avec t_layer_territoire La vm_communes est mal intersectée avec t_layer_territoire Jan 22, 2025
@camillemonchicourt
Copy link
Member

Ou reprojeter en projection métrique avant de faire l'intersection ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants