-
Notifications
You must be signed in to change notification settings - Fork 7
239 operating survival ranges, closes #239 #256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 12 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ccaf9d9
Fix minor typo
oldskeptic ea02618
Add new ssn-system:Range abstract class and subclass relevant ranging…
oldskeptic 1238f89
Merge branch 'gh-pages' into 239-operating-surival-ranges
dr-shorthair 322f2b8
Merge branch 'gh-pages' into 239-operating-surival-ranges
dr-shorthair ce17b0f
Merge branch 'gh-pages' into 239-operating-surival-ranges
dr-shorthair c2a0f3d
Merge branch 'gh-pages' into 239-operating-surival-ranges
dr-shorthair 8956a62
Merge branch 'gh-pages' into 239-operating-surival-ranges
dr-shorthair 9de8918
Merge branch 'gh-pages' into 239-operating-surival-ranges
dr-shorthair bd9a555
Merge branch 'gh-pages' into 239-operating-surival-ranges
dr-shorthair 8c25f06
This resolves all concerns about xsd uses.
oldskeptic 66bac62
Standardize all ranges in examples to xsd:maxInclusive / xsd:minInclu…
oldskeptic 517ba17
Fix typo
oldskeptic 1e4b47b
Move some examples to qudt:value
oldskeptic 270d357
Missing semicolon InkBird-IBS-TH2-Range.ttl
oldskeptic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | ||
@prefix qudt: <http://qudt.org/schema/qudt/> . | ||
@prefix unit: <http://qudt.org/vocab/unit/> . | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | ||
@prefix schema: <http://schema.org/> . | ||
@prefix gs1: <https://gs1.org/voc/> . | ||
@prefix equipment: <https://rdf.ag/o/equipment/> . | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix sosa: <http://www.w3.org/ns/sosa/> . | ||
@prefix ssn: <http://www.w3.org/ns/ssn/> . | ||
@prefix ssn-system: <http://www.w3.org/ns/ssn/systems/> . | ||
@base <https://rdf.ag/o/equipment/> . | ||
|
||
# This example is a partial specification for a common over-the-shelf temperature and humidity sensor. Different instantions can | ||
# be derived for each specific physical the product. | ||
|
||
<InkBird-IBS-TH2> a owl:Class; | ||
rdfs:label "Inkbird IBS-TH2"@en ; | ||
rdfs:subClassOf gs1:Product, sosa:Platform, equipment:Equipment, <https://w3id.org/seas/BluetoothCommunicationDevice> | ||
gs1:pip <https://inkbird.com/products/hygrometer-ibs-th2> ; | ||
sosa:hosts <IBSTH2TemperatureSensor> . | ||
oldskeptic marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
<IBSTH2TemperatureSensor> rdfs:subClassOf sosa:Sensor ; | ||
rdfs:label "Inkbird IBS-TH2 built-in Temperature Sensor"@en ; | ||
sosa:observes <airTemperature> ; | ||
ssn-system:hasOperatingRange <IBSTH2TemperatureSensorLimits> ; | ||
ssn-system:hasSurvivalRange <IBSTH2SurvivalRange> . | ||
|
||
<IBSTH2TemperatureSensorLimits> a ssn-system:OperatingRange ; | ||
qudt:unit qudt-unit:DEG_C ; | ||
xsd:maxInclusive "60" ; | ||
xsd:minInclusive "-40" ; | ||
rdfs:label "Inkbird IBS-TH2 Temperature Sensor Limits"@en . | ||
|
||
# Physical limits of the sensor (and platform) where structural failure occurs. | ||
<IBSTH2SurvivalRange> a ssn-system:SurvivalRange ; | ||
oldskeptic marked this conversation as resolved.
Show resolved
Hide resolved
|
||
qudt:unit qudt-unit:DEG_C ; | ||
xsd:maxInclusive "80" ; | ||
xsd:minInclusive "-273" ; | ||
rdfs:label "Inkbird IBS-TH2 Failiure limits"@en . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.