Skip to content

Commit

Permalink
reword error message for bbox.contains False, re #11366
Browse files Browse the repository at this point in the history
  • Loading branch information
whatisgalen committed Aug 20, 2024
1 parent c5adbcd commit 8bcc151
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arches/app/datatypes/core/geojson_feature_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ def validate_geom_bbox(geom):

if not bbox.contains(geom):
message = _(
"Geometry does not fall within the bounding box of the selected coordinate system. \
Adjust your coordinates or your settings.DATA_EXTENT_VALIDATION property. \
Also check whether Latitude and Longitude coordinate pairs are ordered correctly."
"Geometry cannot be confirmed as falling within the bounding box of the selected coordinate system. \
Adjust your coordinates or your settings.DATA_EXTENT_VALIDATION property \
or check whether Latitude and Longitude coordinate pairs are ordered correctly."
)
title = _("Geometry Out Of Bounds")
errors.append(
Expand Down

0 comments on commit 8bcc151

Please sign in to comment.