tohsato wrote:Dear All
Hi Yukako,
Can you please give me information on how to describe PDF using ontologies
for the meta-information in OME-XML (or OME-TIFF) files?
I don't know if we have any immediate solutions, but perhaps we can work something out.
Interesting! Could you possibly attach or paste a sample of the BDML and the OME-XML files that you already have, so we have something concrete to discuss?
I'm looking for examples of such RDF descriptions (especially, about xyz-t dimensions
and their scale units....) and information about relevant Web sites.
If you really want every piece of OME metadata available as an RDF, then currently there's nothing provided in the standard. There was some work in Australia to take a previous version of the OME-XML specification and turn it into OWL:
http://www.itee.uq.edu.au/eresearch/projects/fusion/omeI think this or related work was written up in The Semantic Web - ISWC 2004: Third International Semantic Web Conference as "Rules-By-Example - A Novel Approach to Semantic Indexing and Querying of Images", Suzanne Little and Jane Hunter.
If there's interest in that kind of representation, then it would be good to hear it.
However, there's another intermediate step that we could use, and for which a concrete example would be useful. RDF ultimately just consists of URI-URI-(URI|value) triples. If we could provide you useful URIs say for the RDF
predicate, then you might be able to write something of the form:
- Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE RDF [
<!ENTITY ome "https://www.openmicroscopy.org/Schemas/Documentation/Generated/OME-2015-01/ome_xsd.html#" >
]>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ome="&ome;" ...>
<rdf:Description
rdf:about="YOUR-RESOURCE-HERE">
<ome:Pixels_SizeX>512</ome:Pixels_SizeX>
</rdf:Description>
Best,
Yukako.
Cheers,
~Josh.