Hello,

Just to recap, I was able to reload the TDB to be migrated but my migration
process became unusually slow on the reloaded TDB.
I have found a way to get better performance again by querying the union
graph named model instead of querying the dataset.
My problem seems to be solved for now.

Thank you again for your help.
Laurent


PS
Here is the source code modified in order to querying union graph model:

String sparql = "SELECT ?annotationDimension WHERE {
        <
http://www.telemis.com/ImageAnnotation/000b3231-a9c3-42b1-bb71-2d416f729db8-msr>
<http://www.telemis.com/annotationDimension> ?annotationDimension .
}";

Dataset dataset = TDBFactory.createDataset("C:/tdb");
dataset.begin(ReadWrite.READ);
Model model = dataset.getNamedModel("urn:x-arq:UnionGraph")

try {

    try (QueryExecution queryExecution =
QueryExecutionFactory.create(sparql, model)) {

        ResultSet resultSet = queryExecution.execSelect();

        while (resultSet.hasNext()) {

            QuerySolution querySolution = resultSet.nextSolution();
            RDFNode rdfNode = querySolution.get("annotationDimension");
            if(rdfNode != null) {
                if(rdfNode.isLiteral()) {
                     // ...
                } else if(rdfNode.isResource()) {
                    // ...
                }
            }
        }
    }

} finally {
    dataset.end();
}



On 29 September 2017 at 18:10, Andy Seaborne <a...@apache.org> wrote:

