Skip to content

Commit

Permalink
Add bounds on bbox
Browse files Browse the repository at this point in the history
  • Loading branch information
jenningsanderson committed Dec 18, 2024
1 parent 8a964e7 commit fa1795a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions schema/defs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ description: Common schema definitions shared by all themes
type: integer
default: 0
spatialIndexingContainer:
title: spatial indexing
description: Various spatial indexing systems
properties:
bbox:
Expand All @@ -380,12 +381,20 @@ description: Common schema definitions shared by all themes
properties:
xmin:
type: number
minimum: -180
maximum: 180
xmax:
type: number
minimum: -180
maximum: 180
ymin:
type: number
minimum: -90
maximum: 90
ymax:
type: number
minimum: -90
maximum: 90
h3:
title: H3 Index
description: h3 hexagonal indexing system
Expand Down

0 comments on commit fa1795a

Please sign in to comment.