-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
importing ontologies without aeon:SMW_datatype #31
Comments
Find the datatypesis rdf:type value always a owl:XYZ ?Or do ontology designers use other strategies to define a term as class / DatatypeProperty / ObjectProperty? determine
|
Mapping xsd datatypes to SMW datatypes{
'xsd:string': 'Text',
'rdfs:Literal': 'Text',
'xsd:Name': 'Text',
'xsd:normalizedString': 'Text',
'xsd:decimal': 'Number',
'xsd:float': 'Number',
'xsd:integer': 'Number',
'xsd:nonNegativeInteger': 'Number',
'xsd:positiveInteger': 'Number',
'xsd:nonPositiveInteger': 'Number',
'xsd:negativeInteger': 'Number',
'xsd:positiveInteger': 'Number',
'xsd:int': 'Number',
'xsd:double': 'Number',
'xsd:long': 'Number',
'xsd:short': 'Number',
'xsd:unsignedLong': 'Number',
'xsd:byte': 'Number',
'xsd:boolean': 'Boolean',
'xsd:dateTime': 'Date',
'xsd:time': 'Text',
'xsd:date': 'Date',
'xsd:gYearMonth': 'Date',
'xsd:dateTime': 'Date',
'xsd:gYear': 'Date',
'xsd:gMonthDay': 'Text',
'xsd:gDay': 'Text',
'xsd:gMonth': 'Text',
'xsd:anyURI': 'URL',
'xsd:language': 'Text'
} |
Prefixes & Namespaces from http://prefix.cc/ in ontology2smw/queries/all_ns_prefixes.json |
closed by #56 |
Currently ontology2smw import to wiki only the terms which contain a value to the property
aeon:SMW_datatype
as visible in SPARQL query_classes_properties.rqI would like to make ontology2smw able to import other ontologies terms, even if they do not have
aeon:SMW_datatype
, as for instance datacite datacite ttl OR GND Ontology (gndo) gndo ttlDevelopment Steps
The text was updated successfully, but these errors were encountered: