Skip to content

Commit

Permalink
Fixed number formatting in V1P3. Fixes #59
Browse files Browse the repository at this point in the history
  • Loading branch information
bherr2 committed Oct 23, 2023
1 parent add1ee9 commit 8a7e213
Show file tree
Hide file tree
Showing 2 changed files with 156,477 additions and 156,474 deletions.
11 changes: 7 additions & 4 deletions data-processor/queries/validation-v1p3.lg.rq
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,32 @@ WHERE {
[] a ccf:SpatialEntityDistance;
ccf:entity_a ?rui ;
ccf:entity_b ?rui_location ;
ccf:distance ?distance .
ccf:distance ?distance1 .
}
} UNION {
GRAPH ctpop:distances {
[] a ccf:SpatialEntityDistance;
ccf:entity_a ?rui_location ;
ccf:entity_b ?rui ;
ccf:distance ?distance .
ccf:distance ?distance1 .
}
}

{
GRAPH ctpop:similarities {
[] ccf:cell_source_a ?dataset ;
ccf:cell_source_b ?rui ;
ccf:similarity ?similarity .
ccf:similarity ?similarity1 .
}
} UNION {
GRAPH ctpop:similarities {
[] ccf:cell_source_a ?rui ;
ccf:cell_source_b ?dataset ;
ccf:similarity ?similarity .
ccf:similarity ?similarity1 .
}
}

BIND(xsd:decimal(?distance1) as ?distance)
BIND(xsd:decimal(?similarity1) as ?similarity)
}
ORDER BY ?sample DESC(?similarity)
Loading

0 comments on commit 8a7e213

Please sign in to comment.