Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Get "new" data into a project

Create a new classification via GUI

  1. Opens your project and check its base URI (menu Metadata) 
  2. In menu Data, tab Scheme, create a new scheme
  3. In menu Data, tab Concept, create your concepts

Clone an item, a branch, an entire code list?

...

 

This task was added here to answer a question from NFI.

Here a couple of suggestions to obtain a similar result:

  1. Suggested A similar result may be 

well, yes, there is not a clone so the quickest thing that comes to my mind is to go through a SPARQL update, possibly getting all concepts under a certain one (using the star operator with skos:broader), copying everything from the source concepts into the new ones except references to the new concepts themselves (at least those through, again, the skos:broader property), for which a new URI must be minted, possibly basing on the previous one, with a bind e.g.

bind(IRI(concat(str(?oldURI), “_new”)) as ?newURI)

...

There is no such an option from the GUI. Possible alternative would consist in generate copies of the given items via SPARQL query. The query may be stored as a parameterized SPARQL update (the parameter is the root of the branch to be cloned), so that

...

when invoking the stored parameterized update, the new root can be chosen through the UI

...

.

Visualization & GUI customization

...