commonmeta-ruby 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/build.yml +38 -0
- data/.github/workflows/changelog.yml +36 -0
- data/.github/workflows/codeql-analysis.yml +72 -0
- data/.github/workflows/rubocop.yml +50 -0
- data/.gitignore +59 -0
- data/.rubocop.yml +182 -0
- data/.rubocop_todo.yml +76 -0
- data/.tool-versions +1 -0
- data/CHANGELOG.md +124 -0
- data/CITATION +16 -0
- data/CITATION.cff +20 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +270 -0
- data/LICENSE.md +21 -0
- data/README.md +733 -0
- data/Rakefile +13 -0
- data/bin/commonmeta +9 -0
- data/commonmeta.gemspec +68 -0
- data/lib/commonmeta/array.rb +13 -0
- data/lib/commonmeta/author_utils.rb +172 -0
- data/lib/commonmeta/cli.rb +70 -0
- data/lib/commonmeta/crossref_utils.rb +343 -0
- data/lib/commonmeta/doi_utils.rb +81 -0
- data/lib/commonmeta/metadata.rb +269 -0
- data/lib/commonmeta/metadata_utils.rb +184 -0
- data/lib/commonmeta/pubmed.rb +36 -0
- data/lib/commonmeta/readers/bibtex_reader.rb +62 -0
- data/lib/commonmeta/readers/cff_reader.rb +146 -0
- data/lib/commonmeta/readers/codemeta_reader.rb +90 -0
- data/lib/commonmeta/readers/crossref_reader.rb +186 -0
- data/lib/commonmeta/readers/crossref_xml_reader.rb +379 -0
- data/lib/commonmeta/readers/csl_reader.rb +85 -0
- data/lib/commonmeta/readers/datacite_reader.rb +169 -0
- data/lib/commonmeta/readers/npm_reader.rb +94 -0
- data/lib/commonmeta/readers/ris_reader.rb +66 -0
- data/lib/commonmeta/readers/schema_org_reader.rb +300 -0
- data/lib/commonmeta/schema_utils.rb +19 -0
- data/lib/commonmeta/string.rb +7 -0
- data/lib/commonmeta/utils.rb +1351 -0
- data/lib/commonmeta/version.rb +5 -0
- data/lib/commonmeta/whitelist_scrubber.rb +54 -0
- data/lib/commonmeta/writers/bibtex_writer.rb +36 -0
- data/lib/commonmeta/writers/cff_writer.rb +63 -0
- data/lib/commonmeta/writers/citation_writer.rb +14 -0
- data/lib/commonmeta/writers/codemeta_writer.rb +33 -0
- data/lib/commonmeta/writers/crossref_xml_writer.rb +11 -0
- data/lib/commonmeta/writers/csl_writer.rb +11 -0
- data/lib/commonmeta/writers/csv_writer.rb +26 -0
- data/lib/commonmeta/writers/datacite_writer.rb +94 -0
- data/lib/commonmeta/writers/jats_writer.rb +138 -0
- data/lib/commonmeta/writers/rdf_xml_writer.rb +11 -0
- data/lib/commonmeta/writers/ris_writer.rb +41 -0
- data/lib/commonmeta/writers/schema_org_writer.rb +61 -0
- data/lib/commonmeta/writers/turtle_writer.rb +11 -0
- data/lib/commonmeta/xml_converter.rb +14 -0
- data/lib/commonmeta.rb +35 -0
- data/resources/2008/09/xsd.xsl +997 -0
- data/resources/cff.json +1827 -0
- data/resources/commonmeta_v0.9.json +393 -0
- data/resources/crossref/AccessIndicators.xsd +47 -0
- data/resources/crossref/JATS-journalpublishing1-3d2-mathml3-elements.xsd +10130 -0
- data/resources/crossref/JATS-journalpublishing1-3d2-mathml3.xsd +48 -0
- data/resources/crossref/JATS-journalpublishing1-elements.xsd +8705 -0
- data/resources/crossref/JATS-journalpublishing1-mathml3-elements.xsd +8608 -0
- data/resources/crossref/JATS-journalpublishing1-mathml3.xsd +49 -0
- data/resources/crossref/JATS-journalpublishing1.xsd +6176 -0
- data/resources/crossref/clinicaltrials.xsd +61 -0
- data/resources/crossref/common5.3.1.xsd +1530 -0
- data/resources/crossref/crossref5.3.1.xsd +1949 -0
- data/resources/crossref/crossref_query_output3.0.xsd +1097 -0
- data/resources/crossref/fundref.xsd +49 -0
- data/resources/crossref/module-ali.xsd +39 -0
- data/resources/crossref/relations.xsd +444 -0
- data/resources/datacite-contributorType-v4.xsd +35 -0
- data/resources/datacite-dateType-v4.xsd +25 -0
- data/resources/datacite-descriptionType-v4.xsd +19 -0
- data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
- data/resources/datacite-nameType-v4.xsd +10 -0
- data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
- data/resources/datacite-relationType-v4.xsd +49 -0
- data/resources/datacite-resourceType-v4.xsd +28 -0
- data/resources/datacite-titleType-v4.xsd +14 -0
- data/resources/datacite-v3.json +508 -0
- data/resources/datacite-v4.json +512 -0
- data/resources/kernel-3.0/include/datacite-contributorType-v3.xsd +33 -0
- data/resources/kernel-3.0/include/datacite-dateType-v3.xsd +21 -0
- data/resources/kernel-3.0/include/datacite-descriptionType-v3.xsd +17 -0
- data/resources/kernel-3.0/include/datacite-relatedIdentifierType-v3.xsd +27 -0
- data/resources/kernel-3.0/include/datacite-relationType-v3.xsd +33 -0
- data/resources/kernel-3.0/include/datacite-resourceType-v3.xsd +26 -0
- data/resources/kernel-3.0/include/datacite-titleType-v3.xsd +12 -0
- data/resources/kernel-3.0/include/xml.xsd +286 -0
- data/resources/kernel-3.0/metadata.xsd +377 -0
- data/resources/kernel-4/include/datacite-contributorType-v4.xsd +35 -0
- data/resources/kernel-4/include/datacite-dateType-v4.xsd +25 -0
- data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +19 -0
- data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +16 -0
- data/resources/kernel-4/include/datacite-nameType-v4.xsd +10 -0
- data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
- data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
- data/resources/kernel-4/include/datacite-relationType-v4.xsd +51 -0
- data/resources/kernel-4/include/datacite-resourceType-v4.xsd +43 -0
- data/resources/kernel-4/include/datacite-titleType-v4.xsd +14 -0
- data/resources/kernel-4/include/xml.xsd +286 -0
- data/resources/kernel-4/metadata.xsd +707 -0
- data/resources/oecd/dfg-mappings.json +1866 -0
- data/resources/oecd/for-mappings.json +1099 -0
- data/resources/oecd/fos-mappings.json +198 -0
- data/resources/schema_org/jsonldcontext.json +7477 -0
- data/resources/spdx/licenses.json +5297 -0
- data/resources/xml.xsd +286 -0
- data/rubocop.sarif +0 -0
- data/sonar-project.properties +11 -0
- data/spec/array_spec.rb +22 -0
- data/spec/author_utils_spec.rb +132 -0
- data/spec/cli_spec.rb +309 -0
- data/spec/doi_utils_spec.rb +318 -0
- data/spec/find_from_format_spec.rb +144 -0
- data/spec/fixtures/CITATION.cff +83 -0
- data/spec/fixtures/aida.json +82 -0
- data/spec/fixtures/cgimp_package.json +18 -0
- data/spec/fixtures/cit_package.json +19 -0
- data/spec/fixtures/citeproc-no-author.json +26 -0
- data/spec/fixtures/citeproc-no-categories.json +21 -0
- data/spec/fixtures/citeproc.json +30 -0
- data/spec/fixtures/codemeta.json +86 -0
- data/spec/fixtures/codemeta_v2.json +86 -0
- data/spec/fixtures/crosscite.json +63 -0
- data/spec/fixtures/crossref.bib +14 -0
- data/spec/fixtures/crossref.json +572 -0
- data/spec/fixtures/crossref.ris +15 -0
- data/spec/fixtures/crossref.xml +606 -0
- data/spec/fixtures/datacite.json +86 -0
- data/spec/fixtures/datacite_software.json +21 -0
- data/spec/fixtures/datacite_software_missing_comma.json +18 -0
- data/spec/fixtures/datacite_software_overlapping_keys.json +18 -0
- data/spec/fixtures/datacite_software_version.json +74 -0
- data/spec/fixtures/edam_package.json +12 -0
- data/spec/fixtures/maremma/codemeta.json +36 -0
- data/spec/fixtures/pure.bib +14 -0
- data/spec/fixtures/pure.ris +15 -0
- data/spec/fixtures/pure.xml +188 -0
- data/spec/fixtures/ris_bug.ris +9 -0
- data/spec/fixtures/schema_4.0.xml +140 -0
- data/spec/fixtures/schema_org.json +49 -0
- data/spec/fixtures/schema_org_front-matter.json +32 -0
- data/spec/fixtures/schema_org_geolocation.json +82 -0
- data/spec/fixtures/schema_org_geoshape.json +550 -0
- data/spec/fixtures/schema_org_gtex.json +75 -0
- data/spec/fixtures/schema_org_list.json +12623 -0
- data/spec/fixtures/schema_org_tdl_iodp_invalid_authors.json +25 -0
- data/spec/fixtures/schema_org_topmed.json +53 -0
- data/spec/fixtures/schema_org_type_as_array.json +41 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/default.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_bibtex.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_datacite.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_schema_org.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/default.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/default.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_citation.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_jats.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/default.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_citation.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_jats.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/default.yml +1098 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_datacite.yml +1098 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_schema_org.yml +1100 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/jalc.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/kisti.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/medra.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/op.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/author.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/no_author.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/single_author.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/with_organization.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/jalc.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/kisti.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/medra.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/not_found.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/op.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_for_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_no_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org/with_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/with_affiliation.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/without_affiliation.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +359 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/JaLC.yml +384 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/KISTI.yml +330 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/OP.yml +969 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book.yml +312 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/author_literal.yml +492 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book.yml +523 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_oup.yml +289 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/component.yml +289 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dissertation.yml +301 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article.yml +461 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with.yml +470 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/markup.yml +329 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/peer_review.yml +287 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content.yml +326 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/report_osti.yml +315 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_raw/journal_article.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/dissertation.yml +152 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/funding_references.yml +175 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date/publication_date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/future.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/invalid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/nil.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/past.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/present.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_familyName.yml +133 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/is_organization.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/only_familyName_and_givenName.yml +468 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/pangaea.yml +468 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/only_title.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_cff_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_codemeta_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_cff_file.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_file.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_comma.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_family_name.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_id.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_known_given_name.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_no_info.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_orcid_id.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_type_organization.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/json_schema_errors/is_valid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/not_found.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi_as_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/filename.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/ftp.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/invalid_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_options.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url_with_utf-8.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_empty_array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/uri.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array_of_strings.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/first.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/nil.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_anothe_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/encode_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/removes_a_tags.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_exists.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org/with_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/DOI.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/ISSN.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/URL.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/text.yml +100 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/container_title.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software.yml +90 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/text.yml +100 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/default.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_bibtex.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_datacite.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_schema_org.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/default.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/default.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_citation.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_jats.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/default.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_citation.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_jats.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/default.yml +1096 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_datacite.yml +1096 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_schema_org.yml +1098 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/jalc.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/kisti.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/medra.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/op.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/jalc.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/kisti.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/medra.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/not_found.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/op.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_for_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_no_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/from_schema_org/with_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +170 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/JaLC.yml +384 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/KISTI.yml +330 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/OP.yml +969 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book.yml +312 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/author_literal.yml +492 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book.yml +523 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_oup.yml +289 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/component.yml +289 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset.yml +300 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dissertation.yml +301 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article.yml +461 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with.yml +908 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/markup.yml +329 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/peer_review.yml +287 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content.yml +326 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/report_osti.yml +315 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_raw/journal_article.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/dissertation.yml +152 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/funding_references.yml +175 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date/publication_date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/future.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/invalid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/nil.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/past.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/present.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_familyName.yml +133 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/only_familyName_and_givenName.yml +467 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/pangaea.yml +467 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/only_title.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_cff_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_codemeta_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_cff_file.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_file.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/json_schema_errors/is_valid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/not_found.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi_as_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/filename.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/ftp.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/invalid_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_options.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url_with_utf-8.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_empty_array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/uri.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array_of_strings.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/first.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/nil.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_anothe_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/encode_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/removes_a_tags.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_exists.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org/with_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/DOI.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/ISSN.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/URL.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/text.yml +100 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/container_title.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software.yml +90 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/text.yml +100 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/dissertation.yml +218 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/journal_article.yml +407 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
- data/spec/fixtures/vivli.xml +17 -0
- data/spec/metadata_spec.rb +147 -0
- data/spec/readers/bibtex_reader_spec.rb +58 -0
- data/spec/readers/cff_reader_spec.rb +148 -0
- data/spec/readers/codemeta_reader_spec.rb +116 -0
- data/spec/readers/crossref_reader_spec.rb +919 -0
- data/spec/readers/crossref_xml_reader_spec.rb +948 -0
- data/spec/readers/csl_reader_spec.rb +61 -0
- data/spec/readers/datacite_reader_spec.rb +156 -0
- data/spec/readers/npm_reader_spec.rb +69 -0
- data/spec/readers/ris_reader_spec.rb +70 -0
- data/spec/readers/schema_org_reader_spec.rb +416 -0
- data/spec/schema_utils_spec.rb +16 -0
- data/spec/spec_helper.rb +96 -0
- data/spec/utils_spec.rb +631 -0
- data/spec/writers/bibtex_writer_spec.rb +160 -0
- data/spec/writers/cff_writer_spec.rb +118 -0
- data/spec/writers/citation_writer_spec.rb +51 -0
- data/spec/writers/codemeta_writer_spec.rb +47 -0
- data/spec/writers/crossref_xml_writer_spec.rb +173 -0
- data/spec/writers/csl_writer_spec.rb +291 -0
- data/spec/writers/csv_writer_spec.rb +82 -0
- data/spec/writers/datacite_writer_spec.rb +150 -0
- data/spec/writers/jats_writer_spec.rb +210 -0
- data/spec/writers/rdf_xml_writer_spec.rb +91 -0
- data/spec/writers/ris_writer_spec.rb +206 -0
- data/spec/writers/schema_org_writer_spec.rb +301 -0
- data/spec/writers/turtle_writer_spec.rb +85 -0
- metadata +1514 -0
@@ -0,0 +1,468 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://doi.pangaea.de/10.1594/PANGAEA.836178
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Connection:
|
11
|
+
- close
|
12
|
+
Host:
|
13
|
+
- doi.pangaea.de
|
14
|
+
User-Agent:
|
15
|
+
- http.rb/5.1.1
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Server:
|
22
|
+
- nginx/1.23.3
|
23
|
+
Date:
|
24
|
+
- Tue, 14 Mar 2023 11:45:46 GMT
|
25
|
+
Content-Type:
|
26
|
+
- text/html;charset=utf-8
|
27
|
+
Transfer-Encoding:
|
28
|
+
- chunked
|
29
|
+
Connection:
|
30
|
+
- close
|
31
|
+
Set-Cookie:
|
32
|
+
- pansessid=1781e3351cbcf0d9f55e5d0deb024b1e; Path=/; Domain=.pangaea.de; Secure;
|
33
|
+
HttpOnly
|
34
|
+
Vary:
|
35
|
+
- Cookie, Authorization, Accept
|
36
|
+
Cache-Control:
|
37
|
+
- public
|
38
|
+
X-Cid:
|
39
|
+
- 1781e3351cbcf0d9f55e5d0deb024b1e
|
40
|
+
Link:
|
41
|
+
- <https://doi.org/10.1594/PANGAEA.836178>;rel="cite-as", <https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_datacite4>;rel="describedby";type="application/vnd.datacite.datacite+xml",
|
42
|
+
<https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_iso19139>;rel="describedby";type="application/vnd.iso19139.metadata+xml",
|
43
|
+
<https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_panmd>;rel="describedby";type="application/vnd.pangaea.metadata+xml",
|
44
|
+
<https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_dif>;rel="describedby";type="application/vnd.nasa.dif-metadata+xml",
|
45
|
+
<https://doi.pangaea.de/10.1594/PANGAEA.836178?format=citation_ris>;rel="describedby";type="application/x-research-info-systems",
|
46
|
+
<https://doi.pangaea.de/10.1594/PANGAEA.836178?format=citation_text>;rel="describedby";type="text/x-bibliography",
|
47
|
+
<https://doi.pangaea.de/10.1594/PANGAEA.836178?format=citation_bibtex>;rel="describedby";type="application/x-bibtex",
|
48
|
+
<https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_jsonld>;rel="describedby";type="application/ld+json",
|
49
|
+
<https://store.pangaea.de/Publications/JohanssonE_et_al_2014/johansson_etal-2014.zip>;rel="item";type="application/zip",
|
50
|
+
<https://orcid.org/0000-0002-6553-8982>;rel="author", <https://orcid.org/0000-0001-6058-1466>;rel="author"
|
51
|
+
X-Powered-By:
|
52
|
+
- Jetty(10.0.14)
|
53
|
+
Strict-Transport-Security:
|
54
|
+
- max-age=31536000
|
55
|
+
X-Ua-Compatible:
|
56
|
+
- IE=Edge
|
57
|
+
X-Content-Type-Options:
|
58
|
+
- nosniff
|
59
|
+
X-Frame-Options:
|
60
|
+
- SAMEORIGIN
|
61
|
+
body:
|
62
|
+
encoding: UTF-8
|
63
|
+
string: "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\n<meta charset=\"UTF-8\">\r\n<meta
|
64
|
+
name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1,
|
65
|
+
maximum-scale=1, user-scalable=no\">\r\n<link rel=\"stylesheet\" href=\"//fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,700,700italic,600italic,300,300italic,800,800italic\">\n<link
|
66
|
+
rel=\"stylesheet\" href=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/bootstrap-24col/css/bootstrap.min.css\">\n<link
|
67
|
+
rel=\"stylesheet\" href=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/css/pangaea.css\">\n<!--[if
|
68
|
+
lte IE 9]>\r\n<style>#topics-pulldown-wrapper label:after { display:none;
|
69
|
+
}</style>\r\n<![endif]-->\r\n<link rel=\"shortcut icon\" href=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/favicon.ico\">\r\n<link
|
70
|
+
rel=\"icon\" href=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/favicon.ico\"
|
71
|
+
type=\"image/vnd.microsoft.icon\">\r\n<link rel=\"image_src\" type=\"image/png\"
|
72
|
+
href=\"https://www.pangaea.de/assets/social-icons/pangaea-share.png\">\r\n<meta
|
73
|
+
property=\"og:image\" content=\"https://www.pangaea.de/assets/social-icons/pangaea-share.png\">\r\n<script
|
74
|
+
type=\"text/javascript\" src=\"//cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js\"></script>\n<script
|
75
|
+
type=\"text/javascript\" src=\"//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js\"></script>\n<script
|
76
|
+
type=\"text/javascript\" src=\"//cdnjs.cloudflare.com/ajax/libs/jquery.appear/0.4.1/jquery.appear.min.js\"></script>\n<script
|
77
|
+
type=\"text/javascript\" src=\"//cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.1/chart.min.js\"></script>\n<script
|
78
|
+
type=\"text/javascript\" src=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/bootstrap-24col/js/bootstrap.min.js\"></script>\n<script
|
79
|
+
type=\"text/javascript\" src=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/js/datacombo-min.js\"></script>\n<title>Johansson,
|
80
|
+
E et al. (2014): Hydrological and meteorological investigations in a lake
|
81
|
+
near Kangerlussuaq, west Greenland</title>\n<meta name=\"title\" content=\"Hydrological
|
82
|
+
and meteorological investigations in a lake near Kangerlussuaq, west Greenland\"
|
83
|
+
/>\n<meta name=\"author\" content=\"Johansson, Emma; Berglund, Sten; Lindborg,
|
84
|
+
Tobias; Petrone, Johannes; van As, Dirk; Gustafsson, Lars-Göran; Näslund,
|
85
|
+
Jens-Ove; Laudon, Hjalmar\" />\n<meta name=\"date\" content=\"2014-09-25\"
|
86
|
+
/>\n<meta name=\"description\" content=\"Johansson, Emma; Berglund, Sten;
|
87
|
+
Lindborg, Tobias; Petrone, Johannes; van As, Dirk; Gustafsson, Lars-Göran;
|
88
|
+
Näslund, Jens-Ove; Laudon, Hjalmar (2014): Hydrological and meteorological
|
89
|
+
investigations in a lake near Kangerlussuaq, west Greenland. PANGAEA, https://doi.org/10.1594/PANGAEA.836178,
|
90
|
+
Supplement to: Johansson, E et al. (2015): Hydrological and meteorological
|
91
|
+
investigations in a periglacial lake catchment near Kangerlussuaq, west Greenland
|
92
|
+
– presentation of a new multi-parameter data set. Earth System Science Data,
|
93
|
+
7(1), 93-108, https://doi.org/10.5194/essd-7-93-2015\" />\n<meta name=\"geo.position\"
|
94
|
+
content=\"67.125940;-50.180370\" />\n<meta name=\"ICBM\" content=\"67.125940,
|
95
|
+
-50.180370\" />\n<!--BEGIN: Dublin Core description-->\n<link rel=\"schema.DC\"
|
96
|
+
href=\"http://purl.org/dc/elements/1.1/\" />\n<link rel=\"schema.DCTERMS\"
|
97
|
+
href=\"http://purl.org/dc/terms/\" />\n<meta name=\"DC.title\" content=\"Hydrological
|
98
|
+
and meteorological investigations in a lake near Kangerlussuaq, west Greenland\"
|
99
|
+
/>\n<meta name=\"DC.creator\" content=\"Johansson, Emma\" />\n<meta name=\"DC.creator\"
|
100
|
+
content=\"Berglund, Sten\" />\n<meta name=\"DC.creator\" content=\"Lindborg,
|
101
|
+
Tobias\" />\n<meta name=\"DC.creator\" content=\"Petrone, Johannes\" />\n<meta
|
102
|
+
name=\"DC.creator\" content=\"van As, Dirk\" />\n<meta name=\"DC.creator\"
|
103
|
+
content=\"Gustafsson, Lars-Göran\" />\n<meta name=\"DC.creator\" content=\"Näslund,
|
104
|
+
Jens-Ove\" />\n<meta name=\"DC.creator\" content=\"Laudon, Hjalmar\" />\n<meta
|
105
|
+
name=\"DC.publisher\" content=\"PANGAEA\" />\n<meta name=\"DC.source\" content=\"Supplement
|
106
|
+
to: Johansson, E et al. (2015): Hydrological and meteorological investigations
|
107
|
+
in a periglacial lake catchment near Kangerlussuaq, west Greenland – presentation
|
108
|
+
of a new multi-parameter data set. Earth System Science Data, 7(1), 93-108,
|
109
|
+
https://doi.org/10.5194/essd-7-93-2015\" />\n<meta name=\"DC.date\" content=\"2014-09-25\"
|
110
|
+
scheme=\"DCTERMS.W3CDTF\" />\n<meta name=\"DC.type\" content=\"Dataset\" />\n<meta
|
111
|
+
name=\"DC.language\" content=\"en\" scheme=\"DCTERMS.RFC3066\" />\n<meta name=\"DCTERMS.license\"
|
112
|
+
scheme=\"DCTERMS.URI\" content=\"https://creativecommons.org/licenses/by/3.0/\"
|
113
|
+
/>\n<meta name=\"DC.identifier\" content=\"https://doi.org/10.1594/PANGAEA.836178\"
|
114
|
+
scheme=\"DCTERMS.URI\" />\n<meta name=\"DC.rights\" scheme=\"DCTERMS.URI\"
|
115
|
+
content=\"info:eu-repo/semantics/openAccess\" />\n<meta name=\"DC.format\"
|
116
|
+
content=\"application/zip, 5.5 MBytes\" />\n<meta name=\"DC.relation\" content=\"Map
|
117
|
+
of Two Boat Lake in Greenland (jpg 13 MB) with position of sampling sites
|
118
|
+
(URI: https://store.pangaea.de/Publications/JohanssonE_et_al_2014/twoboatlake_greenland.jpg)\"
|
119
|
+
/>\n<meta name=\"DC.relation\" content=\"Time laps photos of lake 2012-09-05
|
120
|
+
to 2013-08-14 (mov file, zipped 205 MB) (URI: https://store.pangaea.de/Publications/JohanssonE_et_al_2014/Timelapse_TBL.zip)\"
|
121
|
+
/>\n<!--END: Dublin Core description-->\n<script type=\"text/javascript\"
|
122
|
+
src=\"//maps.googleapis.com/maps/api/js?v=3&language=en&key=AIzaSyCI68RfHncu-tLSTMpD07Jh4LSpfFAJirE\"></script>\n<script
|
123
|
+
type=\"text/javascript\">/*<![CDATA[*/jQuery(function($) { return initializeSmallDatasetGMap(836178,'hash=322c2b5f936d090cd1eb00d176e25f48',new
|
124
|
+
google.maps.LatLngBounds(new google.maps.LatLng(67.12594,-50.18037),new google.maps.LatLng(67.12594,-50.18037)),undefined);
|
125
|
+
});/*]]>*/</script>\n<script type=\"text/javascript\" src=\"//d1bxh8uas1mnw7.cloudfront.net/assets/embed.js\"></script>\n<link
|
126
|
+
rel=\"cite-as\" href=\"https://doi.org/10.1594/PANGAEA.836178\">\n<link rel=\"describedby\"
|
127
|
+
href=\"https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_datacite4\"
|
128
|
+
type=\"application/vnd.datacite.datacite+xml\">\n<link rel=\"describedby\"
|
129
|
+
href=\"https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_iso19139\"
|
130
|
+
type=\"application/vnd.iso19139.metadata+xml\">\n<link rel=\"describedby\"
|
131
|
+
href=\"https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_panmd\"
|
132
|
+
type=\"application/vnd.pangaea.metadata+xml\">\n<link rel=\"describedby\"
|
133
|
+
href=\"https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_dif\"
|
134
|
+
type=\"application/vnd.nasa.dif-metadata+xml\">\n<link rel=\"describedby\"
|
135
|
+
href=\"https://doi.pangaea.de/10.1594/PANGAEA.836178?format=citation_ris\"
|
136
|
+
type=\"application/x-research-info-systems\">\n<link rel=\"describedby\" href=\"https://doi.pangaea.de/10.1594/PANGAEA.836178?format=citation_text\"
|
137
|
+
type=\"text/x-bibliography\">\n<link rel=\"describedby\" href=\"https://doi.pangaea.de/10.1594/PANGAEA.836178?format=citation_bibtex\"
|
138
|
+
type=\"application/x-bibtex\">\n<link rel=\"describedby\" href=\"https://doi.pangaea.de/10.1594/PANGAEA.836178?format=metadata_jsonld\"
|
139
|
+
type=\"application/ld+json\">\n<link rel=\"item\" href=\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/johansson_etal-2014.zip\"
|
140
|
+
type=\"application/zip\">\n<link rel=\"author\" href=\"https://orcid.org/0000-0002-6553-8982\">\n<link
|
141
|
+
rel=\"author\" href=\"https://orcid.org/0000-0001-6058-1466\">\n<script type=\"application/ld+json\">{\"@context\":\"http://schema.org/\",\"@id\":\"https://doi.org/10.1594/PANGAEA.836178\",\"@type\":\"Dataset\",\"identifier\":\"https://doi.org/10.1594/PANGAEA.836178\",\"url\":\"https://doi.pangaea.de/10.1594/PANGAEA.836178\",\"creator\":[{\"@type\":\"Person\",\"name\":\"Emma
|
142
|
+
Johansson\",\"familyName\":\"Johansson\",\"givenName\":\"Emma\",\"email\":\"emma.johansson@skb.se\"},{\"@type\":\"Person\",\"name\":\"Sten
|
143
|
+
Berglund\",\"familyName\":\"Berglund\",\"givenName\":\"Sten\"},{\"@type\":\"Person\",\"name\":\"Tobias
|
144
|
+
Lindborg\",\"familyName\":\"Lindborg\",\"givenName\":\"Tobias\",\"email\":\"tobias.lindborg@skb.se\"},{\"@type\":\"Person\",\"name\":\"Johannes
|
145
|
+
Petrone\",\"familyName\":\"Petrone\",\"givenName\":\"Johannes\",\"email\":\"johannes.petrone@skb.se\"},{\"@id\":\"https://orcid.org/0000-0002-6553-8982\",\"@type\":\"Person\",\"name\":\"Dirk
|
146
|
+
van As\",\"familyName\":\"van As\",\"givenName\":\"Dirk\",\"identifier\":\"https://orcid.org/0000-0002-6553-8982\",\"email\":\"dva@geus.dk\"},{\"@type\":\"Person\",\"name\":\"Lars-Göran
|
147
|
+
Gustafsson\",\"familyName\":\"Gustafsson\",\"givenName\":\"Lars-Göran\"},{\"@type\":\"Person\",\"name\":\"Jens-Ove
|
148
|
+
Näslund\",\"familyName\":\"Näslund\",\"givenName\":\"Jens-Ove\"},{\"@id\":\"https://orcid.org/0000-0001-6058-1466\",\"@type\":\"Person\",\"name\":\"Hjalmar
|
149
|
+
Laudon\",\"familyName\":\"Laudon\",\"givenName\":\"Hjalmar\",\"identifier\":\"https://orcid.org/0000-0001-6058-1466\"}],\"name\":\"Hydrological
|
150
|
+
and meteorological investigations in a lake near Kangerlussuaq, west Greenland\",\"publisher\":{\"@type\":\"Organization\",\"name\":\"PANGAEA\",\"disambiguatingDescription\":\"Data
|
151
|
+
Publisher for Earth & Environmental Science\",\"url\":\"https://www.pangaea.de/\"},\"includedInDataCatalog\":{\"@type\":\"DataCatalog\",\"name\":\"PANGAEA\",\"disambiguatingDescription\":\"Data
|
152
|
+
Publisher for Earth & Environmental Science\",\"url\":\"https://www.pangaea.de/\"},\"datePublished\":\"2014-09-25\",\"@reverse\":{\"isBasedOn\":{\"@id\":\"https://doi.org/10.5194/essd-7-93-2015\",\"@type\":[\"CreativeWork\",\"PublicationIssue\"],\"identifier\":\"https://doi.org/10.5194/essd-7-93-2015\",\"url\":\"https://doi.org/10.5194/essd-7-93-2015\",\"creator\":[{\"@type\":\"Person\",\"name\":\"Emma
|
153
|
+
Johansson\",\"familyName\":\"Johansson\",\"givenName\":\"Emma\",\"email\":\"emma.johansson@skb.se\"},{\"@type\":\"Person\",\"name\":\"Sten
|
154
|
+
Berglund\",\"familyName\":\"Berglund\",\"givenName\":\"Sten\"},{\"@type\":\"Person\",\"name\":\"Tobias
|
155
|
+
Lindborg\",\"familyName\":\"Lindborg\",\"givenName\":\"Tobias\",\"email\":\"tobias.lindborg@skb.se\"},{\"@type\":\"Person\",\"name\":\"Johannes
|
156
|
+
Petrone\",\"familyName\":\"Petrone\",\"givenName\":\"Johannes\",\"email\":\"johannes.petrone@skb.se\"},{\"@id\":\"https://orcid.org/0000-0002-6553-8982\",\"@type\":\"Person\",\"name\":\"Dirk
|
157
|
+
van As\",\"familyName\":\"van As\",\"givenName\":\"Dirk\",\"identifier\":\"https://orcid.org/0000-0002-6553-8982\",\"email\":\"dva@geus.dk\"},{\"@type\":\"Person\",\"name\":\"Lars-Göran
|
158
|
+
Gustafsson\",\"familyName\":\"Gustafsson\",\"givenName\":\"Lars-Göran\"},{\"@type\":\"Person\",\"name\":\"Jens-Ove
|
159
|
+
Näslund\",\"familyName\":\"Näslund\",\"givenName\":\"Jens-Ove\"},{\"@id\":\"https://orcid.org/0000-0001-6058-1466\",\"@type\":\"Person\",\"name\":\"Hjalmar
|
160
|
+
Laudon\",\"familyName\":\"Laudon\",\"givenName\":\"Hjalmar\",\"identifier\":\"https://orcid.org/0000-0001-6058-1466\"}],\"name\":\"Hydrological
|
161
|
+
and meteorological investigations in a periglacial lake catchment near Kangerlussuaq,
|
162
|
+
west Greenland – presentation of a new multi-parameter data set\",\"datePublished\":\"2015\",\"issueNumber\":\"7(1)\",\"pagination\":\"93-108\",\"isPartOf\":{\"@type\":\"CreativeWorkSeries\",\"name\":\"Earth
|
163
|
+
System Science Data\"}}},\"description\":\"Few hydrological studies have been
|
164
|
+
made in Greenland, other than on glacial hydrology associated with the ice
|
165
|
+
sheet. Understanding permafrost hydrology and hydroclimatic change and variability,
|
166
|
+
however, provides key information for understanding climate change effects
|
167
|
+
and feedbacks in the Arctic landscape. This paper presents a new extensive
|
168
|
+
and detailed hydrological and meteorological open access dataset, with high
|
169
|
+
temporal resolution from a 1.56 km**2 permafrost catchment with a lake underlain
|
170
|
+
by a through talik close to the ice sheet in the Kangerlussuaq region, western
|
171
|
+
Greenland. The paper describes the hydrological site investigations and utilized
|
172
|
+
equipment, as well as the data collection and processing. The investigations
|
173
|
+
were performed between 2010 and 2013. The high spatial resolution, within
|
174
|
+
the investigated area, of the dataset makes it highly suitable for various
|
175
|
+
detailed hydrological and ecological studies on catchment scale.\",\"abstract\":\"Few
|
176
|
+
hydrological studies have been made in Greenland, other than on glacial hydrology
|
177
|
+
associated with the ice sheet. Understanding permafrost hydrology and hydroclimatic
|
178
|
+
change and variability, however, provides key information for understanding
|
179
|
+
climate change effects and feedbacks in the Arctic landscape. This paper presents
|
180
|
+
a new extensive and detailed hydrological and meteorological open access dataset,
|
181
|
+
with high temporal resolution from a 1.56 km**2 permafrost catchment with
|
182
|
+
a lake underlain by a through talik close to the ice sheet in the Kangerlussuaq
|
183
|
+
region, western Greenland. The paper describes the hydrological site investigations
|
184
|
+
and utilized equipment, as well as the data collection and processing. The
|
185
|
+
investigations were performed between 2010 and 2013. The high spatial resolution,
|
186
|
+
within the investigated area, of the dataset makes it highly suitable for
|
187
|
+
various detailed hydrological and ecological studies on catchment scale.\",\"comment\":\"The
|
188
|
+
dataset contains hydrological and meteorological data from a lake catchment
|
189
|
+
in the Kangerlussuaq region, Western Greenland. The investigations were performed
|
190
|
+
during 2010-2013 and the following parameters are included: Soil moisture,
|
191
|
+
Soil temperature, Hydraulic properties of the active layer, meteorological
|
192
|
+
parameters from a local weather station within the catchment, water levels
|
193
|
+
and discharge, sublimation and evaportation measurments, snow depth and snow
|
194
|
+
water content data and time lapse photos.\",\"citation\":[{\"@id\":\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/twoboatlake_greenland.jpg\",\"@type\":[\"CreativeWork\",\"WebPage\"],\"identifier\":\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/twoboatlake_greenland.jpg\",\"url\":\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/twoboatlake_greenland.jpg\",\"name\":\"Map
|
195
|
+
of Two Boat Lake in Greenland (jpg 13 MB) with position of sampling sites\"},{\"@id\":\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/Timelapse_TBL.zip\",\"@type\":[\"CreativeWork\",\"WebPage\"],\"identifier\":\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/Timelapse_TBL.zip\",\"url\":\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/Timelapse_TBL.zip\",\"name\":\"Time
|
196
|
+
laps photos of lake 2012-09-05 to 2013-08-14 (mov file, zipped 205 MB)\"}],\"spatialCoverage\":{\"@type\":\"Place\",\"geo\":{\"@type\":\"GeoCoordinates\",\"latitude\":67.12594,\"longitude\":-50.18037}},\"inLanguage\":\"en\",\"license\":\"https://creativecommons.org/licenses/by/3.0/\",\"conditionsOfAccess\":\"unrestricted\",\"isAccessibleForFree\":true,\"size\":{\"@type\":\"QuantitativeValue\",\"value\":5.5,\"unitText\":\"MBytes\"},\"distribution\":{\"@type\":\"DataDownload\",\"encodingFormat\":\"application/zip\",\"contentUrl\":\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/johansson_etal-2014.zip\"}}</script>\n<script
|
197
|
+
type=\"text/javascript\">/*<![CDATA[*/\r\n(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\r\n(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new
|
198
|
+
Date();a=s.createElement(o),\r\nm=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\r\n})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\r\nga('create',
|
199
|
+
'UA-30624150-1', 'pangaea.de');\r\nga('set', 'anonymizeIp', true);\r\nga('send',
|
200
|
+
'pageview');\r\n/*]]>*/</script>\r\n</head>\r\n<body class=\"homepage-layout\">\r\n<div
|
201
|
+
id=\"header-wrapper\">\r\n <div class=\"container-fluid\">\r\n <header
|
202
|
+
class=\"row\"><!-- volle Screen-Breite -->\r\n <div class=\"content-wrapper\"><!--
|
203
|
+
max. Breite -->\r\n <div id=\"login-area-wrapper\" class=\"hidden-print\"><div
|
204
|
+
id=\"login-area\"><span id=\"user-name\">Not logged in</span><a id=\"signup-button\"
|
205
|
+
class=\"glyphicon glyphicon-plus-sign self-referer-link\" title=\"Sign Up
|
206
|
+
/ Create Account\" aria-label=\"Sign up\" target=\"_self\" rel=\"nofollow\"
|
207
|
+
href=\"https://www.pangaea.de/user/signup.php?referer=https%3A%2F%2Fwww.pangaea.de%2F\"
|
208
|
+
data-template=\"https://www.pangaea.de/user/signup.php?referer=#u#\"></a><a
|
209
|
+
id=\"login-button\" class=\"glyphicon glyphicon-log-in self-referer-link\"
|
210
|
+
title=\"Log In\" aria-label=\"Log in\" target=\"_self\" rel=\"nofollow\" href=\"https://www.pangaea.de/user/login.php?referer=https%3A%2F%2Fwww.pangaea.de%2F\"
|
211
|
+
data-template=\"https://www.pangaea.de/user/login.php?referer=#u#\"></a></div></div>\r\n
|
212
|
+
\ <div class=\"blindspalte header-block col-lg-3 col-md-4\"></div>\r\n
|
213
|
+
\ \r\n <div id=\"header-logo-block\" class=\"header-block col-lg-3
|
214
|
+
col-md-4 col-sm-4 col-xs-8\">\r\n <div id=\"pangaea-logo\">\r\n <a
|
215
|
+
title=\"PANGAEA home\" href=\"//www.pangaea.de/\" class=\"home-link\"><img
|
216
|
+
src=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/layout-images/pangaea-logo.png\"
|
217
|
+
alt=\"PANGAEA home\"></a>\r\n </div>\r\n </div>\r\n \r\n
|
218
|
+
\ <div id=\"header-mid-block\" class=\"header-block col-lg-12 col-md-9
|
219
|
+
col-sm-20 col-xs-16\">\r\n <div id=\"pangaea-logo-headline\">\r\n
|
220
|
+
\ PANGAEA<span class=\"punkt\">.</span>\r\n </div>\r\n
|
221
|
+
\ <div id=\"pangaea-logo-slogan\">\r\n <span>Data Publisher
|
222
|
+
for Earth & </span><span class=\"nowrap\">Environmental Science</span>\r\n
|
223
|
+
\ </div>\r\n <div id=\"search-area-header\" class=\"row\"></div>\r\n
|
224
|
+
\ </div>\r\n \r\n <div id=\"header-main-menu-block\" class=\"header-block
|
225
|
+
hidden-print col-lg-6 col-md-7 col-sm-24 col-xs-24\">\r\n <nav id=\"main-nav\">\r\n
|
226
|
+
\ <ul>\r\n <li id=\"menu-search\">\r\n <!--
|
227
|
+
class on link is important, don't change!!! -->\r\n <a href=\"//www.pangaea.de/\"
|
228
|
+
class=\"home-link\">Search</a>\r\n </li>\r\n <li
|
229
|
+
id=\"menu-submit\">\r\n <a href=\"//www.pangaea.de/submit/\">Submit</a>\r\n
|
230
|
+
\ </li>\r\n <li id=\"menu-help\">\r\n <a
|
231
|
+
href=\"//wiki.pangaea.de/\">Help</a>\r\n </li>\r\n <li
|
232
|
+
id=\"menu-about\">\r\n <a href=\"//www.pangaea.de/about/\">About</a>\r\n
|
233
|
+
\ </li>\r\n <li id=\"menu-contact\">\r\n <a
|
234
|
+
href=\"//www.pangaea.de/contact/\">Contact</a>\r\n </li>\r\n
|
235
|
+
\ </ul>\r\n </nav>\r\n <div class=\"clearfix\"></div>\r\n
|
236
|
+
\ </div>\r\n </div>\r\n </header>\r\n </div>\r\n</div>\r\n<div
|
237
|
+
id=\"flex-wrapper\">\r\n<div id=\"main-container\" class=\"container-fluid\">\r\n<div
|
238
|
+
id=\"main-row\" class=\"row main-row\">\r\n<div id=\"main\" class=\"col-lg-24
|
239
|
+
col-md-24 col-sm-24 col-xs-24\">\r\n<div id=\"dataset\">\n<div class=\"row\"><div
|
240
|
+
class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24 hidden-xs hidden-sm\"><div class=\"title
|
241
|
+
citation invisible-top-border\">Citation:</div>\n</div>\n<div class=\"col-lg-21
|
242
|
+
col-md-20 col-sm-24 col-xs-24\"><div class=\"descr top-border\"><div id=\"gmap-dataset-wrapper\"
|
243
|
+
class=\"gmap-wrapper hidden-print hidden-xs hidden-sm col-lg-8 col-md-8 col-sm-24
|
244
|
+
col-xs-24\"><div class=\"embed-responsive embed-responsive-4by3\"><div id=\"gmap-dataset\"
|
245
|
+
class=\"embed-responsive-item\"></div>\n</div>\n</div>\n<h1 class=\"hanging
|
246
|
+
citation\"><strong><a class=\"popover-link link-unstyled\" href=\"#\" data-title=\"<span>Johansson,
|
247
|
+
Emma<a class="searchlink glyphicon glyphicon-search" target="_blank"
|
248
|
+
rel="nofollow" title="Search PANGAEA for other datasets related
|
249
|
+
to 'Johansson, Emma'..." aria-label="Search PANGAEA for other datasets
|
250
|
+
related to 'Johansson, Emma'" href="//www.pangaea.de/?q=author:email:emma.johansson@skb.se"></a></span>\"
|
251
|
+
data-content=\"<div><div><a class="mail-link text-nowrap
|
252
|
+
wide-icon-link" href="mailto:emma.johansson@skb.se">emma.johansson@skb.se</a></div> </div> \">Johansson,
|
253
|
+
Emma</a>; Berglund, Sten; <a class=\"popover-link link-unstyled\" href=\"#\"
|
254
|
+
data-title=\"<span>Lindborg, Tobias<a class="searchlink glyphicon
|
255
|
+
glyphicon-search" target="_blank" rel="nofollow"
|
256
|
+
title="Search PANGAEA for other datasets related to 'Lindborg, Tobias'..."
|
257
|
+
aria-label="Search PANGAEA for other datasets related to 'Lindborg, Tobias'"
|
258
|
+
href="//www.pangaea.de/?q=author:email:tobias.lindborg@skb.se"></a></span>\"
|
259
|
+
data-content=\"<div><div><a class="mail-link text-nowrap
|
260
|
+
wide-icon-link" href="mailto:tobias.lindborg@skb.se">tobias.lindborg@skb.se</a></div> </div> \">Lindborg,
|
261
|
+
Tobias</a>; <a class=\"popover-link link-unstyled\" href=\"#\" data-title=\"<span>Petrone,
|
262
|
+
Johannes<a class="searchlink glyphicon glyphicon-search" target="_blank"
|
263
|
+
rel="nofollow" title="Search PANGAEA for other datasets related
|
264
|
+
to 'Petrone, Johannes'..." aria-label="Search PANGAEA for other
|
265
|
+
datasets related to 'Petrone, Johannes'" href="//www.pangaea.de/?q=author:email:johannes.petrone@skb.se"></a></span>\"
|
266
|
+
data-content=\"<div><div><a class="mail-link text-nowrap
|
267
|
+
wide-icon-link" href="mailto:johannes.petrone@skb.se">johannes.petrone@skb.se</a></div> </div> \">Petrone,
|
268
|
+
Johannes</a>; <a class=\"popover-link link-unstyled\" href=\"#\" data-title=\"<span>van
|
269
|
+
As, Dirk<a class="searchlink glyphicon glyphicon-search" target="_blank"
|
270
|
+
rel="nofollow" title="Search PANGAEA for other datasets related
|
271
|
+
to 'van As, Dirk'..." aria-label="Search PANGAEA for other datasets
|
272
|
+
related to 'van As, Dirk'" href="//www.pangaea.de/?q=author:orcid:0000-0002-6553-8982"></a></span>\"
|
273
|
+
data-content=\"<div><div><a class="orcid-link text-nowrap
|
274
|
+
wide-icon-link" target="_blank" href="https://orcid.org/0000-0002-6553-8982">https://orcid.org/0000-0002-6553-8982</a></div> <div><a
|
275
|
+
class="mail-link text-nowrap wide-icon-link" href="mailto:dva@geus.dk">dva@geus.dk</a></div> </div> \">van
|
276
|
+
As, Dirk</a>; Gustafsson, Lars-Göran; Näslund, Jens-Ove; <a class=\"popover-link
|
277
|
+
link-unstyled\" href=\"#\" data-title=\"<span>Laudon, Hjalmar<a class="searchlink
|
278
|
+
glyphicon glyphicon-search" target="_blank" rel="nofollow"
|
279
|
+
title="Search PANGAEA for other datasets related to 'Laudon, Hjalmar'..."
|
280
|
+
aria-label="Search PANGAEA for other datasets related to 'Laudon, Hjalmar'"
|
281
|
+
href="//www.pangaea.de/?q=author:orcid:0000-0001-6058-1466"></a></span>\"
|
282
|
+
data-content=\"<div><div><a class="orcid-link text-nowrap
|
283
|
+
wide-icon-link" target="_blank" href="https://orcid.org/0000-0001-6058-1466">https://orcid.org/0000-0001-6058-1466</a></div> </div> \">Laudon,
|
284
|
+
Hjalmar</a> (2014):</strong> Hydrological and meteorological investigations
|
285
|
+
in a lake near Kangerlussuaq, west Greenland. <em>PANGAEA</em>, <a id=\"citation-doi-link\"
|
286
|
+
rel=\"nofollow bookmark\" href=\"https://doi.org/10.1594/PANGAEA.836178\"
|
287
|
+
data-pubstatus=\"4\" class=\"text-linkwrap popover-link doi-link\">https://doi.org/10.1594/PANGAEA.836178</a>,<hr
|
288
|
+
class=\"spacer\" aria-hidden=\"true\" />\n<em>Supplement to:</em> Johansson,
|
289
|
+
E et al. (2015): Hydrological and meteorological investigations in a periglacial
|
290
|
+
lake catchment near Kangerlussuaq, west Greenland – presentation of a new
|
291
|
+
multi-parameter data set. <em>Earth System Science Data</em>, <strong>7(1)</strong>,
|
292
|
+
93-108, <a class=\"text-linkwrap doi-link\" href=\"https://doi.org/10.5194/essd-7-93-2015\"
|
293
|
+
target=\"_blank\">https://doi.org/10.5194/essd-7-93-2015</a></h1>\n<p class=\"howtocite\"><small><span
|
294
|
+
class=\"glyphicon glyphicon-bullhorn\" aria-hidden=\"true\"></span> <strong>Always
|
295
|
+
quote citation above when using data!</strong> You can download the citation
|
296
|
+
in several formats below.</small></p>\n<p class=\"data-buttons\"><a rel=\"nofollow
|
297
|
+
describedby\" title=\"Export citation to Reference Manager, EndNote, ProCite\"
|
298
|
+
href=\"?format=citation_ris\" class=\"actionbuttonlink\"><span class=\"actionbutton\">RIS
|
299
|
+
Citation</span></a><a rel=\"nofollow describedby\" title=\"Export citation
|
300
|
+
to BibTeX\" href=\"?format=citation_bibtex\" class=\"actionbuttonlink\"><span
|
301
|
+
class=\"actionbutton\"><span style=\"font-variant:small-caps;\">BibTeX</span>
|
302
|
+
Citation</span></a><a id=\"text-citation-link\" rel=\"nofollow\" title=\"Export
|
303
|
+
citation as plain text\" href=\"?format=citation_text\" target=\"_blank\"
|
304
|
+
class=\"actionbuttonlink share-link\"><span class=\"actionbutton\">Text Citation</span></a><span
|
305
|
+
class=\"separator\"></span><a rel=\"nofollow\" class=\"self-referer-link share-link
|
306
|
+
actionbuttonlink\" href=\"//www.pangaea.de/nojs.php\" data-template=\"https://www.facebook.com/sharer.php?u=#u#&t=#t#\"
|
307
|
+
title=\"Share dataset on Facebook\" target=\"_blank\"><span class=\"actionbutton\"><span
|
308
|
+
class=\"glyphicon glyphicon-share\"></span> Facebook</span></a><a rel=\"nofollow\"
|
309
|
+
class=\"self-referer-link share-link actionbuttonlink\" href=\"//www.pangaea.de/nojs.php\"
|
310
|
+
data-template=\"https://twitter.com/intent/tweet?url=#u#&text=#t#&via=PANGAEAdataPubl\"
|
311
|
+
title=\"Share dataset on Twitter\" target=\"_blank\"><span class=\"actionbutton\"><span
|
312
|
+
class=\"glyphicon glyphicon-share\"></span> Twitter</span></a><span class=\"separator\"></span><a
|
313
|
+
rel=\"nofollow\" target=\"_blank\" title=\"Display events in map\" href=\"//www.pangaea.de/advanced/gmap-dataset.php?id=836178&viewportBBOX=-50.18037,67.12594,-50.18037,67.12594\"
|
314
|
+
class=\"actionbuttonlink\"><span class=\"actionbutton\">Show Map</span></a><a
|
315
|
+
rel=\"nofollow\" title=\"Display events in Google Earth\" href=\"?format=events_kml\"
|
316
|
+
class=\"actionbuttonlink\"><span class=\"actionbutton\">Google Earth</span></a><span
|
317
|
+
data-badge-type=\"1\" data-doi=\"10.1594/PANGAEA.836178\" data-badge-popover=\"right\"
|
318
|
+
data-hide-no-mentions=\"true\" class=\"altmetric-embed sep-before\"></span><span
|
319
|
+
class=\"sep-before\" id=\"usage-stats\"></span></p>\n<div class=\"clearfix\"></div>\n</div>\n</div>\n</div>\n<div
|
320
|
+
class=\"row\"><div class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24\"><div class=\"title\">Abstract:</div>\n</div>\n<div
|
321
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\"><div class=\"descr\"><div
|
322
|
+
class=\"abstract\">Few hydrological studies have been made in Greenland, other
|
323
|
+
than on glacial hydrology associated with the ice sheet. Understanding permafrost
|
324
|
+
hydrology and hydroclimatic change and variability, however, provides key
|
325
|
+
information for understanding climate change effects and feedbacks in the
|
326
|
+
Arctic landscape. This paper presents a new extensive and detailed hydrological
|
327
|
+
and meteorological open access dataset, with high temporal resolution from
|
328
|
+
a 1.56 km**2 permafrost catchment with a lake underlain by a through talik
|
329
|
+
close to the ice sheet in the Kangerlussuaq region, western Greenland. The
|
330
|
+
paper describes the hydrological site investigations and utilized equipment,
|
331
|
+
as well as the data collection and processing. The investigations were performed
|
332
|
+
between 2010 and 2013. The high spatial resolution, within the investigated
|
333
|
+
area, of the dataset makes it highly suitable for various detailed hydrological
|
334
|
+
and ecological studies on catchment scale.</div>\n</div>\n</div>\n</div>\n<div
|
335
|
+
class=\"row\"><div class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24\"><div class=\"title\">Further
|
336
|
+
details:</div>\n</div>\n<div class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\"><div
|
337
|
+
class=\"descr\"><div class=\"hanging\"><a target=\"_self\" href=\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/twoboatlake_greenland.jpg\">Map
|
338
|
+
of Two Boat Lake in Greenland (jpg 13 MB) with position of sampling sites</a><a
|
339
|
+
class=\"searchlink glyphicon glyphicon-search\" target=\"_blank\" rel=\"nofollow\"
|
340
|
+
title=\"Search PANGAEA for other datasets related to this publication...\"
|
341
|
+
aria-label=\"Search PANGAEA for other datasets related to this publication\"
|
342
|
+
href=\"//www.pangaea.de/?q=@ref65477\"></a></div>\n<div class=\"hanging\"><a
|
343
|
+
target=\"_self\" href=\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/Timelapse_TBL.zip\">Time
|
344
|
+
laps photos of lake 2012-09-05 to 2013-08-14 (mov file, zipped 205 MB)</a><a
|
345
|
+
class=\"searchlink glyphicon glyphicon-search\" target=\"_blank\" rel=\"nofollow\"
|
346
|
+
title=\"Search PANGAEA for other datasets related to this publication...\"
|
347
|
+
aria-label=\"Search PANGAEA for other datasets related to this publication\"
|
348
|
+
href=\"//www.pangaea.de/?q=@ref65408\"></a></div>\n</div>\n</div>\n</div>\n<div
|
349
|
+
class=\"row\"><div class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24\"><div class=\"title\">Project(s):</div>\n</div>\n<div
|
350
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\"><div class=\"descr\"><div
|
351
|
+
class=\"hanging\"><strong><a target=\"_blank\" href=\"https://www.researchgate.net/project/GReenland-Analogue-Surface-Project-GRASP\"
|
352
|
+
class=\"popover-link\" data-title=\"<span><a target="_blank"
|
353
|
+
href="https://www.researchgate.net/project/GReenland-Analogue-Surface-Project-GRASP">GReenland
|
354
|
+
Analogue Surface Project</a><a class="searchlink glyphicon glyphicon-search"
|
355
|
+
target="_blank" rel="nofollow" title="Search PANGAEA
|
356
|
+
for other datasets related to 'GReenland Analogue Surface Project'..."
|
357
|
+
aria-label="Search PANGAEA for other datasets related to 'GReenland Analogue
|
358
|
+
Surface Project'" href="//www.pangaea.de/?q=project:label:GRASP"></a></span>\"
|
359
|
+
data-content=\"<div><div class="popover-mitem"><strong>Label:</strong>
|
360
|
+
GRASP</div> </div> \">GReenland Analogue Surface Project</a></strong>
|
361
|
+
(GRASP)<a class=\"searchlink glyphicon glyphicon-search\" target=\"_blank\"
|
362
|
+
rel=\"nofollow\" title=\"Search PANGAEA for other datasets related to 'GReenland
|
363
|
+
Analogue Surface Project'...\" aria-label=\"Search PANGAEA for other datasets
|
364
|
+
related to 'GReenland Analogue Surface Project'\" href=\"//www.pangaea.de/?q=project:label:GRASP\"></a></div>\n</div>\n</div>\n</div>\n<div
|
365
|
+
class=\"row\"><div class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24\"><div class=\"title\">Coverage:</div>\n</div>\n<div
|
366
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\"><div class=\"descr\"><div
|
367
|
+
class=\"hanging geo\"><em class=\"unfarbe\">Latitude: </em><span class=\"latitude\">67.125940</span><em
|
368
|
+
class=\"unfarbe\"> * Longitude: </em><span class=\"longitude\">-50.180370</span></div>\n</div>\n</div>\n</div>\n<div
|
369
|
+
class=\"row\"><div class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24\"><div class=\"title\">Event(s):</div>\n</div>\n<div
|
370
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\"><div class=\"descr\"><div
|
371
|
+
class=\"hanging geo\"><strong>Kangerl_WGreenl_TBL</strong><a class=\"searchlink
|
372
|
+
glyphicon glyphicon-search\" target=\"_blank\" rel=\"nofollow\" title=\"Search
|
373
|
+
PANGAEA for other datasets related to 'Kangerl_WGreenl_TBL'...\" aria-label=\"Search
|
374
|
+
PANGAEA for other datasets related to 'Kangerl_WGreenl_TBL'\" href=\"//www.pangaea.de/?q=event:label:Kangerl_WGreenl_TBL\"></a><em
|
375
|
+
class=\"unfarbe\"> * Latitude: </em><span class=\"latitude\">67.125940</span><em
|
376
|
+
class=\"unfarbe\"> * Longitude: </em><span class=\"longitude\">-50.180370</span><em
|
377
|
+
class=\"unfarbe\"> * Location: </em><span>Two Boat Lake, Kangerlussuaq, Greenland</span><a
|
378
|
+
class=\"searchlink glyphicon glyphicon-search\" target=\"_blank\" rel=\"nofollow\"
|
379
|
+
title=\"Search PANGAEA for other datasets related to 'Two Boat Lake, Kangerlussuaq,
|
380
|
+
Greenland'...\" aria-label=\"Search PANGAEA for other datasets related to
|
381
|
+
'Two Boat Lake, Kangerlussuaq, Greenland'\" href=\"//www.pangaea.de/?q=location:%22Two%20Boat%20Lake,%20Kangerlussuaq,%20Greenland%22\"></a></div>\n</div>\n</div>\n</div>\n<div
|
382
|
+
class=\"row\"><div class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24\"><div class=\"title\">Comment:</div>\n</div>\n<div
|
383
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\"><div class=\"descr\"><div
|
384
|
+
class=\"abstract\">The dataset contains hydrological and meteorological data
|
385
|
+
from a lake catchment in the Kangerlussuaq region, Western Greenland. The
|
386
|
+
investigations were performed during 2010-2013 and the following parameters
|
387
|
+
are included: Soil moisture, Soil temperature, Hydraulic properties of the
|
388
|
+
active layer, meteorological parameters from a local weather station within
|
389
|
+
the catchment, water levels and discharge, sublimation and evaportation measurments,
|
390
|
+
snow depth and snow water content data and time lapse photos.</div>\n</div>\n</div>\n</div>\n<div
|
391
|
+
class=\"row\"><div class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24\"><div class=\"title\">License:</div>\n</div>\n<div
|
392
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\"><div class=\"descr\"><div
|
393
|
+
class=\"hanging\"><a href=\"https://creativecommons.org/licenses/by/3.0/\"
|
394
|
+
class=\"license-icon-CC-BY\" rel=\"license\" target=\"_blank\">Creative Commons
|
395
|
+
Attribution 3.0 Unported</a> (CC-BY-3.0)</div>\n</div>\n</div>\n</div>\n<div
|
396
|
+
class=\"row\"><div class=\"col-lg-3 col-md-4 col-sm-24 col-xs-24\"><div class=\"title\">Size:</div>\n</div>\n<div
|
397
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\"><div class=\"descr\"><div
|
398
|
+
class=\"hanging\">5.5 MBytes</div>\n</div>\n</div>\n</div>\n<div class=\"row\"><div
|
399
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24 col-lg-offset-3 col-md-offset-4\"><div
|
400
|
+
class=\"text-block top-border\">\n<h2 id=\"download\">Download Data</h2>\n<p><a
|
401
|
+
rel=\"nofollow\" id=\"static-download-link\" class=\"dl-link\" data-analyticspath=\"/10.1594/PANGAEA.836178?format=download\"
|
402
|
+
href=\"https://store.pangaea.de/Publications/JohanssonE_et_al_2014/johansson_etal-2014.zip\"
|
403
|
+
target=\"_self\">Download dataset</a></p>\n</div></div></div><div id=\"recommendations\"></div>\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div
|
404
|
+
id=\"footer-wrapper\" class=\"top-border hidden-print\">\r\n <div class=\"container-fluid\">\r\n
|
405
|
+
\ <footer class=\"row\"><!-- volle Screen-Breite -->\r\n <div class=\"content-wrapper\"><!--
|
406
|
+
max. Breite -->\r\n <div class=\"blindspalte col-lg-3 col-md-4 col-sm-4
|
407
|
+
col-xs-4\"></div>\r\n <div id=\"footer-hosted-by-area\" class=\"col-lg-18
|
408
|
+
col-md-9 col-sm-24 col-xs-24\">\r\n <div class=\"col-lg-12 col-md-24
|
409
|
+
col-sm-24 col-xs-24\">\r\n <div class=\"headline underlined\">\r\n
|
410
|
+
\ PANGAEA is hosted by\r\n </div>\r\n \r\n
|
411
|
+
\ <div>\r\n <p>\r\n Alfred Wegener Institute,
|
412
|
+
Helmholtz Center for Polar and Marine Research (AWI)<br/>\r\n Center
|
413
|
+
for Marine Environmental Sciences, University of Bremen (MARUM)\r\n </p>\r\n
|
414
|
+
\ </div>\r\n\r\n <div class=\"headline underlined\">\r\n
|
415
|
+
\ The System is supported by\r\n </div>\r\n \r\n
|
416
|
+
\ <div>\r\n <p>\r\n The European Commission,
|
417
|
+
Research<br/>\r\n Federal Ministry of Education and Research
|
418
|
+
(BMBF)<br/>\r\n Deutsche Forschungsgemeinschaft (DFG)<br/>\r\n
|
419
|
+
\ International Ocean Discovery Program (IODP)\r\n </p>\r\n
|
420
|
+
\ </div>\r\n </div>\r\n\r\n <div class=\"col-lg-12
|
421
|
+
col-md-24 col-sm-24 col-xs-24\">\r\n <div class=\"headline underlined\">\r\n
|
422
|
+
\ PANGAEA is certified by\r\n </div>\r\n \r\n
|
423
|
+
\ <div>\r\n <a href=\"//www.worlddatasystem.org/\"
|
424
|
+
target=\"_blank\" title=\"World Data System\">\r\n <img class=\"col-lg-6
|
425
|
+
col-md-6 col-sm-6 col-xs-6\" src=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/logos/logo-wds-block.png\"
|
426
|
+
alt=\"World Data System\">\r\n </a>\r\n <a href=\"//www.wmo.int/\"
|
427
|
+
target=\"_blank\" title=\"World Meteorological Organization\">\r\n <img
|
428
|
+
class=\"col-lg-6 col-md-6 col-sm-6 col-xs-6\" src=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/logos/logo-wmo-block.png\"
|
429
|
+
alt=\"World Meteorological Organization\">\r\n </a>\r\n <a
|
430
|
+
href=\"//www.coretrustseal.org/\" target=\"_blank\" title=\"CoreTrustSeal\">\r\n
|
431
|
+
\ <img class=\"col-lg-6 col-md-6 col-sm-6 col-xs-6\" src=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/logos/logo-coretrustseal-block.png\"
|
432
|
+
alt=\"CoreTrustSeal\">\r\n </a>\r\n </div>\r\n </div>\r\n
|
433
|
+
\ </div>\r\n <div id=\"footer-social-area\" class=\"col-lg-3
|
434
|
+
col-md-24 col-sm-24 col-xs-24\">\r\n <div id=\"footer-social-area-wrapper\"
|
435
|
+
class=\"col-lg-24 col-md-24 col-sm-24 col-xs-24\">\r\n <div class=\"blindspalte
|
436
|
+
col-lg-0 col-md-4\"></div>\r\n <div class=\"col-lg-24 col-md-5
|
437
|
+
col-md-5 col-xs-10\">\r\n <div class=\"underlined\">Share on...</div>\r\n
|
438
|
+
\ <div class=\"social-icons\">\r\n <a rel=\"nofollow\"
|
439
|
+
class=\"self-referer-link share-link\" href=\"//www.pangaea.de/nojs.php\"
|
440
|
+
data-template=\"https://www.facebook.com/sharer.php?u=#u#&t=#t#\" title=\"Share
|
441
|
+
on Facebook\" target=\"_blank\">\r\n <img id=\"facebook-icon\"
|
442
|
+
class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\" src=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/social-icons/facebook-icon.png\"
|
443
|
+
alt=\"Facebook Icon\">\r\n </a>\r\n <a rel=\"nofollow\"
|
444
|
+
class=\"self-referer-link share-link\" href=\"//www.pangaea.de/nojs.php\"
|
445
|
+
data-template=\"https://twitter.com/intent/tweet?url=#u#&text=#t#&via=PANGAEAdataPubl\"
|
446
|
+
title=\"Share on Twitter\" target=\"_blank\">\r\n <img id=\"twitter-icon\"
|
447
|
+
class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\" src=\"//www.pangaea.de/assets/v.c52a7fe50cc6e2caad4c5ad8d5ea1a42/social-icons/twitter-icon.png\"
|
448
|
+
alt=\"Twitter Icon\">\r\n </a>\r\n </div>\r\n
|
449
|
+
\ </div>\r\n <div class=\"blindspalte col-lg-0 col-md-18\"></div>\r\n
|
450
|
+
\ </div>\r\n </div>\r\n \r\n <div id=\"footer-menu-area\"
|
451
|
+
class=\"col-lg-24 col-md-24 col-sm-24 col-xs-24\">\r\n <div class=\"blindspalte
|
452
|
+
col-lg-3 col-md-4 col-sm-4 col-xs-4\"></div>\r\n <div id=\"footer-menu-wrapper\"
|
453
|
+
class=\"col-lg-21 col-md-20 col-sm-24 col-xs-24\">\r\n <nav id=\"footer-nav\">\r\n
|
454
|
+
\ <ul>\r\n <li id=\"about-legal-notice\">\r\n <a
|
455
|
+
href=\"//www.pangaea.de/about/legal.php\">Legal notice</a>\r\n </li>\r\n
|
456
|
+
\ <li id=\"about-term\">\r\n <a href=\"//www.pangaea.de/about/terms.php\">Terms
|
457
|
+
of use</a>\r\n </li>\r\n <li id=\"about-privacy-policy\">\r\n
|
458
|
+
\ <a href=\"//www.pangaea.de/about/privacypolicy.php\">Privacy
|
459
|
+
policy</a>\r\n </li>\r\n <li id=\"about-cookies\">\r\n
|
460
|
+
\ <a href=\"//www.pangaea.de/about/cookies.php\">Cookies</a>\r\n
|
461
|
+
\ </li>\r\n <li id=\"about-jobs\">\r\n <a
|
462
|
+
href=\"//www.pangaea.de/about/jobs.php\">Jobs</a>\r\n </li>\r\n
|
463
|
+
\ <li id=\"about-contact\">\r\n <a href=\"//www.pangaea.de/contact/\">Contact</a>\r\n
|
464
|
+
\ </li>\r\n </ul>\r\n </nav>\r\n <div
|
465
|
+
class=\"clearfix\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n
|
466
|
+
\ </footer>\r\n </div>\r\n</div>\r\n</body>\n</html>\n"
|
467
|
+
recorded_at: Tue, 14 Mar 2023 11:45:46 GMT
|
468
|
+
recorded_with: VCR 6.1.0
|