Skip to content

Commit

Permalink
geoboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
linkmluser committed Feb 5, 2024
1 parent 2eff399 commit 603d34f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/linkml_common/schema/engineering.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ imports:

classes:


EngineeringSpecification:
is_a: Procedure

Expand Down
22 changes: 21 additions & 1 deletion src/linkml_common/schema/geography.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ classes:
slots:
- address
- geolocation
- bounding_coordinates

Landform:
is_a: Place
Expand Down Expand Up @@ -83,9 +84,28 @@ classes:
unit:
ucum_code: m

GeoBoxLocation:
is_a: Location
attributes:
west_bounding_coordinate:
range: decimal
description: The westernmost coordinate of the location
east_bounding_coordinate:
range: decimal
description: The easternmost coordinate of the location
north_bounding_coordinate:
range: decimal
description: The northernmost coordinate of the location
south_bounding_coordinate:
range: decimal
description: The southernmost coordinate of the location

slots:
address:
range: PostalAddress
geolocation:
range: GeoPointLocation
description: The geolocation of the place
description: The geolocation of the place
bounding_coordinates:
range: GeoBoxLocation
description: The bounding coordinates of the place

0 comments on commit 603d34f

Please sign in to comment.