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
Proposal for representing Aggregate Statistical Data #2291
Comments
Implemented in V3.9 |
constrainingProperties BugCompared to the proposal https://lists.w3.org/Archives/Public/public-schemaorg/2019Jun/0021.html, this task is not implemented well and should be reopened. https://schema.org/StatisticalPopulation says:
But:
One of the examples goes like this: :pop a s:StatisticalPopulation;
s:populationType s:Person;
s:numConstraints 1;
s:constrainingProperty s:homeLocation;
s:homeLocation :East_Podunk_California.
:obs a s:Observation;
s:observedNode :pop;
s:measuredProperty: :POPULATION; # HOW to express this?
# This is SDMX population, or some GS1 prop, or maybe I can omit it since it's just a count?
s:measuredValue 10000;
s:observationDate "2020-10-30"^^xsd:date. Direct ObservationsIf I have a prop
This covers the most common case where you observe some characteristic of an entity, without subdividing the characteristic further. Eg Wikidata has Place.population, Company.turnover, Company.revenue, etc. How can you express Also, PROPOSAL: rename observationDate vs reference periodConsider these observations about Google: :obs1 a s:Observation;
s:observedNode wd:Q95;
s:measuredProperty wd:P2403; # total assets
s:measuredValue 2000000000;
s:observationDate "2019"^^xsd:gYear.
:obs2 a s:Observation;
s:observedNode wd:Q95;
s:measuredProperty wd:P2139; # total revenue
s:measuredValue 1000000000;
s:observationDate "2019"^^xsd:gYear. ####
# yearly revenue 2019
:obs2 a s:Observation;
s:observedNode wd:Q95;
s:measuredProperty wd:P2139; # total revenue
s:measuredValue 1000000000;
s:observationPeriod "2019"^^xsd:gYear.
# quarterly revenue 2019Q1
:obs2 a s:Observation;
s:observedNode wd:Q95;
s:measuredProperty wd:P2139; # total revenue
s:measuredValue 250000000;
s:observationPeriodStart "2019-01"^^xsd:gYearMonth;
s:observationPeriodEnd "2019-03"^^xsd:gYearMonth. Actually it's better to use precise dates and to always do it with two props: # yearly revenue 2019
:obs2 a s:Observation;
s:observedNode wd:Q95;
s:measuredProperty wd:P2139; # total revenue
s:measuredValue 1000000000;
s:observationPeriodStart "2019-01-01"^^xsd:date;
s:observationPerioEnd "2019-12-31"^^xsd:date.
# quarterly revenue 2019Q1
:obs2 a s:Observation;
s:observedNode wd:Q95;
s:measuredProperty wd:P2139; # total revenue
s:measuredValue 250000000;
s:observationPeriodStart "2019-01-01"^^xsd:date;
s:observationPeriodEnd "2019-03-31"^^xsd:date. Superclass of Observation; Units
PROPOSAL:
|
Can't Record Multiple Measures of Same PointHow would you you represent this situation: an air balloon is rising, and every 10s records altitude, pressure and temperature. Compared to W3 Cube, this is ill-conceived and badly executed. |
@VladimirAlexiev suggest you create a new issue? (linked back to this one, which is already closed). |
@dr-shorthair You think it's worth it? Don't want to waste my time: |
The term 'observation' has a much broader meaning in the physical science community (see https://www.w3.org/TR/vocab-ssn/#SOSAObservation), so limiting the rangeIncludes on schema:observedNode property to schema:StatitisticalPopulation is unnecessarily constraining. This is based on the correlation of 'schema:observedNode with sosa:hasFeatureOfInterest. Alignment with the SOSA model would be really useful for those of us working on Science on Schema.org. To that end, the schema:Observation model would need to include properties like schema:measurementTechnique (analogous to sosa:usedProcedure), phenomenonTime, resultTime, and madeBySensor to specify the instrumentation used. One niggling question is what are the use cases that distinguish schema:Observation from schema:PropertyValue, i.e. what is the domain of schema:Observation if not schema:Dataset? (SpecialAnnouncement??? ) see also ESIPFed/science-on-schema.org#143 |
I did a mapping SOSA <--> schema.org here: https://github.com/w3c/sdw/blob/gh-pages/ssn/rdf/sosa-sdo-mapping.ttl |
As a historical note - these terms (which pointed to this issue) were removed from pending in release 16.0:
16.0 added these statistical terms (#3238 #2564):
|
Proposal circulated to various lists by @rvguha,
Vocabulary
Related work
The text was updated successfully, but these errors were encountered: