Advertisement
kijato

PostGIS geomerty

Jun 30th, 2019
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. select 'multipolygon' as type, st_geomfromtext('MULTIPOLYGON(
  2. (
  3. (0 0,9 0,9 9,0 9,0 0),
  4. (1 1,2 1,2 2,1 2,1 1),
  5. (2 3,5 3,5 5,2 5,2 3),
  6. (3 6,7 6,7 7,3 7,3 6)
  7. ),
  8. (
  9. (10 10,10 15,15 15,15 10,10 10),
  10. (11 11,11 13,13 13,13 11,11 11)
  11. )
  12. )',23700);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement