Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between multipolygon and polygon in PostGIS

What is the difference between point and multipoint ? linestring and multilinestring ? polygon and multipolygon ? In PostGIS

What is the secret behind defining "Multi" shapes?

like image 202
Ahlam Avatar asked Dec 31 '12 07:12

Ahlam


1 Answers

"Multi" means, that several objects of that kind are "grouped" together to single object. For example, imagine Philippines. That country consists of lot of islands - you can't draw it with single polygon; and it would be inconvenient to store it as several different database rows, each containing single polygon.

like image 160
user1702401 Avatar answered Sep 24 '22 05:09

user1702401