Uploaded image for project: 'Help-Desk'
  1. Help-Desk
  2. HELP-6158

FIWARE.Request.Tech.Data.CKAN.CKAN and Linked Open Data

    Details

    • Type: extRequest
    • Status: Closed
    • Priority: Major
    • Resolution: Done
    • Fix Version/s: 2021
    • Component/s: FIWARE-TECH-HELP
    • Labels:
      None
    • HD-Chapter:
      Data
    • HD-Enabler:
      CKAN

      Description

      Pasquale Vitale sent a message using the contact form at
      http://catalogue.fiware.org/.

      Hi all,
      I would like to use the Linked Open Data in CKAN.
      I've deployed CKAN 2.4 in a VM (ubuntu 12.04).
      I'm also using the datastore plugin.
      From this link
      (http://docs.ckan.org/en/ckan-2.4.1/maintaining/linked-data-and-rdf.html) the
      Linked Open Data, I understand that the RDF feature is already available.
      How can I manage the Linked Open Data?
      Thank you in advance,
      regards
      Pasquale

      Since January 1st, old domains won't be supported and messages sent to any domain different to @lists.fiware.org will be lost.
      Please, send your messages using the new domain (Fiware-tech-help@lists.fiware.org) instead of the old one.
      _______________________________________________
      Fiware-tech-help mailing list
      Fiware-tech-help@lists.fiware.org
      https://lists.fiware.org/listinfo/fiware-tech-help

        Activity

        Hide
        ckan-fiware-okfn OKFN CKAN team added a comment -

        The issue has been emailed:

        • Time sent: 21/Mar/16 2:12 PM
        • To: pasquale.vitale@eng.it
        • with subject: *(HELP-6158) [Fiware-tech-help] [CKAN] CKAN and Linked Open Data *

        Hi Pasquale,

        The official RDF support for CKAN is currently provided by the DCAT extension:

        https://github.com/ckan/ckanext-dcat

        Installing it and enabling it will provide a customizable RDF serialization for all datasets [1]. This serialization can be customized writing profiles [2] for your own needs. The default profile is compatible with DCAT-AP 1.1.

        Note that the semantic output in RDF refers to the metadata of the datasets, not the actual data contained on the DataStore.

        Hope this helps,

        Adrià

        [1] https://github.com/ckan/ckanext-dcat#rdf-dcat-endpoints
        [2] https://github.com/ckan/ckanext-dcat#profiles

        Show
        ckan-fiware-okfn OKFN CKAN team added a comment - The issue has been emailed: Time sent: 21/Mar/16 2:12 PM To: pasquale.vitale@eng.it with subject: *( HELP-6158 ) [Fiware-tech-help] [CKAN] CKAN and Linked Open Data * Hi Pasquale, The official RDF support for CKAN is currently provided by the DCAT extension: https://github.com/ckan/ckanext-dcat Installing it and enabling it will provide a customizable RDF serialization for all datasets [1] . This serialization can be customized writing profiles [2] for your own needs. The default profile is compatible with DCAT-AP 1.1. Note that the semantic output in RDF refers to the metadata of the datasets, not the actual data contained on the DataStore. Hope this helps, Adrià [1] https://github.com/ckan/ckanext-dcat#rdf-dcat-endpoints [2] https://github.com/ckan/ckanext-dcat#profiles
        Hide
        pasquale.vitale Pasquale Vitale added a comment -

        Hi Adrià,
        must I install three plugins? (dcat, dcat_rdf_harvester, dcat_json_harvester)
        I just follow the documentation at this link https://github.com/ckan/ckanext-dcat#installation.

        Regards
        Pasquale

        Show
        pasquale.vitale Pasquale Vitale added a comment - Hi Adrià, must I install three plugins? (dcat, dcat_rdf_harvester, dcat_json_harvester) I just follow the documentation at this link https://github.com/ckan/ckanext-dcat#installation . Regards Pasquale
        Hide
        pasquale.vitale Pasquale Vitale added a comment -

        Hi Adrià,
        I have installed only the dcat plugin.
        I put in my ckan server two datasets (catalog.json and catalog.rdf downloaded from this link https://github.com/ckan/ckanext-dcat/tree/master/examples).
        How can I check that it works?
        Could you help me?

        Thank you
        Regards,
        Pasquale

        Show
        pasquale.vitale Pasquale Vitale added a comment - Hi Adrià, I have installed only the dcat plugin. I put in my ckan server two datasets (catalog.json and catalog.rdf downloaded from this link https://github.com/ckan/ckanext-dcat/tree/master/examples ). How can I check that it works? Could you help me? Thank you Regards, Pasquale
        Hide
        ckan-fiware-okfn OKFN CKAN team added a comment -

        The issue has been emailed:

        • Time sent: 21/Mar/16 4:28 PM
        • To: pasquale.vitale@eng.it
        • with subject: *(HELP-6158) [Fiware-tech-help] [CKAN] CKAN and Linked Open Data *

        Hi Pasquale,

        > I have installed only the dcat plugin.

        Great, if you only want to produce RDF that the only one you'll need. If you want to import (harvest) RDF from other sources you'll need dcat_rdf_harvester (and the harvester extension).

        > I put in my ckan server two datasets (catalog.json and catalog.rdf downloaded from this link https://github.com/ckan/ckanext-dcat/tree/master/examples).
        > How can I check that it works?

        You don't need to provide any existing RDF file. RDF serializations are generated on the fly from CKAN's internal metadata. You can access the RDF version of dataset visiting:

        http://yourckaninstance.com/dataset/

        {dataset_name}.rdf

        or

        http://yourckaninstance.com/dataset/{dataset_name}

        .ttl
        http://yourckaninstance.com/dataset/

        {dataset_name}

        .jsonld

        This is an example from the CKAN demo site:

        http://demo.ckan.org/dataset/newcastle-city-council-payments-over-500.rdf

        There's also a catalog wide endpoint:

        http://demo.ckan.org/catalog.rdf

        Please check the ckanext-dcat docs for more details.

        Hope this helps,

        Adrià

        Show
        ckan-fiware-okfn OKFN CKAN team added a comment - The issue has been emailed: Time sent: 21/Mar/16 4:28 PM To: pasquale.vitale@eng.it with subject: *( HELP-6158 ) [Fiware-tech-help] [CKAN] CKAN and Linked Open Data * Hi Pasquale, > I have installed only the dcat plugin. Great, if you only want to produce RDF that the only one you'll need. If you want to import (harvest) RDF from other sources you'll need dcat_rdf_harvester (and the harvester extension). > I put in my ckan server two datasets (catalog.json and catalog.rdf downloaded from this link https://github.com/ckan/ckanext-dcat/tree/master/examples ). > How can I check that it works? You don't need to provide any existing RDF file. RDF serializations are generated on the fly from CKAN's internal metadata. You can access the RDF version of dataset visiting: http://yourckaninstance.com/dataset/ {dataset_name}.rdf or http://yourckaninstance.com/dataset/ {dataset_name} .ttl http://yourckaninstance.com/dataset/ {dataset_name} .jsonld This is an example from the CKAN demo site: http://demo.ckan.org/dataset/newcastle-city-council-payments-over-500.rdf There's also a catalog wide endpoint: http://demo.ckan.org/catalog.rdf Please check the ckanext-dcat docs for more details. Hope this helps, Adrià
        Hide
        pasquale.vitale Pasquale Vitale added a comment -

        Hi Adrià,
        thank you for your reply.
        I'm new in CKAN and linked open data.
        I wanted to understand how to insert a dataset in LOD format.
        To be honest, I've to store the context information (provided by Orion) in CKAN as LOD format.

        How can I provide the metadata in CKAN and retrieve the RDF file?

        Regards,
        Pasquale

        Show
        pasquale.vitale Pasquale Vitale added a comment - Hi Adrià, thank you for your reply. I'm new in CKAN and linked open data. I wanted to understand how to insert a dataset in LOD format. To be honest, I've to store the context information (provided by Orion) in CKAN as LOD format. How can I provide the metadata in CKAN and retrieve the RDF file? Regards, Pasquale
        Hide
        ckan-fiware-okfn OKFN CKAN team added a comment -

        The issue has been emailed:

        • Time sent: 22/Mar/16 12:52 PM
        • To: pasquale.vitale@eng.it
        • with subject: *(HELP-6158) [Fiware-tech-help] [CKAN] CKAN and Linked Open Data *

        Hi Pasquale,

        If you create a dataset by any means (eg via the API as suggested by your other question or via the web form) and have ckanext-dcat installed the RDF output will be automatically generated.

        If that's not what you need please can you provide more details about what you are exactly trying to achieve? I suspect that someone with more experience with Orion would be of more help here.

        Best,

        Adrià

        Show
        ckan-fiware-okfn OKFN CKAN team added a comment - The issue has been emailed: Time sent: 22/Mar/16 12:52 PM To: pasquale.vitale@eng.it with subject: *( HELP-6158 ) [Fiware-tech-help] [CKAN] CKAN and Linked Open Data * Hi Pasquale, If you create a dataset by any means (eg via the API as suggested by your other question or via the web form) and have ckanext-dcat installed the RDF output will be automatically generated. If that's not what you need please can you provide more details about what you are exactly trying to achieve? I suspect that someone with more experience with Orion would be of more help here. Best, Adrià

          People

          • Assignee:
            ckan-fiware-okfn OKFN CKAN team
            Reporter:
            pasquale.vitale Pasquale Vitale
          • Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: