The test polygon is invalid in the given SRS
Description
Activity
Show:
Won't Fix
Details
Details
Assignee
Unassigned
UnassignedReporter
Jonathan Bregler
Jonathan BreglerComponents
Affects versions
Priority
Created May 23, 2017 at 2:41 PM
Updated September 19, 2018 at 8:05 PM
Resolved September 19, 2018 at 8:05 PM
The test polygon defined in org.hibernate.spatial.testing.AbstractExpectationsFactory, POLYGON((0 0, 50 0, 100 100, 0 100, 0 0)), is invalid in the SRS 4326. The coordinates of SRS 4326 range from -180 to 180 and -90 to 90, respectively. This means that (100 100) is an invalid point in the SRS.
A valid polygon would be, for example, POLYGON ((0 0, 50 0, 50 45, 0 45, 0 0))