-
Type:
Work Task
-
Resolution: Cannot Reproduce
-
Priority:
Major
-
Affects Version/s: None
-
Component/s: XML Ingest
-
None
Some component properties have an extra description tag. We need to determine a way to handle this. Here is hypothetical example:
<componentProperty represented="true">
<shortName>NumberOfSurfaceTemperatures</shortName>
<longName>NumberOfSurfaceTemperatures</longName>
<value>9</value>
<description>Some extra text the user has put in</description>
</componentProperty>
Currently, we harvest the attribute NumberOfSurfaceTemperatures and reference the property hasNumberOfSurfaceTemperatures that was provided in Rupert's metafor.owl file such that
model_component hasNumberOfSurfaceTemperatures 9
I think we are going to need a hasNumberOfSurfaceTemperaturesDescription property created by rupert in the metafor.owl file such that we can say:
model_component hasNumberOfSurfaceTemperaturesDescription Some extra text the user has put in
this will display in ESG then as:
Number of Surface Temperatures Description = Some extra text the user has put in
If every scientific property in the questionnaire can have this description, then we will need to make a new property with description or some other text e.g. Note for every scientific property in the metafor.owl.
Until that is done, however, we need to add something to the harvester that concatenates the attribute name with the word Description...and then assigns the description to this. Not many attributes will have this...
<componentProperty represented="true">
<shortName>NumberOfSurfaceTemperatures</shortName>
<longName>NumberOfSurfaceTemperatures</longName>
<value>9</value>
<description>Some extra text the user has put in</description>
</componentProperty>
Currently, we harvest the attribute NumberOfSurfaceTemperatures and reference the property hasNumberOfSurfaceTemperatures that was provided in Rupert's metafor.owl file such that
model_component hasNumberOfSurfaceTemperatures 9
I think we are going to need a hasNumberOfSurfaceTemperaturesDescription property created by rupert in the metafor.owl file such that we can say:
model_component hasNumberOfSurfaceTemperaturesDescription Some extra text the user has put in
this will display in ESG then as:
Number of Surface Temperatures Description = Some extra text the user has put in
If every scientific property in the questionnaire can have this description, then we will need to make a new property with description or some other text e.g. Note for every scientific property in the metafor.owl.
Until that is done, however, we need to add something to the harvester that concatenates the attribute name with the word Description...and then assigns the description to this. Not many attributes will have this...