'Why is the distance between a point and a polygon 0 here?

I am using PostGIS, here is the SQL that I am using -

SELECT ST_Distance(
  'SRID=4326;POINT(0 55)'::geography,
  'SRID=4326;POLYGON((-180 45,-10 45,-10 -45,-180 -45,-180 45))'::geography
);

Visualizing these objects on a map suggests to me that the distance should be non-zero.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source