has bin
- CURIE:
gmeow:hasBin - IRI: https://blackcatinformatics.ca/gmeow/hasBin
- Category: property
- Defined by:
gmeow:slices/aggregation - Box roles: RBox role (What is this?)
Links a spatial aggregation to one of its constituent spatial bins. Non-functional: a bin may participate in multiple aggregations.
Structure
Property shape: object property; gmeow:SpatialAggregation -> gmeow:SpatialBin
Practical Pattern
Use gmeow:hasBin from gmeow:SpatialAggregation to gmeow:SpatialBin when the relationship itself belongs in the native GMEOW graph.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Spatial Bins
- Source:
slices/extensions/aggregation/examples/spatial-bins.ttl - Examples catalog: open in catalog#example-slices-extensions-aggregation-examples-spatial-bins
# --- The aggregation: average household size over the region, by survey, with a
# 1000-person minimum-population floor for safe publication.
ex:householdAgg a gmeow:SpatialAggregation ;
gmeow:observedFeature ex:metro ;
gmeow:vantage ex:censusBureau ;
gmeow:observationMethod gmeow:methodSurvey ;
gmeow:aggregationFunction gmeow:aggAverage ;
gmeow:minimumPopulation "1000"^^xsd:nonNegativeInteger ;
gmeow:hasBin ex:downtownBin ;
gmeow:observationResult ex:avgHouseholdSize .