relaton 2.2.0.pre.alpha.1 → 3.0.0.pre.alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/{docs/README.adoc → README.adoc} +109 -38
- data/lib/relaton/3gpp/bibdata.rb +9 -0
- data/lib/relaton/3gpp/bibitem.rb +9 -0
- data/lib/relaton/3gpp/bibliography.rb +48 -0
- data/lib/relaton/3gpp/data_fetcher.rb +255 -0
- data/lib/relaton/3gpp/doctype.rb +9 -0
- data/lib/relaton/3gpp/ext.rb +31 -0
- data/lib/relaton/3gpp/item.rb +12 -0
- data/lib/relaton/3gpp/item_data.rb +15 -0
- data/lib/relaton/3gpp/parser.rb +400 -0
- data/lib/relaton/3gpp/processor.rb +68 -0
- data/lib/relaton/3gpp/release.rb +34 -0
- data/lib/relaton/3gpp/util.rb +8 -0
- data/lib/relaton/3gpp.rb +25 -0
- data/lib/relaton/bib/converter/asciibib/to_asciibib.rb +663 -0
- data/lib/relaton/bib/converter/asciibib.rb +13 -0
- data/lib/relaton/bib/converter/bibtex/from_bibtex.rb +245 -0
- data/lib/relaton/bib/converter/bibtex/to_bibtex.rb +341 -0
- data/lib/relaton/bib/converter/bibtex.rb +23 -0
- data/lib/relaton/bib/converter/bibxml/from_rfcxml.rb +386 -0
- data/lib/relaton/bib/converter/bibxml/from_rfcxml_referencegroup.rb +71 -0
- data/lib/relaton/bib/converter/bibxml/to_rfcxml.rb +308 -0
- data/lib/relaton/bib/converter/bibxml/to_rfcxml_referencegroup.rb +52 -0
- data/lib/relaton/bib/converter/bibxml.rb +51 -0
- data/lib/relaton/bib/hash_parser_v1.rb +767 -0
- data/lib/relaton/bib/item_data.rb +229 -0
- data/lib/relaton/bib/model/abstract.rb +16 -0
- data/lib/relaton/bib/model/address.rb +22 -0
- data/lib/relaton/bib/model/affiliation.rb +16 -0
- data/lib/relaton/bib/model/bibdata.rb +11 -0
- data/lib/relaton/bib/model/bibdata_shared.rb +12 -0
- data/lib/relaton/bib/model/bibitem.rb +11 -0
- data/lib/relaton/bib/model/bibitem_shared.rb +12 -0
- data/lib/relaton/bib/model/contact.rb +18 -0
- data/lib/relaton/bib/model/contribution_info.rb +15 -0
- data/lib/relaton/bib/model/contributor.rb +29 -0
- data/lib/relaton/bib/model/copyright.rb +27 -0
- data/lib/relaton/bib/model/date.rb +31 -0
- data/lib/relaton/bib/model/depiction.rb +16 -0
- data/lib/relaton/bib/model/docidentifier.rb +34 -0
- data/lib/relaton/bib/model/doctype.rb +14 -0
- data/lib/relaton/bib/model/edition.rb +14 -0
- data/lib/relaton/bib/model/ext.rb +39 -0
- data/lib/relaton/bib/model/extent.rb +16 -0
- data/lib/relaton/bib/model/formattedref.rb +43 -0
- data/lib/relaton/bib/model/full_name_type.rb +64 -0
- data/lib/relaton/bib/model/fullname.rb +11 -0
- data/lib/relaton/bib/model/ics.rb +49 -0
- data/lib/relaton/bib/model/image.rb +28 -0
- data/lib/relaton/bib/model/item.rb +96 -0
- data/lib/relaton/bib/model/item_base.rb +20 -0
- data/lib/relaton/bib/model/item_shared.rb +88 -0
- data/lib/relaton/bib/model/keyword.rb +30 -0
- data/lib/relaton/bib/model/locality.rb +18 -0
- data/lib/relaton/bib/model/locality_stack.rb +14 -0
- data/lib/relaton/bib/model/localized_string.rb +48 -0
- data/lib/relaton/bib/model/localized_string_attrs.rb +24 -0
- data/lib/relaton/bib/model/logo.rb +14 -0
- data/lib/relaton/bib/model/medium.rb +22 -0
- data/lib/relaton/bib/model/note.rb +16 -0
- data/lib/relaton/bib/model/organization.rb +13 -0
- data/lib/relaton/bib/model/organization_type.rb +42 -0
- data/lib/relaton/bib/model/person.rb +36 -0
- data/lib/relaton/bib/model/phone.rb +14 -0
- data/lib/relaton/bib/model/place.rb +33 -0
- data/lib/relaton/bib/model/price.rb +14 -0
- data/lib/relaton/bib/model/relation.rb +43 -0
- data/lib/relaton/bib/model/series.rb +34 -0
- data/lib/relaton/bib/model/size.rb +23 -0
- data/lib/relaton/bib/model/source_locality_stack.rb +14 -0
- data/lib/relaton/bib/model/status.rb +27 -0
- data/lib/relaton/bib/model/structured_identifier.rb +48 -0
- data/lib/relaton/bib/model/subdivision.rb +16 -0
- data/lib/relaton/bib/model/title.rb +56 -0
- data/lib/relaton/bib/model/type/plain_date.rb +16 -0
- data/lib/relaton/bib/model/type/string_date.rb +48 -0
- data/lib/relaton/bib/model/uri.rb +18 -0
- data/lib/relaton/bib/model/validity.rb +16 -0
- data/lib/relaton/bib/model/version.rb +43 -0
- data/lib/relaton/bib/namespace_helper.rb +21 -0
- data/lib/relaton/bib/sanitizer.rb +68 -0
- data/lib/relaton/bib/util.rb +18 -0
- data/lib/relaton/bib/versions.json +35 -0
- data/lib/relaton/bib.rb +48 -0
- data/lib/relaton/bipm/bibliography.rb +82 -0
- data/lib/relaton/bipm/converter/asciibib.rb +64 -0
- data/lib/relaton/bipm/data_fetcher.rb +57 -0
- data/lib/relaton/bipm/data_outcomes_parser.rb +657 -0
- data/lib/relaton/bipm/id_parser.rb +277 -0
- data/lib/relaton/bipm/item_data.rb +47 -0
- data/lib/relaton/bipm/model/bibdata.rb +9 -0
- data/lib/relaton/bipm/model/bibitem.rb +9 -0
- data/lib/relaton/bipm/model/comment_period.rb +13 -0
- data/lib/relaton/bipm/model/doctype.rb +12 -0
- data/lib/relaton/bipm/model/ext.rb +38 -0
- data/lib/relaton/bipm/model/item.rb +11 -0
- data/lib/relaton/bipm/model/structured_identifier.rb +15 -0
- data/lib/relaton/bipm/processor.rb +69 -0
- data/lib/relaton/bipm/rawdata_bipm_metrologia/affiliations.rb +111 -0
- data/lib/relaton/bipm/rawdata_bipm_metrologia/fetcher.rb +174 -0
- data/lib/relaton/bipm/rawdata_bipm_metrologia/niso_jats_parser.rb +353 -0
- data/lib/relaton/bipm/si_brochure_parser.rb +186 -0
- data/lib/relaton/bipm/util.rb +8 -0
- data/lib/relaton/bipm.rb +32 -0
- data/lib/relaton/bsi/bibliography.rb +124 -0
- data/lib/relaton/bsi/hit.rb +14 -0
- data/lib/relaton/bsi/hit_collection.rb +114 -0
- data/lib/relaton/bsi/item_data.rb +13 -0
- data/lib/relaton/bsi/model/bibdata.rb +8 -0
- data/lib/relaton/bsi/model/bibitem.rb +8 -0
- data/lib/relaton/bsi/model/docidentifier.rb +9 -0
- data/lib/relaton/bsi/model/doctype.rb +14 -0
- data/lib/relaton/bsi/model/ext.rb +17 -0
- data/lib/relaton/bsi/model/item.rb +17 -0
- data/lib/relaton/bsi/model/item_base.rb +22 -0
- data/lib/relaton/bsi/model/relation.rb +9 -0
- data/lib/relaton/bsi/processor.rb +42 -0
- data/lib/relaton/bsi/schema.json +24882 -0
- data/lib/relaton/bsi/scraper.rb +288 -0
- data/lib/relaton/bsi/util.rb +8 -0
- data/lib/relaton/bsi.rb +25 -0
- data/lib/relaton/calconnect/bibliography.rb +95 -0
- data/lib/relaton/calconnect/data_fetcher.rb +106 -0
- data/lib/relaton/calconnect/hit.rb +14 -0
- data/lib/relaton/calconnect/hit_collection.rb +84 -0
- data/lib/relaton/calconnect/item_data.rb +12 -0
- data/lib/relaton/calconnect/model/bibdata.rb +8 -0
- data/lib/relaton/calconnect/model/bibitem.rb +8 -0
- data/lib/relaton/calconnect/model/doctype.rb +11 -0
- data/lib/relaton/calconnect/model/ext.rb +11 -0
- data/lib/relaton/calconnect/model/item.rb +13 -0
- data/lib/relaton/calconnect/processor.rb +66 -0
- data/lib/relaton/calconnect/scraper.rb +87 -0
- data/lib/relaton/calconnect/util.rb +8 -0
- data/lib/relaton/calconnect.rb +26 -0
- data/lib/relaton/ccsds/bibliography.rb +63 -0
- data/lib/relaton/ccsds/data/fetcher.rb +247 -0
- data/lib/relaton/ccsds/data/iso_references.rb +30 -0
- data/lib/relaton/ccsds/data/parser.rb +194 -0
- data/lib/relaton/ccsds/hit.rb +24 -0
- data/lib/relaton/ccsds/hit_collection.rb +42 -0
- data/lib/relaton/ccsds/item_data.rb +9 -0
- data/lib/relaton/ccsds/model/bibdata.rb +8 -0
- data/lib/relaton/ccsds/model/bibitem.rb +8 -0
- data/lib/relaton/ccsds/model/doctype.rb +9 -0
- data/lib/relaton/ccsds/model/ext.rb +19 -0
- data/lib/relaton/ccsds/model/item.rb +13 -0
- data/lib/relaton/ccsds/processor.rb +68 -0
- data/lib/relaton/ccsds/util.rb +10 -0
- data/lib/relaton/ccsds.rb +33 -0
- data/lib/relaton/cen/bibliography.rb +121 -0
- data/lib/relaton/cen/committees.yaml +66 -0
- data/lib/relaton/cen/hit.rb +16 -0
- data/lib/relaton/cen/hit_collection.rb +68 -0
- data/lib/relaton/cen/item_data.rb +7 -0
- data/lib/relaton/cen/model/bibdata.rb +8 -0
- data/lib/relaton/cen/model/bibitem.rb +8 -0
- data/lib/relaton/cen/model/docidentifier.rb +9 -0
- data/lib/relaton/cen/model/ext.rb +11 -0
- data/lib/relaton/cen/model/item.rb +14 -0
- data/lib/relaton/cen/model/structured_identifier.rb +9 -0
- data/lib/relaton/cen/processor.rb +40 -0
- data/lib/relaton/cen/scraper.rb +210 -0
- data/lib/relaton/cen/util.rb +8 -0
- data/lib/relaton/cen.rb +29 -0
- data/lib/relaton/cie/bibdata.rb +8 -0
- data/lib/relaton/cie/bibitem.rb +8 -0
- data/lib/relaton/cie/bibliography.rb +31 -0
- data/lib/relaton/cie/data_fetcher.rb +355 -0
- data/lib/relaton/cie/ext.rb +7 -0
- data/lib/relaton/cie/item.rb +11 -0
- data/lib/relaton/cie/item_data.rb +6 -0
- data/lib/relaton/cie/processor.rb +66 -0
- data/lib/relaton/cie/scrapper.rb +39 -0
- data/lib/relaton/cie/util.rb +8 -0
- data/lib/relaton/cie.rb +28 -0
- data/lib/relaton/core/array_wrapper.rb +20 -0
- data/lib/relaton/core/data_fetcher.rb +97 -0
- data/lib/relaton/core/date_parser.rb +42 -0
- data/lib/relaton/core/hash_keys_sybolizer.rb +19 -0
- data/lib/relaton/core/hit.rb +49 -0
- data/lib/relaton/core/hit_collection.rb +118 -0
- data/lib/relaton/core/processor.rb +48 -0
- data/lib/relaton/core/workers_pool.rb +45 -0
- data/lib/relaton/core.rb +9 -0
- data/lib/relaton/db/registry.rb +4 -4
- data/lib/relaton/db.rb +0 -1
- data/lib/relaton/doi/crossref.rb +72 -0
- data/lib/relaton/doi/parser.rb +827 -0
- data/lib/relaton/doi/processor.rb +65 -0
- data/lib/relaton/doi/util.rb +8 -0
- data/lib/relaton/doi.rb +20 -0
- data/lib/relaton/ecma/bibdata.rb +8 -0
- data/lib/relaton/ecma/bibitem.rb +8 -0
- data/lib/relaton/ecma/bibliography.rb +81 -0
- data/lib/relaton/ecma/data_fetcher.rb +103 -0
- data/lib/relaton/ecma/data_parser.rb +49 -0
- data/lib/relaton/ecma/edition_parser.rb +80 -0
- data/lib/relaton/ecma/ext.rb +7 -0
- data/lib/relaton/ecma/item.rb +11 -0
- data/lib/relaton/ecma/item_data.rb +6 -0
- data/lib/relaton/ecma/memento_parser.rb +60 -0
- data/lib/relaton/ecma/page_fetcher.rb +27 -0
- data/lib/relaton/ecma/parser_common.rb +33 -0
- data/lib/relaton/ecma/processor.rb +66 -0
- data/lib/relaton/ecma/standard_parser.rb +134 -0
- data/lib/relaton/ecma/util.rb +8 -0
- data/lib/relaton/ecma.rb +24 -0
- data/lib/relaton/etsi/bibdata.rb +10 -0
- data/lib/relaton/etsi/bibitem.rb +10 -0
- data/lib/relaton/etsi/bibliography.rb +46 -0
- data/lib/relaton/etsi/data_fetcher.rb +128 -0
- data/lib/relaton/etsi/data_parser.rb +208 -0
- data/lib/relaton/etsi/doctype.rb +30 -0
- data/lib/relaton/etsi/ext.rb +31 -0
- data/lib/relaton/etsi/item.rb +15 -0
- data/lib/relaton/etsi/item_data.rb +6 -0
- data/lib/relaton/etsi/processor.rb +69 -0
- data/lib/relaton/etsi/pubid.rb +37 -0
- data/lib/relaton/etsi/status.rb +13 -0
- data/lib/relaton/etsi/util.rb +8 -0
- data/lib/relaton/etsi.rb +25 -0
- data/lib/relaton/gb/bibdata.rb +8 -0
- data/lib/relaton/gb/bibitem.rb +8 -0
- data/lib/relaton/gb/bibliography.rb +145 -0
- data/lib/relaton/gb/ccs.rb +14 -0
- data/lib/relaton/gb/committee.rb +13 -0
- data/lib/relaton/gb/docidentifier.rb +23 -0
- data/lib/relaton/gb/doctype.rb +9 -0
- data/lib/relaton/gb/ext.rb +36 -0
- data/lib/relaton/gb/gb_scraper.rb +61 -0
- data/lib/relaton/gb/gb_type.rb +20 -0
- data/lib/relaton/gb/hit.rb +48 -0
- data/lib/relaton/gb/hit_collection.rb +19 -0
- data/lib/relaton/gb/item.rb +13 -0
- data/lib/relaton/gb/item_data.rb +6 -0
- data/lib/relaton/gb/processor.rb +46 -0
- data/lib/relaton/gb/project_number.rb +38 -0
- data/lib/relaton/gb/scraper.rb +204 -0
- data/lib/relaton/gb/sec_scraper.rb +92 -0
- data/lib/relaton/gb/stage_name.rb +13 -0
- data/lib/relaton/gb/structured_identifier.rb +26 -0
- data/lib/relaton/gb/t_scraper.rb +126 -0
- data/lib/relaton/gb/util.rb +8 -0
- data/lib/relaton/gb/yaml/prefixes.yaml +200 -0
- data/lib/relaton/gb.rb +33 -0
- data/lib/relaton/iana/bibdata.rb +8 -0
- data/lib/relaton/iana/bibitem.rb +8 -0
- data/lib/relaton/iana/bibliography.rb +47 -0
- data/lib/relaton/iana/data_fetcher.rb +71 -0
- data/lib/relaton/iana/item.rb +7 -0
- data/lib/relaton/iana/item_data.rb +6 -0
- data/lib/relaton/iana/parser.rb +146 -0
- data/lib/relaton/iana/processor.rb +68 -0
- data/lib/relaton/iana/util.rb +8 -0
- data/lib/relaton/iana.rb +29 -0
- data/lib/relaton/iec/bibliography.rb +283 -0
- data/lib/relaton/iec/data_fetcher.rb +216 -0
- data/lib/relaton/iec/data_parser.rb +391 -0
- data/lib/relaton/iec/hit.rb +26 -0
- data/lib/relaton/iec/hit_collection.rb +138 -0
- data/lib/relaton/iec/item_data.rb +7 -0
- data/lib/relaton/iec/model/bibdata.rb +8 -0
- data/lib/relaton/iec/model/bibitem.rb +8 -0
- data/lib/relaton/iec/model/docidentifier.rb +131 -0
- data/lib/relaton/iec/model/doctype.rb +12 -0
- data/lib/relaton/iec/model/ext.rb +53 -0
- data/lib/relaton/iec/model/item.rb +20 -0
- data/lib/relaton/iec/model/item_base.rb +12 -0
- data/lib/relaton/iec/model/relation.rb +7 -0
- data/lib/relaton/iec/model/stage_name.rb +13 -0
- data/lib/relaton/iec/processor.rb +73 -0
- data/lib/relaton/iec/statuses.yml +199 -0
- data/lib/relaton/iec/util.rb +8 -0
- data/lib/relaton/iec.rb +98 -0
- data/lib/relaton/ieee/balloting_group.rb +13 -0
- data/lib/relaton/ieee/bibdata.rb +8 -0
- data/lib/relaton/ieee/bibitem.rb +8 -0
- data/lib/relaton/ieee/bibliography.rb +51 -0
- data/lib/relaton/ieee/converter/bibxml/from_rfcxml.rb +10 -0
- data/lib/relaton/ieee/converter/bibxml/from_rfcxml_referencegroup.rb +10 -0
- data/lib/relaton/ieee/converter/bibxml.rb +20 -0
- data/lib/relaton/ieee/data_fetcher.rb +630 -0
- data/lib/relaton/ieee/doctype.rb +9 -0
- data/lib/relaton/ieee/editorial_group.rb +19 -0
- data/lib/relaton/ieee/ext.rb +36 -0
- data/lib/relaton/ieee/idams_parser.rb +323 -0
- data/lib/relaton/ieee/item.rb +11 -0
- data/lib/relaton/ieee/item_data.rb +7 -0
- data/lib/relaton/ieee/processor.rb +68 -0
- data/lib/relaton/ieee/pub_id.rb +161 -0
- data/lib/relaton/ieee/rawbib_id_parser.rb +548 -0
- data/lib/relaton/ieee/util.rb +8 -0
- data/lib/relaton/ieee.rb +29 -0
- data/lib/relaton/ietf/bibdata.rb +8 -0
- data/lib/relaton/ietf/bibitem.rb +8 -0
- data/lib/relaton/ietf/bibliography.rb +35 -0
- data/lib/relaton/ietf/bibxml_parser.rb +232 -0
- data/lib/relaton/ietf/data_fetcher.rb +278 -0
- data/lib/relaton/ietf/doctype.rb +9 -0
- data/lib/relaton/ietf/ext.rb +63 -0
- data/lib/relaton/ietf/item.rb +16 -0
- data/lib/relaton/ietf/item_base.rb +18 -0
- data/lib/relaton/ietf/item_data.rb +6 -0
- data/lib/relaton/ietf/processing_instructions.rb +79 -0
- data/lib/relaton/ietf/processor.rb +68 -0
- data/lib/relaton/ietf/relation.rb +9 -0
- data/lib/relaton/ietf/rfc/abstract.rb +19 -0
- data/lib/relaton/ietf/rfc/author.rb +21 -0
- data/lib/relaton/ietf/rfc/entry.rb +410 -0
- data/lib/relaton/ietf/rfc/entry_date.rb +21 -0
- data/lib/relaton/ietf/rfc/format.rb +19 -0
- data/lib/relaton/ietf/rfc/index.rb +46 -0
- data/lib/relaton/ietf/rfc/is_also.rb +21 -0
- data/lib/relaton/ietf/rfc/keywords.rb +19 -0
- data/lib/relaton/ietf/rfc/rfc_index_namespace.rb +11 -0
- data/lib/relaton/ietf/scraper.rb +68 -0
- data/lib/relaton/ietf/util.rb +8 -0
- data/lib/relaton/ietf/wg_name_resolver.rb +42 -0
- data/lib/relaton/ietf.rb +27 -0
- data/lib/relaton/iho/bibdata.rb +8 -0
- data/lib/relaton/iho/bibitem.rb +8 -0
- data/lib/relaton/iho/bibliography.rb +114 -0
- data/lib/relaton/iho/comment_period.rb +13 -0
- data/lib/relaton/iho/docidentifier.rb +31 -0
- data/lib/relaton/iho/doctype.rb +10 -0
- data/lib/relaton/iho/ext.rb +20 -0
- data/lib/relaton/iho/hash_parser_v1.rb +144 -0
- data/lib/relaton/iho/item.rb +20 -0
- data/lib/relaton/iho/item_base.rb +18 -0
- data/lib/relaton/iho/item_data.rb +6 -0
- data/lib/relaton/iho/processor.rb +54 -0
- data/lib/relaton/iho/relation.rb +9 -0
- data/lib/relaton/iho/structured_identifier.rb +20 -0
- data/lib/relaton/iho/util.rb +8 -0
- data/lib/relaton/iho.rb +27 -0
- data/lib/relaton/index/config.rb +52 -0
- data/lib/relaton/index/file_io.rb +305 -0
- data/lib/relaton/index/file_storage.rb +61 -0
- data/lib/relaton/index/id_number.rb +30 -0
- data/lib/relaton/index/pool.rb +41 -0
- data/lib/relaton/index/type.rb +159 -0
- data/lib/relaton/index/util.rb +18 -0
- data/lib/relaton/index.rb +60 -0
- data/lib/relaton/isbn/isbn.rb +61 -0
- data/lib/relaton/isbn/open_library.rb +43 -0
- data/lib/relaton/isbn/parser.rb +88 -0
- data/lib/relaton/isbn/processor.rb +48 -0
- data/lib/relaton/isbn/util.rb +8 -0
- data/lib/relaton/isbn.rb +19 -0
- data/lib/relaton/iso/bibliography.rb +407 -0
- data/lib/relaton/iso/data_fetcher.rb +338 -0
- data/lib/relaton/iso/data_parser.rb +444 -0
- data/lib/relaton/iso/hash_parser_v1.rb +177 -0
- data/lib/relaton/iso/hit.rb +57 -0
- data/lib/relaton/iso/hit_collection.rb +184 -0
- data/lib/relaton/iso/item_data.rb +28 -0
- data/lib/relaton/iso/model/bibdata.rb +10 -0
- data/lib/relaton/iso/model/bibitem.rb +8 -0
- data/lib/relaton/iso/model/contributor.rb +6 -0
- data/lib/relaton/iso/model/contributor_info.rb +9 -0
- data/lib/relaton/iso/model/docidentifier.rb +134 -0
- data/lib/relaton/iso/model/doctype.rb +13 -0
- data/lib/relaton/iso/model/ext.rb +35 -0
- data/lib/relaton/iso/model/item.rb +17 -0
- data/lib/relaton/iso/model/item_base.rb +22 -0
- data/lib/relaton/iso/model/organization.rb +9 -0
- data/lib/relaton/iso/model/project_number.rb +22 -0
- data/lib/relaton/iso/model/relation.rb +9 -0
- data/lib/relaton/iso/model/stagename.rb +14 -0
- data/lib/relaton/iso/model/structured_identifier.rb +31 -0
- data/lib/relaton/iso/processor.rb +84 -0
- data/lib/relaton/iso/scraper.rb +619 -0
- data/lib/relaton/iso/type/pubid.rb +50 -0
- data/lib/relaton/iso/util.rb +8 -0
- data/lib/relaton/iso.rb +30 -0
- data/lib/relaton/itu/bibliography.rb +90 -0
- data/lib/relaton/itu/data_fetcher.rb +104 -0
- data/lib/relaton/itu/data_parser_r.rb +140 -0
- data/lib/relaton/itu/hit.rb +22 -0
- data/lib/relaton/itu/hit_collection.rb +127 -0
- data/lib/relaton/itu/item_data.rb +6 -0
- data/lib/relaton/itu/model/approval_stage.rb +13 -0
- data/lib/relaton/itu/model/bibdata.rb +8 -0
- data/lib/relaton/itu/model/bibitem.rb +8 -0
- data/lib/relaton/itu/model/docidentifier.rb +9 -0
- data/lib/relaton/itu/model/doctype.rb +13 -0
- data/lib/relaton/itu/model/ext.rb +47 -0
- data/lib/relaton/itu/model/item.rb +13 -0
- data/lib/relaton/itu/model/meeting.rb +13 -0
- data/lib/relaton/itu/model/meeting_date.rb +15 -0
- data/lib/relaton/itu/model/question.rb +13 -0
- data/lib/relaton/itu/model/recommendation_status.rb +11 -0
- data/lib/relaton/itu/model/structured_identifier.rb +19 -0
- data/lib/relaton/itu/processor.rb +66 -0
- data/lib/relaton/itu/pubid.rb +177 -0
- data/lib/relaton/itu/radio_regulations_parser.rb +70 -0
- data/lib/relaton/itu/recommendation_parser.rb +161 -0
- data/lib/relaton/itu/scraper.rb +193 -0
- data/lib/relaton/itu/util.rb +8 -0
- data/lib/relaton/itu.rb +33 -0
- data/lib/relaton/jis/bibdata.rb +8 -0
- data/lib/relaton/jis/bibitem.rb +8 -0
- data/lib/relaton/jis/bibliography.rb +75 -0
- data/lib/relaton/jis/data_fetcher.rb +181 -0
- data/lib/relaton/jis/docidentifier.rb +21 -0
- data/lib/relaton/jis/doctype.rb +9 -0
- data/lib/relaton/jis/ext.rb +13 -0
- data/lib/relaton/jis/hit.rb +93 -0
- data/lib/relaton/jis/hit_collection.rb +127 -0
- data/lib/relaton/jis/item.rb +22 -0
- data/lib/relaton/jis/item_base.rb +26 -0
- data/lib/relaton/jis/item_data.rb +8 -0
- data/lib/relaton/jis/processor.rb +55 -0
- data/lib/relaton/jis/relation.rb +11 -0
- data/lib/relaton/jis/scraper.rb +232 -0
- data/lib/relaton/jis/structured_identifier.rb +13 -0
- data/lib/relaton/jis/util.rb +8 -0
- data/lib/relaton/jis.rb +33 -0
- data/lib/relaton/logger/channels/gh_issue.rb +78 -0
- data/lib/relaton/logger/config.rb +34 -0
- data/lib/relaton/logger/formatter_json.rb +8 -0
- data/lib/relaton/logger/formatter_string.rb +12 -0
- data/lib/relaton/logger/log.rb +64 -0
- data/lib/relaton/logger/log_device.rb +27 -0
- data/lib/relaton/logger/pool.rb +24 -0
- data/lib/relaton/logger.rb +18 -0
- data/lib/relaton/nist/bibdata.rb +8 -0
- data/lib/relaton/nist/bibitem.rb +8 -0
- data/lib/relaton/nist/bibliography.rb +191 -0
- data/lib/relaton/nist/comment_period.rb +15 -0
- data/lib/relaton/nist/data_fetcher.rb +84 -0
- data/lib/relaton/nist/date.rb +7 -0
- data/lib/relaton/nist/doctype.rb +7 -0
- data/lib/relaton/nist/ext.rb +16 -0
- data/lib/relaton/nist/hit.rb +18 -0
- data/lib/relaton/nist/hit_collection.rb +362 -0
- data/lib/relaton/nist/item.rb +17 -0
- data/lib/relaton/nist/item_data.rb +6 -0
- data/lib/relaton/nist/mods_parser.rb +276 -0
- data/lib/relaton/nist/processor.rb +68 -0
- data/lib/relaton/nist/pubs_export.rb +69 -0
- data/lib/relaton/nist/relation.rb +7 -0
- data/lib/relaton/nist/scraper.rb +290 -0
- data/lib/relaton/nist/series.yaml +49 -0
- data/lib/relaton/nist/util.rb +8 -0
- data/lib/relaton/nist.rb +34 -0
- data/lib/relaton/oasis/bibdata.rb +8 -0
- data/lib/relaton/oasis/bibitem.rb +8 -0
- data/lib/relaton/oasis/bibliography.rb +60 -0
- data/lib/relaton/oasis/browser_agent.rb +71 -0
- data/lib/relaton/oasis/data_fetcher.rb +94 -0
- data/lib/relaton/oasis/data_parser.rb +305 -0
- data/lib/relaton/oasis/data_parser_utils.rb +296 -0
- data/lib/relaton/oasis/data_part_parser.rb +239 -0
- data/lib/relaton/oasis/doctype.rb +7 -0
- data/lib/relaton/oasis/ext.rb +19 -0
- data/lib/relaton/oasis/item.rb +11 -0
- data/lib/relaton/oasis/item_data.rb +6 -0
- data/lib/relaton/oasis/processor.rb +68 -0
- data/lib/relaton/oasis/util.rb +8 -0
- data/lib/relaton/oasis.rb +28 -0
- data/lib/relaton/ogc/bibdata.rb +8 -0
- data/lib/relaton/ogc/bibitem.rb +8 -0
- data/lib/relaton/ogc/bibliography.rb +64 -0
- data/lib/relaton/ogc/data_fetcher.rb +110 -0
- data/lib/relaton/ogc/docidentifier.rb +6 -0
- data/lib/relaton/ogc/doctype.rb +12 -0
- data/lib/relaton/ogc/ext.rb +15 -0
- data/lib/relaton/ogc/hit.rb +18 -0
- data/lib/relaton/ogc/hit_collection.rb +36 -0
- data/lib/relaton/ogc/item.rb +13 -0
- data/lib/relaton/ogc/item_data.rb +6 -0
- data/lib/relaton/ogc/processor.rb +58 -0
- data/lib/relaton/ogc/scraper.rb +225 -0
- data/lib/relaton/ogc/util.rb +8 -0
- data/lib/relaton/ogc.rb +26 -0
- data/lib/relaton/oiml/bibdata.rb +8 -0
- data/lib/relaton/oiml/bibitem.rb +8 -0
- data/lib/relaton/oiml/bibliography.rb +94 -0
- data/lib/relaton/oiml/docidentifier.rb +33 -0
- data/lib/relaton/oiml/doctype.rb +13 -0
- data/lib/relaton/oiml/ext.rb +42 -0
- data/lib/relaton/oiml/item.rb +20 -0
- data/lib/relaton/oiml/item_base.rb +18 -0
- data/lib/relaton/oiml/item_data.rb +6 -0
- data/lib/relaton/oiml/processor.rb +54 -0
- data/lib/relaton/oiml/relation.rb +9 -0
- data/lib/relaton/oiml/util.rb +8 -0
- data/lib/relaton/oiml.rb +24 -0
- data/lib/relaton/omg/bibdata.rb +8 -0
- data/lib/relaton/omg/bibitem.rb +8 -0
- data/lib/relaton/omg/bibliography.rb +31 -0
- data/lib/relaton/omg/ext.rb +7 -0
- data/lib/relaton/omg/item.rb +8 -0
- data/lib/relaton/omg/item_data.rb +6 -0
- data/lib/relaton/omg/processor.rb +34 -0
- data/lib/relaton/omg/scraper.rb +141 -0
- data/lib/relaton/omg/util.rb +8 -0
- data/lib/relaton/omg.rb +24 -0
- data/lib/relaton/plateau/bibdata.rb +8 -0
- data/lib/relaton/plateau/bibitem.rb +8 -0
- data/lib/relaton/plateau/bibliography.rb +24 -0
- data/lib/relaton/plateau/data_fetcher.rb +153 -0
- data/lib/relaton/plateau/doctype.rb +7 -0
- data/lib/relaton/plateau/ext.rb +23 -0
- data/lib/relaton/plateau/handbook_parser.rb +95 -0
- data/lib/relaton/plateau/hit.rb +13 -0
- data/lib/relaton/plateau/hit_collection.rb +59 -0
- data/lib/relaton/plateau/item.rb +12 -0
- data/lib/relaton/plateau/item_data.rb +6 -0
- data/lib/relaton/plateau/parser.rb +101 -0
- data/lib/relaton/plateau/processor.rb +49 -0
- data/lib/relaton/plateau/technical_report_parser.rb +91 -0
- data/lib/relaton/plateau/util.rb +8 -0
- data/lib/relaton/plateau.rb +28 -0
- data/lib/relaton/un/bibdata.rb +8 -0
- data/lib/relaton/un/bibitem.rb +8 -0
- data/lib/relaton/un/bibliography.rb +48 -0
- data/lib/relaton/un/doctype.rb +10 -0
- data/lib/relaton/un/ext.rb +30 -0
- data/lib/relaton/un/hit.rb +56 -0
- data/lib/relaton/un/hit_collection.rb +61 -0
- data/lib/relaton/un/item.rb +11 -0
- data/lib/relaton/un/item_data.rb +6 -0
- data/lib/relaton/un/parser.rb +108 -0
- data/lib/relaton/un/processor.rb +38 -0
- data/lib/relaton/un/session.rb +25 -0
- data/lib/relaton/un/token_generator.rb +105 -0
- data/lib/relaton/un/util.rb +8 -0
- data/lib/relaton/un/wasm/decoder.rb +434 -0
- data/lib/relaton/un/wasm/instance.rb +101 -0
- data/lib/relaton/un/wasm/interpreter.rb +613 -0
- data/lib/relaton/un/wasm/memory.rb +112 -0
- data/lib/relaton/un/wasm/module.rb +47 -0
- data/lib/relaton/un/wasm.rb +17 -0
- data/lib/relaton/un/wasm_v_bg.wasm +0 -0
- data/lib/relaton/un.rb +28 -0
- data/lib/relaton/version.rb +1 -1
- data/lib/relaton/w3c/bibdata.rb +8 -0
- data/lib/relaton/w3c/bibitem.rb +8 -0
- data/lib/relaton/w3c/bibliography.rb +54 -0
- data/lib/relaton/w3c/data_fetcher.rb +309 -0
- data/lib/relaton/w3c/data_parser.rb +379 -0
- data/lib/relaton/w3c/doctype.rb +7 -0
- data/lib/relaton/w3c/ext.rb +11 -0
- data/lib/relaton/w3c/item.rb +12 -0
- data/lib/relaton/w3c/item_data.rb +6 -0
- data/lib/relaton/w3c/processor.rb +49 -0
- data/lib/relaton/w3c/pubid.rb +73 -0
- data/lib/relaton/w3c/safe_realize.rb +59 -0
- data/lib/relaton/w3c/util.rb +8 -0
- data/lib/relaton/w3c.rb +25 -0
- data/lib/relaton/xsf/bibdata.rb +8 -0
- data/lib/relaton/xsf/bibitem.rb +8 -0
- data/lib/relaton/xsf/bibliography.rb +24 -0
- data/lib/relaton/xsf/data_fetcher.rb +56 -0
- data/lib/relaton/xsf/hit.rb +17 -0
- data/lib/relaton/xsf/hit_collection.rb +24 -0
- data/lib/relaton/xsf/item.rb +7 -0
- data/lib/relaton/xsf/item_data.rb +6 -0
- data/lib/relaton/xsf/processor.rb +50 -0
- data/lib/relaton/xsf/util.rb +9 -0
- data/lib/relaton/xsf.rb +30 -0
- data/lib/relaton-core.rb +1 -0
- data/lib/relaton.rb +43 -0
- metadata +673 -170
- data/.github/workflows/rake.yml +0 -14
- data/.github/workflows/release.yml +0 -24
- data/.github/workflows/rubocop.yml +0 -48
- data/.gitignore +0 -12
- data/.rspec +0 -3
- data/CLAUDE.md +0 -78
- data/Gemfile +0 -29
- data/Rakefile +0 -6
- data/docs/CHANGELOG.adoc +0 -16
- data/docs/VERSIONING_POLICY.adoc +0 -38
- data/docs/navigation.adoc +0 -6
- data/lib/relaton/db/version.rb +0 -5
- data/relaton.gemspec +0 -72
- data/spec/relaton/config_spec.rb +0 -10
- data/spec/relaton/db_cache_spec.rb +0 -51
- data/spec/relaton/db_spec.rb +0 -567
- data/spec/relaton/registry_spec.rb +0 -178
- data/spec/relaton/util_spec.rb +0 -3
- data/spec/relaton_meta_spec.rb +0 -25
- data/spec/relaton_spec.rb +0 -800
- data/spec/spec_helper.rb +0 -45
- data/spec/support/gb_t_20223_2006.xml +0 -33
- data/spec/support/iso_111111119115_1.xml +0 -0
- data/spec/support/iso_19115_1.xml +0 -115
- data/spec/support/iso_19115_2.xml +0 -95
- data/spec/support/rfc_8341.xml +0 -46
- data/spec/vcr_cassetes/api_relaton_org.yml +0 -121
- data/spec/vcr_cassetes/api_relaton_org_unavailable.yml +0 -140
- data/spec/vcr_cassetes/cc_dir_10005_2019.yml +0 -202
- data/spec/vcr_cassetes/cipm_meeting_43.yml +0 -1505
- data/spec/vcr_cassetes/gb_t_20223_2006.yml +0 -729
- data/spec/vcr_cassetes/iso_111111119115_1.yml +0 -12951
- data/spec/vcr_cassetes/iso_19115_1.yml +0 -17334
- data/spec/vcr_cassetes/iso_19115_1_2.yml +0 -322
- data/spec/vcr_cassetes/iso_19115_1_std.yml +0 -17334
- data/spec/vcr_cassetes/iso_19115_all_parts.yml +0 -185
- data/spec/vcr_cassetes/iso_19133_2005.yml +0 -144
- data/spec/vcr_cassetes/iso_combined_applied.yml +0 -318
- data/spec/vcr_cassetes/iso_combined_included.yml +0 -318
- data/spec/vcr_cassetes/ogc_19_025r1.yml +0 -374
- data/spec/vcr_cassetes/omg_ami4ccm_1_0.yml +0 -317
- data/spec/vcr_cassetes/rfc_8341.yml +0 -1278
data/spec/spec_helper.rb
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
# require "bundler/setup"
|
|
4
|
-
require "fileutils"
|
|
5
|
-
require "rspec/matchers"
|
|
6
|
-
require "equivalent-xml"
|
|
7
|
-
require "simplecov"
|
|
8
|
-
require "vcr"
|
|
9
|
-
|
|
10
|
-
VCR.configure do |c|
|
|
11
|
-
c.cassette_library_dir = "spec/vcr_cassetes"
|
|
12
|
-
c.default_cassette_options = {
|
|
13
|
-
clean_outdated_http_interactions: true,
|
|
14
|
-
re_record_interval: 7 * 24 * 3600,
|
|
15
|
-
record: :once,
|
|
16
|
-
allow_playback_repeats: true,
|
|
17
|
-
preserve_exact_body_bytes: true,
|
|
18
|
-
}
|
|
19
|
-
c.hook_into :webmock
|
|
20
|
-
c.configure_rspec_metadata!
|
|
21
|
-
end
|
|
22
|
-
|
|
23
|
-
SimpleCov.start do
|
|
24
|
-
add_filter "/spec/"
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
require "relaton/db"
|
|
28
|
-
|
|
29
|
-
Relaton::Db.configure do |config|
|
|
30
|
-
config.use_api = false
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
RSpec.configure do |config|
|
|
34
|
-
# Enable flags like --only-failures and --next-failure
|
|
35
|
-
config.example_status_persistence_file_path = ".rspec_status"
|
|
36
|
-
|
|
37
|
-
# Disable RSpec exposing methods globally on `Module` and `main`
|
|
38
|
-
config.disable_monkey_patching!
|
|
39
|
-
|
|
40
|
-
config.expect_with :rspec do |c|
|
|
41
|
-
c.syntax = :expect
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
config.expose_dsl_globally = true
|
|
45
|
-
end
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
<bibitem type="standard" id="GB/T20223">
|
|
2
|
-
<title format="text/plain" language="zh" script="Hans">棉短绒</title>
|
|
3
|
-
<title format="text/plain" language="en" script="Latn">Cotton linter</title>
|
|
4
|
-
<uri type="src">http://www.std.gov.cn/gb/search/gbDetailed?id=71F772D778ADD3A7E05397BE0A0AB82A</uri>
|
|
5
|
-
<docidentifier type="Chinese Standard">GB/T 20223-2006</docidentifier>
|
|
6
|
-
<date type="published">
|
|
7
|
-
<on>2006</on>
|
|
8
|
-
</date>
|
|
9
|
-
<contributor>
|
|
10
|
-
<role type="publisher"/>
|
|
11
|
-
<organization>
|
|
12
|
-
<name language="en">General Administration of Quality Supervision, Inspection and Quarantine; Standardization Administration of China</name>
|
|
13
|
-
<name language="zh">中华人民共和国国家质量监督检验检疫总局 中国国家标准化管理委员会</name>
|
|
14
|
-
</organization>
|
|
15
|
-
</contributor>
|
|
16
|
-
<language>zh</language>
|
|
17
|
-
<script>Hans</script>
|
|
18
|
-
<status>obsoleted</status>
|
|
19
|
-
<ics>
|
|
20
|
-
<code>59.060.10</code>
|
|
21
|
-
<text>Natural fibres</text>
|
|
22
|
-
</ics>
|
|
23
|
-
<gbcommittee type="technical">中国纤维检验局</gbcommittee>
|
|
24
|
-
<gbtype>
|
|
25
|
-
<gbscope>national</gbscope>
|
|
26
|
-
<gbprefix>GB_national</gbprefix>
|
|
27
|
-
<gbmandate>recommended</gbmandate>
|
|
28
|
-
</gbtype>
|
|
29
|
-
<ccs>
|
|
30
|
-
<code>B32</code>
|
|
31
|
-
<text>纤维作物与产品</text>
|
|
32
|
-
</ccs>
|
|
33
|
-
</bibitem>
|
|
File without changes
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
<bibitem type="international-standard" id="ISO19115-1">
|
|
2
|
-
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 1: Fundamentals</title>
|
|
3
|
-
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 1: Principes de base</title>
|
|
4
|
-
<uri type="src">https://www.iso.org/standard/53798.html</uri>
|
|
5
|
-
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:53798:en</uri>
|
|
6
|
-
<uri type="rss">https://www.iso.org/contents/data/standard/05/37/53798.detail.rss</uri>
|
|
7
|
-
<docidentifier type="ISO">ISO 19115-1</docidentifier>
|
|
8
|
-
<contributor>
|
|
9
|
-
<role type="publisher"/>
|
|
10
|
-
<organization>
|
|
11
|
-
<name>International Organization for Standardization</name>
|
|
12
|
-
<abbreviation>ISO</abbreviation>
|
|
13
|
-
<uri>www.iso.org</uri>
|
|
14
|
-
</organization>
|
|
15
|
-
</contributor>
|
|
16
|
-
<edition>1</edition>
|
|
17
|
-
<language>en</language>
|
|
18
|
-
<language>fr</language>
|
|
19
|
-
<script>Latn</script>
|
|
20
|
-
<status>
|
|
21
|
-
<stage>60</stage>
|
|
22
|
-
<substage>60</substage>
|
|
23
|
-
</status>
|
|
24
|
-
<copyright>
|
|
25
|
-
<from>2014</from>
|
|
26
|
-
<owner>
|
|
27
|
-
<organization>
|
|
28
|
-
<name>ISO</name>
|
|
29
|
-
</organization>
|
|
30
|
-
</owner>
|
|
31
|
-
</copyright>
|
|
32
|
-
<relation type="obsoletes">
|
|
33
|
-
<bibitem>
|
|
34
|
-
<formattedref>ISO 19115:2003</formattedref>
|
|
35
|
-
</bibitem>
|
|
36
|
-
</relation>
|
|
37
|
-
<relation type="obsoletes">
|
|
38
|
-
<bibitem>
|
|
39
|
-
<formattedref>ISO 19115:2003/Cor 1:2006</formattedref>
|
|
40
|
-
</bibitem>
|
|
41
|
-
</relation>
|
|
42
|
-
<relation type="updates">
|
|
43
|
-
<bibitem>
|
|
44
|
-
<formattedref>ISO 19115-1:2014/Amd 1:2018</formattedref>
|
|
45
|
-
</bibitem>
|
|
46
|
-
</relation>
|
|
47
|
-
<relation type="instance">
|
|
48
|
-
<bibitem type="international-standard">
|
|
49
|
-
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 1: Fundamentals</title>
|
|
50
|
-
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 1: Principes de base</title>
|
|
51
|
-
<uri type="src">https://www.iso.org/standard/53798.html</uri>
|
|
52
|
-
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:53798:en</uri>
|
|
53
|
-
<uri type="rss">https://www.iso.org/contents/data/standard/05/37/53798.detail.rss</uri>
|
|
54
|
-
<docidentifier type="ISO">ISO 19115-1:2014</docidentifier>
|
|
55
|
-
<date type="published">
|
|
56
|
-
<on>2014</on>
|
|
57
|
-
</date>
|
|
58
|
-
<contributor>
|
|
59
|
-
<role type="publisher"/>
|
|
60
|
-
<organization>
|
|
61
|
-
<name>International Organization for Standardization</name>
|
|
62
|
-
<abbreviation>ISO</abbreviation>
|
|
63
|
-
<uri>www.iso.org</uri>
|
|
64
|
-
</organization>
|
|
65
|
-
</contributor>
|
|
66
|
-
<edition>1</edition>
|
|
67
|
-
<language>en</language>
|
|
68
|
-
<language>fr</language>
|
|
69
|
-
<script>Latn</script>
|
|
70
|
-
<abstract format="plain" language="en" script="Latn">ISO 19115-1:2014 defines the schema required for describing geographic information and services by means of metadata. It provides information about the identification, the extent, the quality, the spatial and temporal aspects, the content, the spatial reference, the portrayal, distribution, and other properties of digital geographic data and services.ISO 19115-1:2014 is applicable to:-the cataloguing of all types of resources, clearinghouse activities, and the full description of datasets and services;-geographic services, geographic datasets, dataset series, and individual geographic features and feature properties.ISO 19115-1:2014 defines:-mandatory and conditional metadata sections, metadata entities, and metadata elements;-the minimum set of metadata required to serve most metadata applications (data discovery, determining data fitness for use, data access, data transfer, and use of digital data and services);-optional metadata elements to allow for a more extensive standard description of resources, if required;-a method for extending metadata to fit specialized needs.Though ISO 19115-1:2014 is applicable to digital data and services, its principles can be extended to many other types of resources such as maps, charts, and textual documents as well as non-geographic data. Certain conditional metadata elements might not apply to these other forms of data.</abstract>
|
|
71
|
-
<abstract format="plain" language="fr" script="Latn">L'ISO 19115-1:2014 définit le schéma requis pour décrire des informations géographiques et des services au moyen de métadonnées. Elle fournit des informations concernant l'identification, l'étendue, la qualité, les aspects spatiaux et temporels, le contenu, la référence spatiale, la représentation des données, la distribution et d'autres propriétés des données géographiques numériques et des services.L'ISO 19115-1:2014 est applicable:-au catalogage de tous les types de ressources, des activités des centres d'informations et à la description complète des jeux de données et des services,-aux services géographiques, jeux de données géographiques, séries de jeux de données, entités géographiques individuelles et propriétés d'entités.L'ISO 19115-1:2014 définit:-des sections relatives aux métadonnées obligatoires et facultatives, aux entités de métadonnées et aux éléments de métadonnées,-le jeu minimal de métadonnées requis pour répondre au besoin de la plupart des applications des métadonnées (la découverte des données, la détermination de l'adéquation des données à une utilisation, l'accès aux données, le transfert des données et l'utilisation des données numériques et des services),-les éléments de métadonnées facultatifs pour permettre une description standard plus poussée des ressources, si cela est nécessaire,-un procédé d'extension des métadonnées pour s'adapter aux besoins spéciaux.L'ISO 19115-1:2014 est applicable aux données numériques et services, ses principes peuvent être étendus à bien d'autres types de ressources telles que les cartes, les graphes et les documents textes, de même qu'à des données non géographiques. Certains éléments de métadonnées conditionnels peuvent ne pas s'appliquer à ces autres formes de données.</abstract>
|
|
72
|
-
<status>
|
|
73
|
-
<stage>60</stage>
|
|
74
|
-
<substage>60</substage>
|
|
75
|
-
</status>
|
|
76
|
-
<copyright>
|
|
77
|
-
<from>2014</from>
|
|
78
|
-
<owner>
|
|
79
|
-
<organization>
|
|
80
|
-
<name>ISO</name>
|
|
81
|
-
</organization>
|
|
82
|
-
</owner>
|
|
83
|
-
</copyright>
|
|
84
|
-
<relation type="obsoletes">
|
|
85
|
-
<bibitem>
|
|
86
|
-
<formattedref>ISO 19115:2003</formattedref>
|
|
87
|
-
</bibitem>
|
|
88
|
-
</relation>
|
|
89
|
-
<relation type="obsoletes">
|
|
90
|
-
<bibitem>
|
|
91
|
-
<formattedref>ISO 19115:2003/Cor 1:2006</formattedref>
|
|
92
|
-
</bibitem>
|
|
93
|
-
</relation>
|
|
94
|
-
<relation type="updates">
|
|
95
|
-
<bibitem>
|
|
96
|
-
<formattedref>ISO 19115-1:2014/Amd 1:2018</formattedref>
|
|
97
|
-
</bibitem>
|
|
98
|
-
</relation>
|
|
99
|
-
<editorialgroup>
|
|
100
|
-
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
|
101
|
-
</editorialgroup>
|
|
102
|
-
<ics>
|
|
103
|
-
<code>35.240.70</code>
|
|
104
|
-
<text>IT applications in science</text>
|
|
105
|
-
</ics>
|
|
106
|
-
</bibitem>
|
|
107
|
-
</relation>
|
|
108
|
-
<editorialgroup>
|
|
109
|
-
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
|
110
|
-
</editorialgroup>
|
|
111
|
-
<ics>
|
|
112
|
-
<code>35.240.70</code>
|
|
113
|
-
<text>IT applications in science</text>
|
|
114
|
-
</ics>
|
|
115
|
-
</bibitem>
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
<bibitem type="international-standard" id="ISO19115-2">
|
|
2
|
-
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data</title>
|
|
3
|
-
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 2: Extensions pour les images et les matrices</title>
|
|
4
|
-
<uri type="src">https://www.iso.org/standard/39229.html</uri>
|
|
5
|
-
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:39229:en</uri>
|
|
6
|
-
<uri type="rss">https://www.iso.org/contents/data/standard/03/92/39229.detail.rss</uri>
|
|
7
|
-
<docidentifier type="ISO">ISO 19115-2</docidentifier>
|
|
8
|
-
<contributor>
|
|
9
|
-
<role type="publisher"/>
|
|
10
|
-
<organization>
|
|
11
|
-
<name>International Organization for Standardization</name>
|
|
12
|
-
<abbreviation>ISO</abbreviation>
|
|
13
|
-
<uri>www.iso.org</uri>
|
|
14
|
-
</organization>
|
|
15
|
-
</contributor>
|
|
16
|
-
<edition>1</edition>
|
|
17
|
-
<language>en</language>
|
|
18
|
-
<language>fr</language>
|
|
19
|
-
<script>Latn</script>
|
|
20
|
-
<status>
|
|
21
|
-
<stage>90</stage>
|
|
22
|
-
<substage>92</substage>
|
|
23
|
-
</status>
|
|
24
|
-
<copyright>
|
|
25
|
-
<from>2009</from>
|
|
26
|
-
<owner>
|
|
27
|
-
<organization>
|
|
28
|
-
<name>ISO</name>
|
|
29
|
-
</organization>
|
|
30
|
-
</owner>
|
|
31
|
-
</copyright>
|
|
32
|
-
<relation type="updates">
|
|
33
|
-
<bibitem>
|
|
34
|
-
<formattedref>ISO 19115-2</formattedref>
|
|
35
|
-
</bibitem>
|
|
36
|
-
</relation>
|
|
37
|
-
<relation type="instance">
|
|
38
|
-
<bibitem type="international-standard">
|
|
39
|
-
<title format="text/plain" language="en" script="Latn">Geographic information -- Metadata -- Part 2: Extensions for imagery and gridded data</title>
|
|
40
|
-
<title format="text/plain" language="fr" script="Latn">Information géographique -- Métadonnées -- Partie 2: Extensions pour les images et les matrices</title>
|
|
41
|
-
<uri type="src">https://www.iso.org/standard/39229.html</uri>
|
|
42
|
-
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:39229:en</uri>
|
|
43
|
-
<uri type="rss">https://www.iso.org/contents/data/standard/03/92/39229.detail.rss</uri>
|
|
44
|
-
<docidentifier type="ISO">ISO 19115-2:2009</docidentifier>
|
|
45
|
-
<date type="published">
|
|
46
|
-
<on>2009</on>
|
|
47
|
-
</date>
|
|
48
|
-
<contributor>
|
|
49
|
-
<role type="publisher"/>
|
|
50
|
-
<organization>
|
|
51
|
-
<name>International Organization for Standardization</name>
|
|
52
|
-
<abbreviation>ISO</abbreviation>
|
|
53
|
-
<uri>www.iso.org</uri>
|
|
54
|
-
</organization>
|
|
55
|
-
</contributor>
|
|
56
|
-
<edition>1</edition>
|
|
57
|
-
<language>en</language>
|
|
58
|
-
<language>fr</language>
|
|
59
|
-
<script>Latn</script>
|
|
60
|
-
<abstract format="plain" language="en" script="Latn">ISO 19115-2:2009 extends the existing geographic metadata standard by defining the schema required for describing imagery and gridded data. It provides information about the properties of the measuring equipment used to acquire the data, the geometry of the measuring process employed by the equipment, and the production process used to digitize the raw data. This extension deals with metadata needed to describe the derivation of geographic information from raw data, including the properties of the measuring system, and the numerical methods and computational procedures used in the derivation. The metadata required to address coverage data in general is addressed sufficiently in the general part of ISO 19115.</abstract>
|
|
61
|
-
<abstract format="plain" language="fr" script="Latn">L'ISO 19115-2:2009 étend la norme existante sur les métadonnées géographiques en définissant le schéma requis de description des images et des matrices. Elle donne des informations relatives aux propriétés des équipements de mesure utilisés pour obtenir les données, la géométrie du processus de mesure utilisée par ces équipements, et le processus de production utilisé pour numériser les données brutes. Cette extension porte sur les métadonnées nécessaires pour décrire la déduction des informations géographiques à partir de données brutes, y compris les propriétés du système de mesure, et les méthodes numériques et procédures informatiques utilisées pour la déduction. Les métadonnées requises pour aborder les données de couverture en général sont suffisamment abordées dans la partie générale de l'ISO 19115.</abstract>
|
|
62
|
-
<status>
|
|
63
|
-
<stage>90</stage>
|
|
64
|
-
<substage>92</substage>
|
|
65
|
-
</status>
|
|
66
|
-
<copyright>
|
|
67
|
-
<from>2009</from>
|
|
68
|
-
<owner>
|
|
69
|
-
<organization>
|
|
70
|
-
<name>ISO</name>
|
|
71
|
-
</organization>
|
|
72
|
-
</owner>
|
|
73
|
-
</copyright>
|
|
74
|
-
<relation type="updates">
|
|
75
|
-
<bibitem>
|
|
76
|
-
<formattedref>ISO 19115-2</formattedref>
|
|
77
|
-
</bibitem>
|
|
78
|
-
</relation>
|
|
79
|
-
<editorialgroup>
|
|
80
|
-
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
|
81
|
-
</editorialgroup>
|
|
82
|
-
<ics>
|
|
83
|
-
<code>35.240.70</code>
|
|
84
|
-
<text>IT applications in science</text>
|
|
85
|
-
</ics>
|
|
86
|
-
</bibitem>
|
|
87
|
-
</relation>
|
|
88
|
-
<editorialgroup>
|
|
89
|
-
<technical_committee number="211" type="TC">ISO/TC 211Geographic information/Geomatics</technical_committee>
|
|
90
|
-
</editorialgroup>
|
|
91
|
-
<ics>
|
|
92
|
-
<code>35.240.70</code>
|
|
93
|
-
<text>IT applications in science</text>
|
|
94
|
-
</ics>
|
|
95
|
-
</bibitem>
|
data/spec/support/rfc_8341.xml
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
<bibitem id="RFC8341">
|
|
2
|
-
<title format="plain" language="en" script="Latn">Network Configuration Access Control Model</title>
|
|
3
|
-
<uri type="src">https://www.rfc-editor.org/info/rfc8341</uri>
|
|
4
|
-
<docidentifier type="IETF">RFC 8341</docidentifier>
|
|
5
|
-
<docidentifier type="DOI">10.17487/RFC8341</docidentifier>
|
|
6
|
-
<date type="published">
|
|
7
|
-
<on>2018</on>
|
|
8
|
-
</date>
|
|
9
|
-
<contributor>
|
|
10
|
-
<role type="author"/>
|
|
11
|
-
<person>
|
|
12
|
-
<name>
|
|
13
|
-
<completename language="en">A. Bierman</completename>
|
|
14
|
-
</name>
|
|
15
|
-
<affiliation>
|
|
16
|
-
<organization>
|
|
17
|
-
<name>IETF</name>
|
|
18
|
-
<abbreviation>IETF</abbreviation>
|
|
19
|
-
</organization>
|
|
20
|
-
</affiliation>
|
|
21
|
-
</person>
|
|
22
|
-
</contributor>
|
|
23
|
-
<contributor>
|
|
24
|
-
<role type="author"/>
|
|
25
|
-
<person>
|
|
26
|
-
<name>
|
|
27
|
-
<completename language="en">M. Bjorklund</completename>
|
|
28
|
-
</name>
|
|
29
|
-
<affiliation>
|
|
30
|
-
<organization>
|
|
31
|
-
<name>IETF</name>
|
|
32
|
-
<abbreviation>IETF</abbreviation>
|
|
33
|
-
</organization>
|
|
34
|
-
</affiliation>
|
|
35
|
-
</person>
|
|
36
|
-
</contributor>
|
|
37
|
-
<language>en</language>
|
|
38
|
-
<series type="main">
|
|
39
|
-
<title format="plain" language="en" script="Latn">STD</title>
|
|
40
|
-
<number>91</number>
|
|
41
|
-
</series>
|
|
42
|
-
<series type="main">
|
|
43
|
-
<title format="plain" language="en" script="Latn">RFC</title>
|
|
44
|
-
<number>8341</number>
|
|
45
|
-
</series>
|
|
46
|
-
</bibitem>
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
http_interactions:
|
|
3
|
-
- request:
|
|
4
|
-
method: get
|
|
5
|
-
uri: https://api.relaton.org/api/v1/document?code=ISO%2019115-2&year=2019
|
|
6
|
-
body:
|
|
7
|
-
encoding: US-ASCII
|
|
8
|
-
base64_string: ''
|
|
9
|
-
headers:
|
|
10
|
-
Accept-Encoding:
|
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
12
|
-
Accept:
|
|
13
|
-
- "*/*"
|
|
14
|
-
User-Agent:
|
|
15
|
-
- Ruby
|
|
16
|
-
Host:
|
|
17
|
-
- api.relaton.org
|
|
18
|
-
response:
|
|
19
|
-
status:
|
|
20
|
-
code: 200
|
|
21
|
-
message: OK
|
|
22
|
-
headers:
|
|
23
|
-
Content-Type:
|
|
24
|
-
- text/xml
|
|
25
|
-
Content-Length:
|
|
26
|
-
- '2963'
|
|
27
|
-
Connection:
|
|
28
|
-
- keep-alive
|
|
29
|
-
Date:
|
|
30
|
-
- Fri, 26 Jun 2026 02:54:12 GMT
|
|
31
|
-
X-Amzn-Trace-Id:
|
|
32
|
-
- Root=1-6a3de9c2-3fb2c8fd684accc03c11ac1b;Parent=54f25d0ec9330bc1;Sampled=0;Lineage=1:521d48d5:0
|
|
33
|
-
X-Amzn-Requestid:
|
|
34
|
-
- 4bd3a52f-2b16-4947-8837-1d360c87a62b
|
|
35
|
-
Access-Control-Allow-Origin:
|
|
36
|
-
- "*"
|
|
37
|
-
Access-Control-Allow-Headers:
|
|
38
|
-
- Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token
|
|
39
|
-
X-Amz-Apigw-Id:
|
|
40
|
-
- fjF2dFkyoAMEu6Q=
|
|
41
|
-
Access-Control-Allow-Methods:
|
|
42
|
-
- GET, POST, OPTIONS
|
|
43
|
-
X-Cache:
|
|
44
|
-
- Miss from cloudfront
|
|
45
|
-
Via:
|
|
46
|
-
- 1.1 c7c3aaea7e512869ae99fe347cd57aa6.cloudfront.net (CloudFront)
|
|
47
|
-
X-Amz-Cf-Pop:
|
|
48
|
-
- ATL59-P14
|
|
49
|
-
X-Amz-Cf-Id:
|
|
50
|
-
- fW1xhJRhF0umny6PBgUb3g3wRSMZCgQmmYqAR9gcybjqvMAoEDEwbA==
|
|
51
|
-
body:
|
|
52
|
-
encoding: ASCII-8BIT
|
|
53
|
-
base64_string: |
|
|
54
|
-
PGJpYmRhdGEgdHlwZT0ic3RhbmRhcmQiPgogIDxmZXRjaGVkPjIwMjEtMDct
|
|
55
|
-
MTE8L2ZldGNoZWQ+CiAgPHRpdGxlIHR5cGU9InRpdGxlLWludHJvIiBmb3Jt
|
|
56
|
-
YXQ9InRleHQvcGxhaW4iIGxhbmd1YWdlPSJlbiIgc2NyaXB0PSJMYXRuIj5H
|
|
57
|
-
ZW9ncmFwaGljIGluZm9ybWF0aW9uPC90aXRsZT4KICA8dGl0bGUgdHlwZT0i
|
|
58
|
-
dGl0bGUtbWFpbiIgZm9ybWF0PSJ0ZXh0L3BsYWluIiBsYW5ndWFnZT0iZW4i
|
|
59
|
-
IHNjcmlwdD0iTGF0biI+TWV0YWRhdGE8L3RpdGxlPgogIDx0aXRsZSB0eXBl
|
|
60
|
-
PSJ0aXRsZS1wYXJ0IiBmb3JtYXQ9InRleHQvcGxhaW4iIGxhbmd1YWdlPSJl
|
|
61
|
-
biIgc2NyaXB0PSJMYXRuIj5QYXJ0IDI6IEV4dGVuc2lvbnMgZm9yIGFjcXVp
|
|
62
|
-
c2l0aW9uIGFuZCBwcm9jZXNzaW5nPC90aXRsZT4KICA8dGl0bGUgdHlwZT0i
|
|
63
|
-
bWFpbiIgZm9ybWF0PSJ0ZXh0L3BsYWluIiBsYW5ndWFnZT0iZW4iIHNjcmlw
|
|
64
|
-
dD0iTGF0biI+R2VvZ3JhcGhpYyBpbmZvcm1hdGlvbiAtIE1ldGFkYXRhIC0g
|
|
65
|
-
UGFydCAyOiBFeHRlbnNpb25zIGZvciBhY3F1aXNpdGlvbiBhbmQgcHJvY2Vz
|
|
66
|
-
c2luZzwvdGl0bGU+CiAgPHRpdGxlIHR5cGU9InRpdGxlLWludHJvIiBmb3Jt
|
|
67
|
-
YXQ9InRleHQvcGxhaW4iIGxhbmd1YWdlPSJmciIgc2NyaXB0PSJMYXRuIj5J
|
|
68
|
-
bmZvcm1hdGlvbiBnw6lvZ3JhcGhpcXVlPC90aXRsZT4KICA8dGl0bGUgdHlw
|
|
69
|
-
ZT0idGl0bGUtbWFpbiIgZm9ybWF0PSJ0ZXh0L3BsYWluIiBsYW5ndWFnZT0i
|
|
70
|
-
ZnIiIHNjcmlwdD0iTGF0biI+TcOpdGFkb25uw6llczwvdGl0bGU+CiAgPHRp
|
|
71
|
-
dGxlIHR5cGU9InRpdGxlLXBhcnQiIGZvcm1hdD0idGV4dC9wbGFpbiIgbGFu
|
|
72
|
-
Z3VhZ2U9ImZyIiBzY3JpcHQ9IkxhdG4iPlBhcnRpZSAyOiBFeHRlbnNpb25z
|
|
73
|
-
IHBvdXIgbCdhY3F1aXNpdGlvbiBldCBsZSB0cmFpdGVtZW50PC90aXRsZT4K
|
|
74
|
-
ICA8dGl0bGUgdHlwZT0ibWFpbiIgZm9ybWF0PSJ0ZXh0L3BsYWluIiBsYW5n
|
|
75
|
-
dWFnZT0iZnIiIHNjcmlwdD0iTGF0biI+SW5mb3JtYXRpb24gZ8Opb2dyYXBo
|
|
76
|
-
aXF1ZSAtIE3DqXRhZG9ubsOpZXMgLSBQYXJ0aWUgMjogRXh0ZW5zaW9ucyBw
|
|
77
|
-
b3VyIGwnYWNxdWlzaXRpb24gZXQgbGUgdHJhaXRlbWVudDwvdGl0bGU+CiAg
|
|
78
|
-
PHVyaSB0eXBlPSJzcmMiPmh0dHBzOi8vd3d3Lmlzby5vcmcvc3RhbmRhcmQv
|
|
79
|
-
NjcwMzkuaHRtbDwvdXJpPgogIDx1cmkgdHlwZT0ib2JwIj5odHRwczovL3d3
|
|
80
|
-
dy5pc28ub3JnL29icC91aS8jIWlzbzpzdGQ6NjcwMzk6ZW48L3VyaT4KICA8
|
|
81
|
-
dXJpIHR5cGU9InJzcyI+aHR0cHM6Ly93d3cuaXNvLm9yZy9jb250ZW50cy9k
|
|
82
|
-
YXRhL3N0YW5kYXJkLzA2LzcwLzY3MDM5LmRldGFpbC5yc3M8L3VyaT4KICA8
|
|
83
|
-
ZG9jaWRlbnRpZmllciB0eXBlPSJJU08iPklTTyAxOTExNS0yOjIwMTk8L2Rv
|
|
84
|
-
Y2lkZW50aWZpZXI+CiAgPGRvY2lkZW50aWZpZXIgdHlwZT0iVVJOIj51cm46
|
|
85
|
-
aXNvOnN0ZDppc286MTkxMTU6LTI6c3RhZ2UtNjAuNjA6ZWQtMjplbixmcjwv
|
|
86
|
-
ZG9jaWRlbnRpZmllcj4KICA8ZG9jbnVtYmVyPjE5MTE1PC9kb2NudW1iZXI+
|
|
87
|
-
CiAgPGRhdGUgdHlwZT0icHVibGlzaGVkIj4KICAgIDxvbj4yMDE5LTAxPC9v
|
|
88
|
-
bj4KICA8L2RhdGU+CiAgPGNvbnRyaWJ1dG9yPgogICAgPHJvbGUgdHlwZT0i
|
|
89
|
-
cHVibGlzaGVyIi8+CiAgICA8b3JnYW5pemF0aW9uPgogICAgICA8bmFtZT5J
|
|
90
|
-
bnRlcm5hdGlvbmFsIE9yZ2FuaXphdGlvbiBmb3IgU3RhbmRhcmRpemF0aW9u
|
|
91
|
-
PC9uYW1lPgogICAgICA8YWJicmV2aWF0aW9uPklTTzwvYWJicmV2aWF0aW9u
|
|
92
|
-
PgogICAgICA8dXJpPnd3dy5pc28ub3JnPC91cmk+CiAgICA8L29yZ2FuaXph
|
|
93
|
-
dGlvbj4KICA8L2NvbnRyaWJ1dG9yPgogIDxlZGl0aW9uPjI8L2VkaXRpb24+
|
|
94
|
-
CiAgPGxhbmd1YWdlPmVuPC9sYW5ndWFnZT4KICA8bGFuZ3VhZ2U+ZnI8L2xh
|
|
95
|
-
bmd1YWdlPgogIDxzY3JpcHQ+TGF0bjwvc2NyaXB0PgogIDxzdGF0dXM+CiAg
|
|
96
|
-
ICA8c3RhZ2U+NjA8L3N0YWdlPgogICAgPHN1YnN0YWdlPjYwPC9zdWJzdGFn
|
|
97
|
-
ZT4KICA8L3N0YXR1cz4KICA8Y29weXJpZ2h0PgogICAgPGZyb20+MjAxOTwv
|
|
98
|
-
ZnJvbT4KICAgIDxvd25lcj4KICAgICAgPG9yZ2FuaXphdGlvbj4KICAgICAg
|
|
99
|
-
ICA8bmFtZT5JU088L25hbWU+CiAgICAgIDwvb3JnYW5pemF0aW9uPgogICAg
|
|
100
|
-
PC9vd25lcj4KICA8L2NvcHlyaWdodD4KICA8cmVsYXRpb24gdHlwZT0ib2Jz
|
|
101
|
-
b2xldGVzIj4KICAgIDxiaWJpdGVtIHR5cGU9InN0YW5kYXJkIj4KICAgICAg
|
|
102
|
-
PGZvcm1hdHRlZHJlZiBmb3JtYXQ9InRleHQvcGxhaW4iPklTTyAxOTExNS0y
|
|
103
|
-
OjIwMDk8L2Zvcm1hdHRlZHJlZj4KICAgIDwvYmliaXRlbT4KICA8L3JlbGF0
|
|
104
|
-
aW9uPgogIDxyZWxhdGlvbiB0eXBlPSJ1cGRhdGVzIj4KICAgIDxiaWJpdGVt
|
|
105
|
-
IHR5cGU9InN0YW5kYXJkIj4KICAgICAgPGZvcm1hdHRlZHJlZiBmb3JtYXQ9
|
|
106
|
-
InRleHQvcGxhaW4iPklTTyAxOTExNS0yOjIwMTkvUFJGIEFtZCAxPC9mb3Jt
|
|
107
|
-
YXR0ZWRyZWY+CiAgICAgIDxkYXRlIHR5cGU9ImNpcmN1bGF0ZWQiPgogICAg
|
|
108
|
-
ICAgIDxvbj4yMDE5LTAxLTEwPC9vbj4KICAgICAgPC9kYXRlPgogICAgPC9i
|
|
109
|
-
aWJpdGVtPgogIDwvcmVsYXRpb24+CiAgPHBsYWNlPkdlbmV2YTwvcGxhY2U+
|
|
110
|
-
CiAgPGV4dD4KICAgIDxkb2N0eXBlPmludGVybmF0aW9uYWwtc3RhbmRhcmQ8
|
|
111
|
-
L2RvY3R5cGU+CiAgICA8ZWRpdG9yaWFsZ3JvdXA+CiAgICAgIDx0ZWNobmlj
|
|
112
|
-
YWwtY29tbWl0dGVlIG51bWJlcj0iMjExIiB0eXBlPSJUQyI+SVNPL1RDIDIx
|
|
113
|
-
MUdlb2dyYXBoaWMgaW5mb3JtYXRpb24vR2VvbWF0aWNzPC90ZWNobmljYWwt
|
|
114
|
-
Y29tbWl0dGVlPgogICAgPC9lZGl0b3JpYWxncm91cD4KICAgIDxpY3M+CiAg
|
|
115
|
-
ICAgIDxjb2RlPjM1LjI0MC43MDwvY29kZT4KICAgICAgPHRleHQ+SVQgYXBw
|
|
116
|
-
bGljYXRpb25zIGluIHNjaWVuY2U8L3RleHQ+CiAgICA8L2ljcz4KICAgIDxz
|
|
117
|
-
dHJ1Y3R1cmVkaWRlbnRpZmllciB0eXBlPSJJU08iPgogICAgICA8cHJvamVj
|
|
118
|
-
dC1udW1iZXI+SVNPIDE5MTE1PC9wcm9qZWN0LW51bWJlcj4KICAgIDwvc3Ry
|
|
119
|
-
dWN0dXJlZGlkZW50aWZpZXI+CiAgPC9leHQ+CjwvYmliZGF0YT4=
|
|
120
|
-
recorded_at: Fri, 26 Jun 2026 02:54:12 GMT
|
|
121
|
-
recorded_with: VCR 6.4.0
|
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
http_interactions:
|
|
3
|
-
- request:
|
|
4
|
-
method: get
|
|
5
|
-
uri: https://raw.githubusercontent.com/relaton/relaton-data-iso/v2/data/iso-19115-2-2019.yaml
|
|
6
|
-
body:
|
|
7
|
-
encoding: US-ASCII
|
|
8
|
-
base64_string: ''
|
|
9
|
-
headers:
|
|
10
|
-
Accept-Encoding:
|
|
11
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
12
|
-
Accept:
|
|
13
|
-
- "*/*"
|
|
14
|
-
User-Agent:
|
|
15
|
-
- Ruby
|
|
16
|
-
Host:
|
|
17
|
-
- raw.githubusercontent.com
|
|
18
|
-
response:
|
|
19
|
-
status:
|
|
20
|
-
code: 200
|
|
21
|
-
message: OK
|
|
22
|
-
headers:
|
|
23
|
-
Connection:
|
|
24
|
-
- keep-alive
|
|
25
|
-
Content-Length:
|
|
26
|
-
- '2910'
|
|
27
|
-
Cache-Control:
|
|
28
|
-
- max-age=300
|
|
29
|
-
Content-Security-Policy:
|
|
30
|
-
- default-src 'none'; style-src 'unsafe-inline'; sandbox
|
|
31
|
-
Content-Type:
|
|
32
|
-
- text/plain; charset=utf-8
|
|
33
|
-
Etag:
|
|
34
|
-
- W/"937388ae49a0f802a95c1bc2d5a8bfcfa9e623d1a2e2c1a08b188c581f12f7b0"
|
|
35
|
-
Strict-Transport-Security:
|
|
36
|
-
- max-age=31536000
|
|
37
|
-
X-Content-Type-Options:
|
|
38
|
-
- nosniff
|
|
39
|
-
X-Frame-Options:
|
|
40
|
-
- deny
|
|
41
|
-
X-Xss-Protection:
|
|
42
|
-
- 1; mode=block
|
|
43
|
-
X-Github-Request-Id:
|
|
44
|
-
- BBEC:1EDF06:B735EE:E2C9E8:6A245374
|
|
45
|
-
Accept-Ranges:
|
|
46
|
-
- bytes
|
|
47
|
-
Date:
|
|
48
|
-
- Sat, 06 Jun 2026 17:08:25 GMT
|
|
49
|
-
Via:
|
|
50
|
-
- 1.1 varnish
|
|
51
|
-
X-Served-By:
|
|
52
|
-
- cache-iad-kjyo7100082-IAD
|
|
53
|
-
X-Cache:
|
|
54
|
-
- HIT
|
|
55
|
-
X-Cache-Hits:
|
|
56
|
-
- '0'
|
|
57
|
-
X-Timer:
|
|
58
|
-
- S1780765706.740167,VS0,VE5
|
|
59
|
-
Vary:
|
|
60
|
-
- Authorization,Accept-Encoding
|
|
61
|
-
Access-Control-Allow-Origin:
|
|
62
|
-
- "*"
|
|
63
|
-
Cross-Origin-Resource-Policy:
|
|
64
|
-
- cross-origin
|
|
65
|
-
X-Fastly-Request-Id:
|
|
66
|
-
- dc7f34aa0ec92c5494246b2d44c87a8b15ea0f17
|
|
67
|
-
Expires:
|
|
68
|
-
- Sat, 06 Jun 2026 17:13:25 GMT
|
|
69
|
-
Source-Age:
|
|
70
|
-
- '149'
|
|
71
|
-
body:
|
|
72
|
-
encoding: ASCII-8BIT
|
|
73
|
-
base64_string: |
|
|
74
|
-
LS0tCmlkOiBJU08xOTExNTIyMDE5CnNjaGVtYV92ZXJzaW9uOiB2MS41LjYK
|
|
75
|
-
dHlwZTogc3RhbmRhcmQKdGl0bGU6Ci0gbGFuZ3VhZ2U6IGVuCiAgc2NyaXB0
|
|
76
|
-
OiBMYXRuCiAgY29udGVudDogR2VvZ3JhcGhpYyBpbmZvcm1hdGlvbgogIHR5
|
|
77
|
-
cGU6IHRpdGxlLWludHJvCi0gbGFuZ3VhZ2U6IGVuCiAgc2NyaXB0OiBMYXRu
|
|
78
|
-
CiAgY29udGVudDogTWV0YWRhdGEKICB0eXBlOiB0aXRsZS1tYWluCi0gbGFu
|
|
79
|
-
Z3VhZ2U6IGVuCiAgc2NyaXB0OiBMYXRuCiAgY29udGVudDogJ1BhcnQgMjog
|
|
80
|
-
RXh0ZW5zaW9ucyBmb3IgYWNxdWlzaXRpb24gYW5kIHByb2Nlc3NpbmcnCiAg
|
|
81
|
-
dHlwZTogdGl0bGUtcGFydAotIGxhbmd1YWdlOiBlbgogIHNjcmlwdDogTGF0
|
|
82
|
-
bgogIGNvbnRlbnQ6ICdHZW9ncmFwaGljIGluZm9ybWF0aW9uIC0gTWV0YWRh
|
|
83
|
-
dGEgLSBQYXJ0IDI6IEV4dGVuc2lvbnMgZm9yIGFjcXVpc2l0aW9uCiAgICBh
|
|
84
|
-
bmQgcHJvY2Vzc2luZycKICB0eXBlOiBtYWluCi0gbGFuZ3VhZ2U6IGZyCiAg
|
|
85
|
-
c2NyaXB0OiBMYXRuCiAgY29udGVudDogSW5mb3JtYXRpb24gZ8Opb2dyYXBo
|
|
86
|
-
aXF1ZQogIHR5cGU6IHRpdGxlLWludHJvCi0gbGFuZ3VhZ2U6IGZyCiAgc2Ny
|
|
87
|
-
aXB0OiBMYXRuCiAgY29udGVudDogTcOpdGFkb25uw6llcwogIHR5cGU6IHRp
|
|
88
|
-
dGxlLW1haW4KLSBsYW5ndWFnZTogZnIKICBzY3JpcHQ6IExhdG4KICBjb250
|
|
89
|
-
ZW50OiAnUGFydGllIDI6IEV4dGVuc2lvbnMgcG91ciBsJydhY3F1aXNpdGlv
|
|
90
|
-
biBldCBsZSB0cmFpdGVtZW50JwogIHR5cGU6IHRpdGxlLXBhcnQKLSBsYW5n
|
|
91
|
-
dWFnZTogZnIKICBzY3JpcHQ6IExhdG4KICBjb250ZW50OiAnSW5mb3JtYXRp
|
|
92
|
-
b24gZ8Opb2dyYXBoaXF1ZSAtIE3DqXRhZG9ubsOpZXMgLSBQYXJ0aWUgMjog
|
|
93
|
-
RXh0ZW5zaW9ucyBwb3VyIGwnJ2FjcXVpc2l0aW9uCiAgICBldCBsZSB0cmFp
|
|
94
|
-
dGVtZW50JwogIHR5cGU6IG1haW4Kc291cmNlOgotIHR5cGU6IHNyYwogIGNv
|
|
95
|
-
bnRlbnQ6IGh0dHBzOi8vd3d3Lmlzby5vcmcvc3RhbmRhcmQvNjcwMzkuaHRt
|
|
96
|
-
bAotIHR5cGU6IG9icAogIGNvbnRlbnQ6IGh0dHBzOi8vd3d3Lmlzby5vcmcv
|
|
97
|
-
b2JwL3VpL2VuLyMhaXNvOnN0ZDo2NzAzOTplbgotIHR5cGU6IHJzcwogIGNv
|
|
98
|
-
bnRlbnQ6IGh0dHBzOi8vd3d3Lmlzby5vcmcvY29udGVudHMvZGF0YS9zdGFu
|
|
99
|
-
ZGFyZC8wNi83MC82NzAzOS5kZXRhaWwucnNzCmRvY2lkZW50aWZpZXI6Ci0g
|
|
100
|
-
Y29udGVudDogSVNPIDE5MTE1LTI6MjAxOQogIHR5cGU6IElTTwogIHByaW1h
|
|
101
|
-
cnk6IHRydWUKLSBjb250ZW50OiBJU08gMTkxMTUtMjoyMDE5KEUpCiAgdHlw
|
|
102
|
-
ZTogaXNvLXJlZmVyZW5jZQotIGNvbnRlbnQ6IHVybjppc286c3RkOmlzbzox
|
|
103
|
-
OTExNTotMjpzdGFnZS05MC45MwogIHR5cGU6IFVSTgpkb2NudW1iZXI6ICcx
|
|
104
|
-
OTExNScKZGF0ZToKLSB0eXBlOiBwdWJsaXNoZWQKICBhdDogJzIwMTktMDEt
|
|
105
|
-
MTAnCmNvbnRyaWJ1dG9yOgotIHJvbGU6CiAgLSB0eXBlOiBwdWJsaXNoZXIK
|
|
106
|
-
ICBvcmdhbml6YXRpb246CiAgICB1cmk6CiAgICAtIGNvbnRlbnQ6IHd3dy5p
|
|
107
|
-
c28ub3JnCiAgICBuYW1lOgogICAgLSBjb250ZW50OiBJbnRlcm5hdGlvbmFs
|
|
108
|
-
IE9yZ2FuaXphdGlvbiBmb3IgU3RhbmRhcmRpemF0aW9uCiAgICBhYmJyZXZp
|
|
109
|
-
YXRpb246CiAgICAgIGNvbnRlbnQ6IElTTwotIHJvbGU6CiAgLSB0eXBlOiBh
|
|
110
|
-
dXRob3IKICAgIGRlc2NyaXB0aW9uOgogICAgLSBjb250ZW50OiBjb21taXR0
|
|
111
|
-
ZWUKICBvcmdhbml6YXRpb246CiAgICBuYW1lOgogICAgLSBjb250ZW50OiBJ
|
|
112
|
-
bnRlcm5hdGlvbmFsIE9yZ2FuaXphdGlvbiBmb3IgU3RhbmRhcmRpemF0aW9u
|
|
113
|
-
CiAgICBzdWJkaXZpc2lvbjoKICAgIC0gbmFtZToKICAgICAgLSBjb250ZW50
|
|
114
|
-
OiBHZW9ncmFwaGljIGluZm9ybWF0aW9uL0dlb21hdGljcwogICAgICBpZGVu
|
|
115
|
-
dGlmaWVyOgogICAgICAtIGNvbnRlbnQ6IElTTy9UQyAyMTEKICAgICAgdHlw
|
|
116
|
-
ZTogdGVjaG5pY2FsLWNvbW1pdHRlZQogICAgICBzdWJ0eXBlOiBUQwogICAg
|
|
117
|
-
YWJicmV2aWF0aW9uOgogICAgICBjb250ZW50OiBJU08KZWRpdGlvbjoKICBj
|
|
118
|
-
b250ZW50OiAnMicKbGFuZ3VhZ2U6Ci0gZW4KLSBmcgpzY3JpcHQ6Ci0gTGF0
|
|
119
|
-
bgpzdGF0dXM6CiAgc3RhZ2U6CiAgICBjb250ZW50OiAnOTAnCiAgc3Vic3Rh
|
|
120
|
-
Z2U6CiAgICBjb250ZW50OiAnOTMnCmNvcHlyaWdodDoKLSBmcm9tOiAnMjAx
|
|
121
|
-
OScKICBvd25lcjoKICAtIG9yZ2FuaXphdGlvbjoKICAgICAgbmFtZToKICAg
|
|
122
|
-
ICAgLSBjb250ZW50OiBJU08KcmVsYXRpb246Ci0gdHlwZTogb2Jzb2xldGVz
|
|
123
|
-
CiAgYmliaXRlbToKICAgIGZvcm1hdHRlZHJlZjoKICAgICAgY29udGVudDog
|
|
124
|
-
SVNPIDE5MTE1LTI6MjAwOQogICAgZG9jaWRlbnRpZmllcjoKICAgIC0gY29u
|
|
125
|
-
dGVudDogSVNPIDE5MTE1LTI6MjAwOQogICAgICB0eXBlOiBJU08KICAgICAg
|
|
126
|
-
cHJpbWFyeTogdHJ1ZQogICAgZGF0ZToKICAgIC0gdHlwZTogcHVibGlzaGVk
|
|
127
|
-
CiAgICAgIGF0OiAnMjAwOS0wMi0wMycKLSB0eXBlOiB1cGRhdGVkQnkKICBi
|
|
128
|
-
aWJpdGVtOgogICAgZm9ybWF0dGVkcmVmOgogICAgICBjb250ZW50OiBJU08g
|
|
129
|
-
MTkxMTUtMjoyMDE5L0FtZCAxOjIwMjIKICAgIGRvY2lkZW50aWZpZXI6CiAg
|
|
130
|
-
ICAtIGNvbnRlbnQ6IElTTyAxOTExNS0yOjIwMTkvQW1kIDE6MjAyMgogICAg
|
|
131
|
-
ICB0eXBlOiBJU08KICAgICAgcHJpbWFyeTogdHJ1ZQogICAgZGF0ZToKICAg
|
|
132
|
-
IC0gdHlwZTogcHVibGlzaGVkCiAgICAgIGF0OiAnMjAyMi0wMy0yMScKcGxh
|
|
133
|
-
Y2U6Ci0gY2l0eTogR2VuZXZhCmV4dDoKICBzY2hlbWFfdmVyc2lvbjogdjEu
|
|
134
|
-
MS4yCiAgZG9jdHlwZToKICAgIGNvbnRlbnQ6IGludGVybmF0aW9uYWwtc3Rh
|
|
135
|
-
bmRhcmQKICBmbGF2b3I6IGlzbwogIGljczoKICAtIGNvZGU6IDM1LjI0MC43
|
|
136
|
-
MAogICAgdGV4dDogSVQgYXBwbGljYXRpb25zIGluIHNjaWVuY2UKICBzdHJ1
|
|
137
|
-
Y3R1cmVkaWRlbnRpZmllcjoKICAgIHR5cGU6IElTTwogICAgcHJvamVjdF9u
|
|
138
|
-
dW1iZXI6CiAgICAgIGNvbnRlbnQ6ICc2NzAzOScK
|
|
139
|
-
recorded_at: Sat, 06 Jun 2026 17:08:25 GMT
|
|
140
|
-
recorded_with: VCR 6.4.0
|