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

Examples for compression and packaging of distributions #772

Merged
merged 4 commits into from
Feb 24, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions dcat/examples/compress&package
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .

# compression

<https://data.gov.cz/zdroj/datová-sada/247025684/22> a dcat:Distribution ;
dcat:accessURL <https://mvcr1.opendata.cz/czechpoint/2007.csv.gz> ;
dcat:downloadURL <https://mvcr1.opendata.cz/czechpoint/2007.csv.gz> ;
dct:license <https://data.gov.cz/podmínky-užití/volný-přístup/> ;
dct:conformsTo <https://mvcr1.opendata.cz/czechpoint/2007.json> ;
dct:format <http://publications.europa.eu/resource/authority/file-type/CSV> ;
dcat:mediaType <http://www.iana.org/assignments/media-types/text/csv> ;
dcat:compressFormat <http://www.iana.org/assignments/media-types/application/gzip> .

# packaging

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .

<https://data.gov.cz/zdroj/datová-sada/247025684/22> a dcat:Distribution ;
dcat:accessURL <https://mvcr1.opendata.cz/czechpoint/data.tar> ;
dcat:downloadURL <https://mvcr1.opendata.cz/czechpoint/data.tar> ;
dct:license <https://data.gov.cz/podmínky-užití/volný-přístup/> ;
dct:conformsTo <https://mvcr1.opendata.cz/czechpoint/2007.json> ;
dct:format <http://publications.europa.eu/resource/authority/file-type/CSV> ;
dcat:mediaType <http://www.iana.org/assignments/media-types/text/csv> ;
dcat:packageFormat <http://publications.europa.eu/resource/authority/file-type/TAR> .

# packaging and compression

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .

<https://data.gov.cz/zdroj/datová-sada/247025684/22> a dcat:Distribution ;
dcat:accessURL <https://mvcr1.opendata.cz/czechpoint/data.tar.gz> ;
dcat:downloadURL <https://mvcr1.opendata.cz/czechpoint/data.tar.gz> ;
dct:conformsTo <https://mvcr1.opendata.cz/czechpoint/2007.json> ;
dct:license <https://data.gov.cz/podmínky-užití/volný-přístup/> ;
dct:format <http://publications.europa.eu/resource/authority/file-type/CSV> ;
dcat:mediaType <http://www.iana.org/assignments/media-types/text/csv> ;
dcat:packageFormat <http://publications.europa.eu/resource/authority/file-type/TAR> ;
dcat:compressFormat <http://www.iana.org/assignments/media-types/application/gzip> .