w3c / sdw

Repository for the Spatial Data on the Web Working Group
https://www.w3.org/2020/sdw/
150 stars 81 forks source link

example 58 needs to describe the Section #1304

Open VladimirAlexiev opened 2 years ago

VladimirAlexiev commented 2 years ago

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.