-
Notifications
You must be signed in to change notification settings - Fork 21
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
Update automatic metadata creation #393
base: develop
Are you sure you want to change the base?
Conversation
* apply black
"name": null, | ||
"path": null | ||
"name": "power plant", | ||
"path": "http://openenergy-platform.org/ontology/oeo/OEO_00000031" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the function of ontology references?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The purpose is that the @context
field makes some fields in the oemetadata searchable via sparql queries. Amongst others subject
, isAbout
, valueReference
. It makes the metadata JSON to a JSON-LD.
The idea is that in the future datasets are annotated ontologically for two use-cases:
- common vocabulary to search for data in the energy domain in a search engine that builds upon linked open data
Here the prototype of a search engine from LOD-GEOSS project: http://moss.tools.dbpedia.org/search
The usability and visualistion are going to be improved.
When you search forhub height
, select the concept from the suggestions and search for it on the energy databus, you'll find wind power plant datasets that contain information about hub height you might use for your calculations. The datasets are registered in the databus, which is a metadata catalog that points to decentrally hosted databases. So the data is not actually hosted and maintained on the databus but at individual institutions with the idea to improve data findability in the domain (only works if sufficient datapoints with good metadata participate). - inference of knowlegde with annotated datasets
simplistic example: I annote the mastr dataset withpower plant
and you know generally what the concept power plant is, but not what types of power plants exist in the energy domain. You could gain knowledge from the information stored via the hierarchical relations in the ontology.
https://openenergy-platform.org/viewer/oeo/ if you search forpower plant
here.
I'll add further commits regarding the automatic metadata creation. |
# Conflicts: # open_mastr/mastr.py # open_mastr/soap_api/mirror.py # open_mastr/xml_download/utils_download_bulk.py
Closes #386