Intersection Point Polygon
Bonjour
Je cherche à faire une requête d'intersection entre une couche polygon et point.
Voici la requête
Code:
1 2 3 4 5 6 7 8 9 10 11
| SELECT
point.pointid,
polygon.gridcode,
point.the_geom
FROM
public.precipation polygon,
public.ph point
WHERE
point.the_geom && polygon.the_geom
AND
distance(polygon.the_geom, point.the_geom) < 0.001; |
La requête me retourne cette erreur.
Citation:
ERREUR: Operation on two geometries with different SRIDs
********** Erreur **********
ERREUR: Operation on two geometries with different SRIDs
État SQL :XX000
Pouvez-vous m'indiquez le problème.
Merci tio