Regen Network

Regen Network Data Standards

WARNING: This site is a work in progress.

Class: Feature

A spatial feature, such as a project or area, with a defined geometry and optional bounding box.

URI: geo:Feature

erDiagram
Feature {
    string name  
}
Geometry {
    string asWKT  
}

Feature ||--|| Geometry : "hasGeometry"
Feature ||--|o Geometry : "hasBoundingBox"
Feature ||--|o Geometry : "hasCentroid"

Slots

NameCardinality and RangeDescriptionInheritance
name1
String
Name of the entity / resourcedirect
hasGeometry1
Geometry
direct
hasBoundingBox0..1
Geometry
A derived geometry representing the bounding box of the geometry or featuredirect
hasCentroid0..1
Geometry
A derived geometry representing the centroid of the featuredirect

Usages

used byused intypeused
ProjectInfohasFeaturerangeFeature
CreditProjectInfohasFeaturerangeFeature
BT01ProjectInfohasFeaturerangeFeature
C01ProjectInfohasFeaturerangeFeature
C02ProjectInfohasFeaturerangeFeature

Identifier and Mapping Information

Schema Source

Mappings

Mapping TypeMapped Value
selfgeo:Feature
nativerfs:Feature

LinkML Source

Direct

```yaml name: Feature description: A spatial feature, such as a project or area, with a defined geometry and optional bounding box. from_schema: https://framework.regen.network/schema/ slots: - name - hasGeometry - hasBoundingBox - hasCentroid slot_usage: name: name: name required: true hasGeometry: name: hasGeometry required: true class_uri: geo:Feature
</details>

### Induced

<details>
```yaml
name: Feature
description: A spatial feature, such as a project or area, with a defined geometry
  and optional bounding box.
from_schema: https://framework.regen.network/schema/
slot_usage:
  name:
    name: name
    required: true
  hasGeometry:
    name: hasGeometry
    required: true
attributes:
  name:
    name: name
    description: Name of the entity / resource.
    from_schema: https://framework.regen.network/schema/
    rank: 1
    slot_uri: schema:name
    alias: name
    owner: Feature
    domain_of:
    - Link
    - ProjectInfo
    - Feature
    - File
    - Impact
    - CreditingProgram
    - CreditProtocol
    - Methodology
    - Registry
    - BufferPoolAccount
    - CreditClassInfo
    - Entity
    range: string
    required: true
  hasGeometry:
    name: hasGeometry
    from_schema: https://framework.regen.network/schema/
    rank: 1000
    slot_uri: geo:hasGeometry
    alias: hasGeometry
    owner: Feature
    domain_of:
    - Feature
    range: Geometry
    required: true
  hasBoundingBox:
    name: hasBoundingBox
    description: A derived geometry representing the bounding box of the geometry
      or feature.
    from_schema: https://framework.regen.network/schema/
    rank: 1000
    slot_uri: geo:hasBoundingBox
    alias: hasBoundingBox
    owner: Feature
    domain_of:
    - Feature
    range: Geometry
  hasCentroid:
    name: hasCentroid
    description: A derived geometry representing the centroid of the feature.
    from_schema: https://framework.regen.network/schema/
    rank: 1000
    slot_uri: geo:hasCentroid
    alias: hasCentroid
    owner: Feature
    domain_of:
    - Feature
    range: Geometry
class_uri: geo:Feature