Skip to content

Commit

Permalink
fix: shape issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximvdw committed Dec 1, 2023
1 parent fd64cd1 commit 52c9f2a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 1.0/fidmark.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ Whereas ARTag has highly robust error detection and correction, it suffers from
rdfs:subClassOf :Barcode2D ;
:color "Monochrome"@en ;
:encoding "Topological"@en ;
:shape "Square"@en, :shape "Rectangular"@en ;
:shape "Square"@en, "Rectangular"@en ;
rdfs:comment "The CyberCode is a visual tagging system based on a 2D-barcode technology and provides several features not provided by other tagging systems. CyberCode tags can be recognized by the low-cost CMOS or CCD cameras found in more and more mobile devices, and it can also be used to determine the 3D position of the tagged object as well as its ID number." ;
rdfs:isDefinedBy "https://dl.acm.org/doi/abs/10.1145/354666.354667"^^xsd:anyURI ;
rdfs:label "CyberCode" .
Expand Down
11 changes: 11 additions & 0 deletions website/_scripts/ontology.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ async function buildOntology(version = '1.0') {
const widocoJar = await downloadWidoco();
await rmdir(path.join(__dirname, `../_site/${version}/`));

// Main
await executeWidoco(
widocoJar,
path.join(__dirname, `../../${version}/fidmark.ttl`),
Expand All @@ -24,6 +25,16 @@ async function buildOntology(version = '1.0') {
fse.copySync(path.join(__dirname, `../_site/${version}/doc`), path.join(__dirname, `../_site/${version}`));
await rewriteLanguagePaths(path.join(__dirname, `../_site/${version}`));
await rmdir(path.join(__dirname, `../_site/${version}/doc`));

// Dicom
await executeWidoco(
widocoJar,
path.join(__dirname, `../../${version}/dicom/fidmark-dicom.ttl`),
path.join(__dirname, `../_site/${version}/dicom`)
);
fse.copySync(path.join(__dirname, `../_site/${version}/dicom/doc`), path.join(__dirname, `../_site/${version}/dicom`));
await rewriteLanguagePaths(path.join(__dirname, `../_site/${version}/dicom`));
await rmdir(path.join(__dirname, `../_site/${version}/dicom/doc`));
}

async function downloadWidoco(version = "1.4.17") {
Expand Down

0 comments on commit 52c9f2a

Please sign in to comment.