[sdw] example 58 needs to describe the Section (#1304)

VladimirAlexiev has just created a new issue for https://github.com/w3c/sdw:

== example 58 needs to describe the Section ==
https://w3c.github.io/sdw/bp/#ex-geodcat-ap-dataset-conformance-with-specification2:
```ttl
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
```ttl
@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.


Please view or discuss this issue at https://github.com/w3c/sdw/issues/1304 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 21 December 2021 09:45:20 UTC