>
>
> On 29/09/17 16:34, Andy Seaborne wrote:
>
>> On 29 September 2017 at 09:27, Laurent Rucquoy <
>> laurent.rucq...@telemis.com <mailto:laurent.rucq...@telemis.com>> wrote:
>>
>>     Hello,
>>
>>     After having reloaded the data, we ran our TDB migration process which
>>     starts to read the source model inculding the SPARQL queries in
>>     question in
>>     this discussion.
>>     This process part took very long to finish and this seems abnormal
>>     for us.
>>
>>     1 - Could it be due to missing indexes ?
>>
>>
>> No
>>
>> Its an issue with the data in the node table or in an index, not missing
>> something.
>>
>>     2 - Is there a tool in Jena to rebuild indexes of a reloaded TDB ?
>>
>>
>> No - TDB indexes are built as data is loaded.
>>
>>     3 - If the original TDB (before having be reloaded) contains corrupted
>>     data, is there tool in Jena to identify the concerned corrupted data ?
>>
>>
>> There may not be the the info from but it *may* be possible to find out
>>
>
> There may not be the info but it *may* be possible to find out
>
>
> more (it depends what is broken and how).
>>
>> You can try this to attempt find out what is wrong - it may not work. I
>> have not tried this but ...
>>
>>
>> (1) With no other processes using the database, take a copy of the
>> database by copying the directory.
>>
>> (2) from the command line:
>>    SELECT (count(*) AS ?C) { ?s ?p ?o }
>> (if no named graphs)
>>
>> because that does not access the node table to do the count.
>>
>> If that completes, and the count is right, then try from the command line:
>>
>> SELECT (count(*) AS ?C) { ?s ?p ?o . FILTER(?s != 1234) }
>>
>> because that forces the subject to be retrieved and nothing else.
>>
>> Same for ?p and ?o.
>>
>> This is checking the SPO index which is what ?s ?p ?o will choose.  It is
>> also the index used by backup. At least one of them should show the same
>> error.  Depending on which, it might be possible to fool the system to look
>> elsewhere as well.
>>
>>      Andy
>>
>>
>>     Thank you in advance for your help.
>>
>>     Regards,
>>     Laurent
>>
>>
>>
>>     On 28 September 2017 at 16:26, Laurent Rucquoy
>>     <laurent.rucq...@telemis.com <mailto:laurent.rucq...@telemis.com>>
>>     wrote:
>>
>>      > Hello,
>>      >
>>      > I tested the tdbdump with Jena 3 instead of Jena 2.
>>      > It seemed to finish successfully (and I was able to load this
>>     dump into a
>>      > TDB)
>>      >
>>      > Thank you for your help.
>>      >
>>      > Laurent
>>      >
>>      >
>>      > On 28 September 2017 at 14:04, Andy Seaborne <a...@apache.org
>>     <mailto:a...@apache.org>> wrote:
>>      >
>>      >>
>>      >>
>>      >> On 28/09/17 09:33, Laurent Rucquoy wrote:
>>      >> ...
>>      >>
>>      >>>
>>      >>> Note that the wrong behavior discussed here is strange because
>>     the given
>>      >>> SPARQL query does not return any data and when I remove the
>> triple
>>      >>> pattern
>>      >>> concerning the "annotationDimension" linked resource object
>>     (i.e. not a
>>      >>> literal object) the query returns the expected data (as if the
>>     linked
>>      >>> resource object did not exist... but this object exists)
>>      >>>
>>      >>>
>>      >>> I've run the tdbdump on the concerned dataset but the process
>> ended
>>      >>> earlier
>>      >>> than expected with the following stacktrace:
>>      >>>
>>      >>> com.hp.hpl.jena.tdb.TDBException: Unrecognized node id type: 10
>>      >>>          at
>>     com.hp.hpl.jena.tdb.store.NodeId.extract(NodeId.java:346)
>>      >>>          at
>>     com.hp.hpl.jena.tdb.nodetable.NodeTableInline.getNodeForNode
>>      >>> Id(
>>      >>> NodeTableInline.java:64)
>>      >>>
>>      >>
>>      >> It looks like the database files are damaged in some way - there
>>     isn't a
>>      >> "type: 10" NodeId.  It's been a long time but I don't remember
>>     any mention
>>      >> of this before for any version of TDB. (It's not the same as the
>>     "Invalid
>>      >> NodeId" errors.)
>>      >>
>>      >> All I can think is that at some time in the past, maybe a very
>>     long time
>>      >> ago, there was a non-transaction update that didn't get flushed.
>>      >>
>>      >> Or, maybe, have you run a Jena3 TDB on the database before
>>     trying to back
>>      >> it up?  I don't see why it would cause that particular message
>>     but it is a
>>      >> possibility to consider.
>>      >>
>>      >>     Andy
>>      >>
>>      >>
>>      >>          at
>>     com.hp.hpl.jena.tdb.lib.TupleLib.triple(TupleLib.java:126)
>>      >>>          at
>>     com.hp.hpl.jena.tdb.lib.TupleLib.triple(TupleLib.java:114)
>>      >>>          at
>>     com.hp.hpl.jena.tdb.lib.TupleLib.access$000(TupleLib.java:45
>>      >>> )
>>      >>>          at
>>     com.hp.hpl.jena.tdb.lib.TupleLib$3.convert(TupleLib.java:76)
>>      >>>          at
>>     com.hp.hpl.jena.tdb.lib.TupleLib$3.convert(TupleLib.java:72)
>>      >>>          at
>>     org.apache.jena.atlas.iterator.Iter$4.next(Iter.java:299)
>>      >>>          at
>>     org.apache.jena.atlas.iterator.Iter$4.next(Iter.java:299)
>>      >>>          at org.apache.jena.atlas.iterator
>> .Iter.next(Iter.java:909)
>>      >>>          at org.apache.jena.atlas.iterator.IteratorCons.next(
>>      >>> IteratorCons.java:92)
>>      >>>          at org.apache.jena.riot.system.St
>> reamRDFLib.quadsToStream(
>>      >>> StreamRDFLib.java:69)
>>      >>>          at org.apache.jena.riot.writer.NQuadsWriter.write(
>>      >>> NQuadsWriter.java:40)
>>      >>>          at org.apache.jena.riot.writer.NQuadsWriter.write(
>>      >>> NQuadsWriter.java:67)
>>      >>>          at
>>     org.apache.jena.riot.RDFDataMgr.write$(RDFDataMgr.java:1133)
>>      >>>          at
>>     org.apache.jena.riot.RDFDataMgr.write(RDFDataMgr.java:1007)
>>      >>>          at
>>     org.apache.jena.riot.RDFDataMgr.write(RDFDataMgr.java:997)
>>      >>>          at tdb.tdbdump.exec(tdbdump.java:50)
>>      >>>          at arq.cmdline.CmdMain.mainMethod(CmdMain.java:101)
>>      >>>          at arq.cmdline.CmdMain.mainRun(CmdMain.java:63)
>>      >>>          at arq.cmdline.CmdMain.mainRun(CmdMain.java:50)
>>      >>>          at tdb.tdbdump.main(tdbdump.java:32)
>>      >>>
>>      >>>
>>      >>> Thank you again for your help.
>>      >>> Sincerely,
>>      >>> Laurent
>>      >>>
>>      >>>
>>      >>>
>>      >>> On 27 September 2017 at 13:27, Lorenz Buehmann
>>     <buehm...@informatik.uni-
>>      >>> leipzig.de <http://leipzig.de>> wrote:
>>      >>>
>>      >>> Query works for me on the sample data.
>>      >>>>
>>      >>>> Btw, there is an error in the first URI in the OPTIONAL
>>     clause. I'd
>>      >>>> suggest to use SPARQL 1.1 VALUES to avoid redundant
>>     declaration of the
>>      >>>> same URI.
>>      >>>>
>>      >>>>
>>      >>>> On 27.09.2017 11 <tel:27.09.2017%2011>:35, Andy Seaborne wrote:
>>      >>>>
>>      >>>>> That's a lot of data and it's broken by email.  A small
>>     extract to
>>      >>>>> illustrate the problem is all that is needed together with a
>>     stripped
>>      >>>>> down query that shows the effect in question.  Something
>>     runnable.
>>      >>>>>
>>      >>>>> The query is different to the original a well - some of it is
>>     matching
>>      >>>>> strings so you wil need to reload the data.
>>      >>>>>
>>      >>>>>      Andy
>>      >>>>>
>>      >>>>>
>>      >>>>> On 26/09/17 20:32, Laurent Rucquoy wrote:
>>      >>>>>
>>      >>>>>> - I will test to reload the data
>>      >>>>>> - The last source code is not what I sent before because I
>>     removed
>>      >>>>>> some
>>      >>>>>> specific parts when I transcribed because I thought these
>>     parts not
>>      >>>>>> relevant for this case but I can be mistaken...
>>      >>>>>>
>>      >>>>>> - Here is a data sample:
>>      >>>>>>
>>      >>>>>> <http://www.telemis.com/CalculationCollection
>>     <http://www.telemis.com/CalculationCollection>> <
>>      >>>>>> http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>> http://www.w3.org/2000/01/rdf-schema#Class
>>     <http://www.w3.org/2000/01/rdf-schema#Class>> .
>>      >>>>>> <http://www.telemis.com/CalculationCollection
>>     <http://www.telemis.com/CalculationCollection>> <
>>      >>>>>> http://thewebsemantic.com/javaclass
>>     <http://thewebsemantic.com/javaclass>>
>>      >>>>>> "com.telemis.core.aim.base.CalculationCollection" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/uid>
>>     "654f1e39-a3ce-483d-9a49-06cd7763d53c" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation
>>     <http://www.telemis.com/ImagingObservation>> .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>>
>>     <http://www.telemis.com/imagingObservationCharacteristicCollection
>>     <http://www.telemis.com/imagingObservationCharacteristicCollection>>
>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCharacteristicColle
>>     <http://www.telemis.com/ImagingObservationCharacteristicColle>
>>      >>>>>>
>>      >>>>> ction/f5cbfd6b-062b-4ca8-9ded-3e3b83170975>
>>      >>>>
>>      >>>>>
>>      >>>>>> .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/listReferencedGeometricShape
>>     <http://www.telemis.com/listReferencedGeometricShape>>
>>      >>>>>> _:B5d507a5X3A159288c607fX3A71f1 .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/codingSchemeDesignator
>>     <http://www.telemis.com/codingSchemeDesignator>> "TELEMIS" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/codeMeaning
>>     <http://www.telemis.com/codeMeaning>> "Mpr axes" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/cagridId
>>     <http://www.telemis.com/cagridId>> "0"^^<
>>      >>>>>> http://www.w3.org/2001/XMLSchema#integer
>>     <http://www.w3.org/2001/XMLSchema#integer>> .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/comment
>>     <http://www.telemis.com/comment>>
>>      >>>>>> "0.693359375,0.0,0.0,-191.9199981689453,0.0,0.693359375,0.0,
>>      >>>>>>
>>      >>>>> -76.04000091552734,0.0,0.0,181.1597442626953,179.30000305
>>      >>>> 17578,0.0,0.0,0.0,1.0"
>>      >>>>
>>      >>>>>
>>      >>>>>> .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/codeValue
>>     <http://www.telemis.com/codeValue>> "MPR-AXES" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservation/654f1e39-a3ce-
>>     <http://www.telemis.com/ImagingObservation/654f1e39-a3ce->
>>      >>>>>>
>>      >>>>> 483d-9a49-06cd7763d53c>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/label> "Mpr axes" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCharacteristicColle
>>     <http://www.telemis.com/ImagingObservationCharacteristicColle>
>>      >>>>>>
>>      >>>>> ction/901659f6-40c0-4d9c-ae86-ab2c2044e1ae>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/listImagingObservationCharacteristic
>>     <http://www.telemis.com/listImagingObservationCharacteristic>>
>>      >>>>>> _:B5d507a5X3A159288c607fX3A71ee .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCharacteristicColle
>>     <http://www.telemis.com/ImagingObservationCharacteristicColle>
>>      >>>>>>
>>      >>>>> ction/901659f6-40c0-4d9c-ae86-ab2c2044e1ae>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/uid>
>>     "901659f6-40c0-4d9c-ae86-ab2c2044e1ae" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCharacteristicColle
>>     <http://www.telemis.com/ImagingObservationCharacteristicColle>
>>      >>>>>>
>>      >>>>> ction/901659f6-40c0-4d9c-ae86-ab2c2044e1ae>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>>
>>     http://www.telemis.com/ImagingObservationCharacteristicCollection
>>     <http://www.telemis.com/ImagingObservationCharacteristicCollection>>
>> .
>>      >>>>>> _:B5d507a5X3A159288c607fX3A71f1 <
>>      >>>>>> http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>> http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq>> .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCharacteristicColle
>>     <http://www.telemis.com/ImagingObservationCharacteristicColle>
>>      >>>>>>
>>      >>>>> ction/ee462cca-8b50-407d-a478-d95a3474a493>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/listImagingObservationCharacteristic
>>     <http://www.telemis.com/listImagingObservationCharacteristic>>
>>      >>>>>> _:B5d507a5X3A159288c607fX3A71ec .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCharacteristicColle
>>     <http://www.telemis.com/ImagingObservationCharacteristicColle>
>>      >>>>>>
>>      >>>>> ction/ee462cca-8b50-407d-a478-d95a3474a493>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/uid>
>>     "ee462cca-8b50-407d-a478-d95a3474a493" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCharacteristicColle
>>     <http://www.telemis.com/ImagingObservationCharacteristicColle>
>>      >>>>>>
>>      >>>>> ction/ee462cca-8b50-407d-a478-d95a3474a493>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>>
>>     http://www.telemis.com/ImagingObservationCharacteristicCollection
>>     <http://www.telemis.com/ImagingObservationCharacteristicCollection>>
>> .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/cagridId
>>     <http://www.telemis.com/cagridId>> "0"^^<
>>      >>>>>> http://www.w3.org/2001/XMLSchema#integer
>>     <http://www.w3.org/2001/XMLSchema#integer>> .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/description
>>     <http://www.telemis.com/description>> "" .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/uid>
>>     "1bd11b50-dd4f-44f5-8ed6-79ec5cd3150d" .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/codeValueCanBeNull
>>     <http://www.telemis.com/codeValueCanBeNull>> "false"^^<
>>      >>>>>> http://www.w3.org/2001/XMLSchema#boolean
>>     <http://www.w3.org/2001/XMLSchema#boolean>> .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/codeValue
>>     <http://www.telemis.com/codeValue>> "R-00317" .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>> http://www.telemis.com/Calculation
>>     <http://www.telemis.com/Calculation>> .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/codingSchemeDesignator
>>     <http://www.telemis.com/codingSchemeDesignator>> "SRT" .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/calculationResultCollection
>>     <http://www.telemis.com/calculationResultCollection>> <
>>      >>>>>> http://www.telemis.com/CalculationResultCollection/8fe14cc4-
>>     <http://www.telemis.com/CalculationResultCollection/8fe14cc4->
>>      >>>>>>
>>      >>>>> 2471-4068-a42a-df359a7b1fc3>
>>      >>>>
>>      >>>>>
>>      >>>>>> .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/codeMeaning
>>     <http://www.telemis.com/codeMeaning>> "Mean" .
>>      >>>>>> <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6-
>>     <http://www.telemis.com/Calculation/1bd11b50-dd4f-44f5-8ed6->
>>      >>>>>>
>>      >>>>> 79ec5cd3150d>
>>      >>>>
>>      >>>>> <
>>      >>>>>> http://www.telemis.com/isMaster
>>     <http://www.telemis.com/isMaster>> "true"^^<
>>      >>>>>> http://www.w3.org/2001/XMLSchema#boolean
>>     <http://www.w3.org/2001/XMLSchema#boolean>> .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCollection/03ca67c4
>>     <http://www.telemis.com/ImagingObservationCollection/03ca67c4>
>>      >>>>>>
>>      >>>>> -462a-4d32-8cc5-90ddda3721ee>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/listImagingObservation
>>     <http://www.telemis.com/listImagingObservation>>
>>      >>>>>> _:B5d507a5X3A159288c607fX3A71eb .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCollection/03ca67c4
>>     <http://www.telemis.com/ImagingObservationCollection/03ca67c4>
>>      >>>>>>
>>      >>>>> -462a-4d32-8cc5-90ddda3721ee>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/uid>
>>     "03ca67c4-462a-4d32-8cc5-90ddda3721ee" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCollection/03ca67c4
>>     <http://www.telemis.com/ImagingObservationCollection/03ca67c4>
>>      >>>>>>
>>      >>>>> -462a-4d32-8cc5-90ddda3721ee>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>> http://www.telemis.com/ImagingObservationCollection
>>     <http://www.telemis.com/ImagingObservationCollection>> .
>>      >>>>>> _:B5d507a5X3A159288c607fX3A71ef <
>>      >>>>>> http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>> http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq>> .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/CalculationResultCollection/8fe14cc4-
>>     <http://www.telemis.com/CalculationResultCollection/8fe14cc4->
>>      >>>>>>
>>      >>>>> 2471-4068-a42a-df359a7b1fc3>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/listCalculationResult
>>     <http://www.telemis.com/listCalculationResult>>
>>      >>>>>> _:B5d507a5X3A159288c607fX3A71db .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/CalculationResultCollection/8fe14cc4-
>>     <http://www.telemis.com/CalculationResultCollection/8fe14cc4->
>>      >>>>>>
>>      >>>>> 2471-4068-a42a-df359a7b1fc3>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.telemis.com/uid>
>>     "8fe14cc4-2471-4068-a42a-df359a7b1fc3" .
>>      >>>>>> <
>>      >>>>>> http://www.telemis.com/CalculationResultCollection/8fe14cc4-
>>     <http://www.telemis.com/CalculationResultCollection/8fe14cc4->
>>      >>>>>>
>>      >>>>> 2471-4068-a42a-df359a7b1fc3>
>>      >>>>
>>      >>>>>
>>      >>>>>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type
>>     <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>> <
>>      >>>>>> http://www.telemis.com/CalculationResultCollection
>>     <http://www.telemis.com/CalculationResultCollection>> .
>>      >>>>>>
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0>>
>> <
>>      >>>>>> http://www.telemis.com/cagridId
>>     <http://www.telemis.com/cagridId>> "0"^^<
>>      >>>>>> http://www.w3.org/2001/XMLSchema#integer
>>     <http://www.w3.org/2001/XMLSchema#integer>> .
>>      >>>>>>
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0>>
>> <
>>      >>>>>> http://www.telemis.com/xsiType> "Point" .
>>      >>>>>>
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0>>
>> <
>>      >>>>>> http://www.telemis.com/lineOpacity
>>     <http://www.telemis.com/lineOpacity>> "" .
>>      >>>>>>
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0>>
>> <
>>      >>>>>> http://www.telemis.com/lineStyle
>>     <http://www.telemis.com/lineStyle>> "" .
>>      >>>>>>
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0>>
>> <
>>      >>>>>> http://www.telemis.com/uid>
>>     "1cf0533a-cc71-4fae-a1a8-dc775b2b36d0" .
>>      >>>>>>
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0>>
>> <
>>      >>>>>> http://www.telemis.com/lineThickness
>>     <http://www.telemis.com/lineThickness>> "" .
>>      >>>>>>
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0>>
>> <
>>      >>>>>> http://www.telemis.com/spatialCoordinateCollection
>>     <http://www.telemis.com/spatialCoordinateCollection>> <
>>      >>>>>> http://www.telemis.com/SpatialCoordinateCollection/1cf0533a-
>>     <http://www.telemis.com/SpatialCoordinateCollection/1cf0533a->
>>      >>>>>>
>>      >>>>> cc71-4fae-a1a8-dc775b2b36d0>
>>      >>>>
>>      >>>>>
>>      >>>>>> .
>>      >>>>>>
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0
>>     <http://www.telemis.com/Point/1cf0533a-cc71-4fae-a1a8-dc775b2b36d0>>
>> <
>>      >>>>>> http://www.telemis.com/lineColor
>
>

Reply via email to