Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ezs/loterre

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ezs/loterre

Loterre statements for EZS

  • 2.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Loterre

Ce plugin propose une série d'instructions spécifiques à l’usage de loterre

installation

npm install @ezs/loterre

usage

Table of Contents

SKOSHierarchy

Output:

 [
     {
         "source": ...,
         "target": ...,
         "weight": ...
     }
 ]
Parameters
  • language String Choose language of prefLabel (optional, default en)

Returns Promise Return fed Object

SKOSObject

Take Object generated by XMLMapping & SKOS data and create a new basic object with only keys & values

Parameters

Returns Object

SKOSPathEnum

Take an Object and transform "broader","narrower" and "related" properties to an 'Object' containing the prefLabel and rdf$about

<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:skos="http://www.w3.org/2004/02/skos/core#">

     <skos:Concept rdf:about="http://example.com/dishes#potatoBased">
          <skos:prefLabel xml:lang="fr">Plats à base de pomme de terre</skos:prefLabel>
          <skos:prefLabel xml:lang="en">Potato based dishes</skos:prefLabel>
          <skos:prefLabel xml:lang="de">Kartoffelgerichte</skos:prefLabel>
          <skos:inScheme rdf:resource="http://example.com/dishes"/>
          <skos:topConceptOf rdf:resource="http://example.com/dishes"/>
      </skos:Concept>

      <skos:Concept rdf:about="http://example.com/dishes#fries">
          <skos:prefLabel xml:lang="fr">Frites</skos:prefLabel>
          <skos:prefLabel xml:lang="en">French fries</skos:prefLabel>
          <skos:prefLabel xml:lang="de">Französisch frites</skos:prefLabel>
          <skos:inScheme rdf:resource="http://example.com/dishes"/>
          <skos:broader rdf:resource="http://example.com/dishes#potatoBased"/>
      </skos:Concept>

      <skos:Concept rdf:about="http://example.com/dishes#mashed">
          <skos:prefLabel xml:lang="fr">Purée de pomme de terre</skos:prefLabel>
          <skos:prefLabel xml:lang="en">Mashed potatoes</skos:prefLabel>
          <skos:prefLabel xml:lang="de">Kartoffelpüree</skos:prefLabel>
          <skos:inScheme rdf:resource="http://example.com/dishes"/>
          <skos:broader rdf:resource="http://example.com/dishes#potatoBased"/>
      </skos:Concept>

</rdf:RDF>

Script:

[use]
plugin = loterre

[concat]
[XMLParse]
separator = /rdf:RDF/skos:Concept
[SKOSObject]

[SKOSPathEnum]
path = broader
path = narrower
label = prefLabel@fr

Output:

  [
   {
      "rdf$about": "http://example.com/dishes#fries",
      "prefLabel@fr": "Frites",
      "prefLabel@en": "French fries",
      "prefLabel@de": "Französisch frites",
      "inScheme": "http://example.com/dishes",
      "broader": [ [{ "rdf$about": "http://example.com/dishes#potatoBased", "prefLabel@fr": "Plats à base de pomme de terre" }] ]
    },
    {
      "rdf$about": "http://example.com/dishes#mashed",
      "prefLabel@fr": "Purée de pomme de terre",
      "prefLabel@en": "Mashed potatoes",
      "prefLabel@de": "Kartoffelpüree",
      "inScheme": "http://example.com/dishes",
      "broader": [ [{ "rdf$about": "http://example.com/dishes#potatoBased", "prefLabel@fr": "Plats à base de pomme de terre" }] ]
    },
    {
      "rdf$about": "http://example.com/dishes#potatoBased",
      "prefLabel@fr": "Plats à base de pomme de terre",
      "prefLabel@en": "Potato based dishes",
      "prefLabel@de": "Kartoffelgerichte",
      "inScheme": "http://example.com/dishes",
      "topConceptOf": "http://example.com/dishes",
      "narrower": [
         { "rdf$about": "http://example.com/dishes#fries", "prefLabel@fr": "Frites" },
         {
             "rdf$about": "http://example.com/dishes#mashed",
             "prefLabel@fr": "Purée de pomme de terre"
         }
      ]
    }
  ]
Parameters
  • path String Choose one or more paths to enum (optional, default skos$broader)
  • path String Choose one path to select uri from found concepts (optional, default rdf$about)
  • path String Choose one path to select label from found concepts (optional, default skos$prefLabel)
  • recursion String Follow path to enum (usefull for broaderConcept) (optional, default false)

Returns Object Returns object

SKOSToGexf

Output:

 [
     {
         "source": ...,
         "target": ...,
         "weight": ...
     }
 ]
Parameters
  • language String Choose language of prefLabel (optional, default en)

Returns Promise Return fed Object

Keywords

FAQs

Package last updated on 22 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc