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

@ezs/loterre

Package Overview
Dependencies
Maintainers
2
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

  • 1.1.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
25
decreased by-68.75%
Maintainers
2
Weekly downloads
 
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

checkIfPropertyExist

Parameters

checkIfPropertyExist

Parameters

checkIfPropertyExist

Parameters

writeHierarchy

Parameters

getBroaderAndNarrower

Parameters

Returns Promise Returns object

getBroaderAndNarrower

Parameters

Returns Promise Returns object

writeEdge

Parameters

SKOSHierarchy

SKOSHierarchy Output:

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

Returns Promise Return fedd Object

SKOSHierarchy

SKOSHierarchy Output:

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

Returns Promise Return fedd Object

SKOSObject

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

Parameters

Returns Object

SKOSPathEnum

Parameters
  • language String Choose langauge of prefLabel (optional, default en)

Returns Promise Returns object

SKOSPathEnum

Takes 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]
language = 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: [ [{ key: 'http://example.com/dishes#potatoBased', label: '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: [ [{ key: 'http://example.com/dishes#potatoBased', label: '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: [
         { key: 'http://example.com/dishes#fries', label: 'Frites' },
         {
             key: 'http://example.com/dishes#mashed',
             label: 'Purée de pomme de terre'
         }
      ]
    }
  ]
Parameters
  • language String Choose langauge of prefLabel (optional, default en)

Returns Object Returns object

Keywords

FAQs

Package last updated on 20 Apr 2021

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