KnowledgeCaptureAndDiscovery / DISK-API

Apache License 2.0
3 stars 1 forks source link

climate - Prepare data source #62

Open mosoriob opened 1 year ago

hvarg commented 1 year ago

The data source is: https://linkedearth.graphdb.mint.isi.edu/sparql

mosoriob commented 1 year ago
kind: ConfigMap 
apiVersion: v1 
metadata:
  name: climate-server-properties
data:
  server.properties: | 
    {
        server = http://localhost:8080/disk-server;
        storage = 
        {
            local = /root/disk/storage;
            tdb = /root/disk/storage/TDB;
            db = /root/disk/storage/DB;
        }
        keycloak =
        {
            url = https://auth.mint.isi.edu;
            realm = production;
        }
        data-adapters = 
        {
            Linked_Earth = 
            {
                type = sparql;
                endpoint = https://linkedearth.graphdb.mint.isi.edu/sparql;
                username = admin;
                password = 4dm1n!23;
                prefix = wiki;
                description = '<a href="https://wiki.linked.earth/Main_Page">The LinkedEarth platform </a> contains observational paleoclimate data stored in the LiPD format <a href="https://lipd.net">LiPD format</a>. These datasets consist of paleoclimate measurements (such as tree ring width, the isotopic composition of ice, bulk composition of marine and lake sediments) as a proxy for past environmental variables such as temperature and precipitation. <a href="http://linked.earth">Click here</a> for more information about LinkedEarth.';
            }
        }
        method-adapters =
        {
            wings =
            {
                type = wings;
                endpoint = https://wings.disk.isi.edu/wings-portal;
                username = admin;
                password = 4dm1n!23;
                internal_server = https://wings.disk.isi.edu/wings-portal;
                domain = test;
                description = "This should be auto-ts";
            }
        }
        question-templates =
        {
            climate = https://raw.githubusercontent.com/KnowledgeCaptureAndDiscovery/QuestionOntology/main/examples/hypothesisQuestions.xml;
        }
        vocabularies =
        {
            disk-hypothesis =
            {
                url = https://knowledgecaptureanddiscovery.github.io/DISK-Ontologies/hypothesis/release/0.0.2/ontology.owl;
                prefix = hyp;
                namespace = http://disk-project.org/ontology/hypothesis#;
                description = "The DISK Hypothesis Ontology. Defines properties to be used on Hypothesis creation.";
                title = "DISK Hypothesis";
            }
        }
    }
mosoriob commented 1 year ago

Please validate it.