geo_combine 0.9.0 → 0.9.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e3fb1725efbf8ad6c3af8b523b514bb899945cca8000820d9ddd3ab2063003b
|
4
|
+
data.tar.gz: 61a33c13e094f49a33938c0b4cd37ca0c72218f0d271db035de6a2e0cb5d05f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25aa2a4ce8ef4bd083a3a125a54b0b77180d5a3f0e15512312a3045972d9c4bdaac972821067b0f634f31f9983730264c2880a31cfe3b1f8dc189f7484512c3a
|
7
|
+
data.tar.gz: 51d00efcc3c2555187b0618213cef9180494eda1d9df6b3e93668df8f5f1be903a32fc384779d2d7f3bf7785fd1fbc9f5f78fb6d27959134990738b7183d4d2a
|
@@ -50,6 +50,7 @@ module GeoCombine
|
|
50
50
|
end
|
51
51
|
|
52
52
|
# Convert non-crosswalked fields via lookup tables
|
53
|
+
# rubocop:disable Metrics/PerceivedComplexity
|
53
54
|
def convert_non_crosswalked_fields
|
54
55
|
# Keys may or may not include whitespace, so we normalize them.
|
55
56
|
# Resource class is required so we default to "Other"; resource type is not required.
|
@@ -57,6 +58,9 @@ module GeoCombine
|
|
57
58
|
resource_type = RESOURCE_TYPE_MAP[@v1_hash['layer_geom_type_s']&.gsub(/\s+/, '')]
|
58
59
|
@v2_hash['gbl_resourceType_sm'] = resource_type unless resource_type.nil?
|
59
60
|
|
61
|
+
# If locn_geometry is in the ENVELOPE format, also add it as dcat_bbox
|
62
|
+
@v2_hash['dcat_bbox'] = @v2_hash['locn_geometry'] if @v2_hash['locn_geometry']&.match?(/ENVELOPE/)
|
63
|
+
|
60
64
|
# If the user specified a collection id map, use it to convert the collection names to ids
|
61
65
|
is_part_of = @v1_hash['dct_isPartOf_sm']&.map { |name| @collection_id_map[name] }&.compact
|
62
66
|
if is_part_of.present?
|
@@ -65,6 +69,7 @@ module GeoCombine
|
|
65
69
|
@v2_hash.delete('dct_isPartOf_sm')
|
66
70
|
end
|
67
71
|
end
|
72
|
+
# rubocop:enable Metrics/PerceivedComplexity
|
68
73
|
|
69
74
|
# Remove fields that are no longer used
|
70
75
|
def remove_deprecated_fields
|
@@ -80,7 +85,7 @@ module GeoCombine
|
|
80
85
|
'dc_publisher_s' => 'dct_publisher_sm', # new namespace; single to multi-valued
|
81
86
|
'dct_provenance_s' => 'schema_provider_s', # new URI name
|
82
87
|
'dc_subject_sm' => 'dct_subject_sm', # new namespace
|
83
|
-
'solr_geom' => '
|
88
|
+
'solr_geom' => 'locn_geometry', # new URI name
|
84
89
|
'solr_year_i' => 'gbl_indexYear_im', # new URI name; single to multi-valued
|
85
90
|
'dc_source_sm' => 'dct_source_sm', # new namespace
|
86
91
|
'dc_rights_s' => 'dct_accessRights_s', # new URI name
|
data/lib/geo_combine/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: geo_combine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jack Reed
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -376,7 +376,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
376
376
|
- !ruby/object:Gem::Version
|
377
377
|
version: '0'
|
378
378
|
requirements: []
|
379
|
-
rubygems_version: 3.
|
379
|
+
rubygems_version: 3.4.19
|
380
380
|
signing_key:
|
381
381
|
specification_version: 4
|
382
382
|
summary: A Ruby toolkit for managing geospatial metadata
|