Difference between revisions of "SimpleGraph-Core"

From BITPlan Wiki
Jump to navigation Jump to search
Line 15: Line 15:
 
{{GW|150914}}
 
{{GW|150914}}
  
 +
Now you might be interested in some details that are not available via WikiData. https://www.gw-openscience.org/events/GW150914/ for instance has link to the orginal HDF5 datasets
 +
from the two detectors Hanford and Livingston:
 +
* https://www.gw-openscience.org/GW150914data/H-H1_LOSC_4_V2-1126259446-32.hdf5
 +
* https://www.gw-openscience.org/GW150914data/L-L1_LOSC_4_V2-1126259446-32.hdf5
  
 +
To read the data you'd now have to download a HDFView software to find the starttime of the event as GPS Time 1126259446 UTC 2015-09-14T09:50:29.
 +
 +
Let's simplify this process by using three modules from the SimpleGraphProject
 +
# {{Link|target=SimpleGraph-WikiData}} to get the general event data from WikiData with the link to Linked Open Data URL
 +
# {{Link|target=SimpleGraph-HTML}} to extract the link to the original hdf5 files from the observatories
 +
# {{Link|target=SimpleGraph-HDF5}} to get toe the event details and the original measurement data
 
[[Category:SimpleGraph]][[Category:frontend]]
 
[[Category:SimpleGraph]][[Category:frontend]]

Revision as of 10:34, 17 October 2018

Basically SimpleGraph core has the idea of Vertex and Edges being able to carry "payloads". Some of the payload data will be replicated as properties to be able to search for the payload and do something with it but the main thing is to have some kind of pointer/key that a certain SimpleGraph Module will be able work with to allow working with the API for the payload.

Example

Lets's assume we'd like to acces some data about Gravitational Wave observations. A Source for general information on these events is WikiData where you can get a list of the events with a SPARQL query.

Each event is represented as a Vertex. The main info is the event name e.g. "GW150914" with that name you can lookup more detail on the event e.g. You'll find wikipedia articles for it or the source of linked opendata from the Ligo Observatory:

GW150914


Now you might be interested in some details that are not available via WikiData. https://www.gw-openscience.org/events/GW150914/ for instance has link to the orginal HDF5 datasets from the two detectors Hanford and Livingston:

To read the data you'd now have to download a HDFView software to find the starttime of the event as GPS Time 1126259446 UTC 2015-09-14T09:50:29.

Let's simplify this process by using three modules from the SimpleGraphProject

  1. SimpleGraph-WikiData to get the general event data from WikiData with the link to Linked Open Data URL
  2. SimpleGraph-HTML to extract the link to the original hdf5 files from the observatories
  3. SimpleGraph-HDF5 to get toe the event details and the original measurement data