-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [x] introduce new simplified mapping file schema - [x] introduce qudt and csvw for table annotation - [x] introduce pydantic into the package - [x] make method graph optional - [x] introduce new standard method graph using provo - [x] general package maintainance - [x] refactor modules - [x] add utility to read qudt-mapping from unit-symbols - [x] add utility to generate subgraph for quantity description using qudt - [x] support json files as input for mapping files - [x] drop unneeded intermediate file outputs - [x] update excel parser with new parsing logic - [x] add json parser - [x] add TBox mode for writing ontology classes - [x] update documentation
- Loading branch information
1 parent
8f36003
commit 9e93f9f
Showing
171 changed files
with
17,960 additions
and
5,216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
"""Data2RDF""" | ||
|
||
from .config import Config | ||
from .parsers import Parser | ||
from .pipelines import Data2RDF | ||
|
||
from .models import ( # isort:skip | ||
ABoxBaseMapping, | ||
BasicConceptMapping, | ||
PropertyGraph, | ||
QuantityGraph, | ||
) | ||
|
||
__all__ = [ | ||
"Data2RDF", | ||
"Config", | ||
"QuantityGraph", | ||
"PropertyGraph", | ||
"ABoxBaseMapping", | ||
"BasicConceptMapping", | ||
"Parser", | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.