I'm new to the concept of OWL/RDF ontologies and thinking it would useful to be able to convert them to UML so I could then generate class skeletons using my IDE. Assuming this is a reasonable thing to do, can you please recommend an approach?
I'm aware that there are OWL/RDF parsers like this one, but I can't find any that will convert to UML.
EDIT:
Based on the comments let me modify the question:
When starting a new project based on an existing ontology is there a way to easily create skeleton classes as a starting point? I do not need to synchronize changes between the ontology and the classes - it is a one time setup that I expect will take a significant amount of copy and paste which strikes me as the wrong approach.
If I'm not using ontologies correctly, can you please explain what their purpose is (if any) in designing class hierarchies?
Here's an example of what I want to implement (except this is only 1 sensor and I need to implement several):
http://www.w3.org/2005/Incubator/ssn/XGR-ssn-20110628/#Smart_product_example
RDF
is usually used as dynamic bunch oftriples
and also the Wikidata uses very dynamic structure. It's used to describe physical things that don't change so often, but the software models (UML
classes) used by computers can change quite frequently. If your software would interface the current dynamic implementations you'd have to convert and regenerate the code also very often (at runtime?). What do you expect from the conversion (other then a code generator saving developer's time)? Can you provide some use cases or user stories? – xmojmr