Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

example 58 needs to describe the Section #1304

Open
VladimirAlexiev opened this issue Dec 21, 2021 · 0 comments
Open

example 58 needs to describe the Section #1304

VladimirAlexiev opened this issue Dec 21, 2021 · 0 comments
Assignees
Labels

Comments

@VladimirAlexiev
Copy link

https://w3c.github.io/sdw/bp/#ex-geodcat-ap-dataset-conformance-with-specification2:

a:Dataset a dcat:Dataset ;
  dcterms:conformsTo <https://www.iho.int/iho_pubs/standard/S-44_5E.pdf#Special> .

<https://www.iho.int/iho_pubs/standard/S-44_5E.pdf> 
  a dcterms:Standard , foaf:Document ;
  dcterms:title "IHO Standards for Hydrographic Surveys"@en ;
  dcterms:issued "2008-02-01"^^xsd:date ;
.

Unfortunately there's no connection between the section <https://www.iho.int/iho_pubs/standard/S-44_5E.pdf#Special> and the document <https://www.iho.int/iho_pubs/standard/S-44_5E.pdf> , so this does not really describe what the dataset conforms to (because the section has no description).

You need to describe the section itself, eg

@prefix bibo: <http://purl.org/ontology/bibo/>.

<https://www.iho.int/iho_pubs/standard/S-44_5E.pdf#Special>
  a foaf:Document, bibo:BookSection;
  dcterms:isPartOf <https://www.iho.int/iho_pubs/standard/S-44_5E.pdf> ;
  dcterms:title "Special Order survey specification";
  bibo:pages "123-134"; # or whatever it is
.

Furthermore, it would be nice to use an actual/actionable PDF fragment for the section, eg
<https://www.iho.int/iho_pubs/standard/S-44_5E.pdf#page=123>.
Unlike HTML, PDFs don't include named anchors, so #Special will just stay at the start of the PDF.

@situx situx added the bp label Jan 13, 2022
@situx situx self-assigned this Dec 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants