geoblacklight 5.0.0 → 5.0.2

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: 32d2ec143ca4a50dfdd5d7e36ad36cb539cda3ff0e5ba40ce6cde8c0b802bd5f
4
- data.tar.gz: 4f013411904f03021301a8ea9c1512c81214c2de7b954a1cddd1803d541ecb58
3
+ metadata.gz: b1d4232b5fc55d22c20a9bac46b737dac15b9b6229d28295b4232fbc1672adf6
4
+ data.tar.gz: fc8576935557aad01ba958fb3d4b169ca5b608f4d9ab518735cf20138e4fd0fd
5
5
  SHA512:
6
- metadata.gz: 2cd1132286bfa264ea43924f9eefb38700570bec0b4475f49d0ee597677b1e10c2ec79370b78d5d5900b8b26f687adf68dc4dedc4c8def7c8dd0854d77cc3aa2
7
- data.tar.gz: 4f986b1125c2032891fe7d1666f83f8725d75cb63604e9daafec9b0271271de3a3e360fcdc31058dc9bef58e6e65c324c5a6d3a7b781299f00f9bf8ad337525b
6
+ metadata.gz: 31c4d6d10d9c226be648437788e8bc4492335cfe78de0c88743088497002eb9d1934ea8b955e8562cb164c0f9355108a0caf803f18ac81a18fd2fea16cb7e40c
7
+ data.tar.gz: fe389852f4f5a6eb536ec8b77b0d3ff39603d142844b72d858af6e078847a9e62720f9f74b23bfaddf7ac1628097831e2e2929855d60d7a9afa6ab412d7b8801
@@ -1,9 +1,3 @@
1
- .search-control {
2
- background-color: #FFF;
3
- border-radius: 4px;
4
- box-shadow: 0 1px 5px rgba(0,0,0,0.65);
5
- }
6
-
7
1
  .search-control a {
8
2
  color: #FFF
9
3
  }
@@ -6,6 +6,7 @@ import { FullScreen, defaults as defaultControls } from "ol/control";
6
6
  import { pmTilesLayer, cogLayer } from "geoblacklight/openlayers/layers";
7
7
  import basemaps from "geoblacklight/openlayers/basemaps";
8
8
  import { Controller } from "@hotwired/stimulus";
9
+ import { pmTilesInspection } from "geoblacklight/openlayers/inspection";
9
10
 
10
11
  export default class OpenlayersViewerController extends Controller {
11
12
  static values = {
@@ -33,6 +34,11 @@ export default class OpenlayersViewerController extends Controller {
33
34
  layers: [this.basemap, this.overlay],
34
35
  });
35
36
  this.map.getView().fit(this.extent, this.map.getSize());
37
+ this.addInspection()
38
+ }
39
+
40
+ addInspection() {
41
+ if (this.protocolValue == "Pmtiles") return pmTilesInspection(this.map);
36
42
  }
37
43
 
38
44
  async getBounds() {
@@ -50,7 +50,7 @@ export default class LayerOpacityControl extends Control {
50
50
  try {
51
51
  layer.setOpacity(opacity);
52
52
  } catch {
53
- console.log(layer)
53
+ console.error("Couldn't set opacity for layer", layer)
54
54
  }
55
55
  }
56
56
  }
@@ -60,7 +60,6 @@ export default class Sleep extends Handler {
60
60
 
61
61
  if (_this._map.options.MARGIN_DISTANCE){
62
62
  window.addEventListener("resize", (event) => {
63
- console.log(event)
64
63
  _this.updateBasedOnSize();
65
64
  })
66
65
  }
@@ -97,4 +96,3 @@ export default class Sleep extends Handler {
97
96
  });
98
97
  }
99
98
  }
100
-
@@ -0,0 +1,44 @@
1
+ import { linkify } from "geoblacklight/leaflet/utils";
2
+
3
+ export const pmTilesInspection = (map) => {
4
+ // add crosshair class for map items
5
+ map.on('pointermove', function(e){
6
+ var pixel = map.getEventPixel(e.originalEvent);
7
+ var hit = map.hasFeatureAtPixel(pixel);
8
+ map.getViewport().style.cursor = hit ? 'crosshair' : '';
9
+ });
10
+
11
+ map.on('click', (event) => {
12
+ const spinner = document.createElement("tbody");
13
+ spinner.className = "attribute-table-body";
14
+ spinner.innerHTML =
15
+ '<tr><td colspan="2"><div class="spinner-border" role="status"><span class="visually-hidden">Inspecting</span></div></td></tr>';
16
+ document.querySelector(".attribute-table-body").replaceWith(spinner);
17
+
18
+ const features = map.getFeaturesAtPixel(event.pixel);
19
+ if (features.length == 0) {
20
+ document.querySelector(".attribute-table-body").innerHTML =
21
+ '<tr><td colspan="2">Could not find that feature</td></tr>';
22
+ return;
23
+ }
24
+
25
+ const properties = features[0].getProperties();
26
+ populateAttributeTable(properties);
27
+ });
28
+ }
29
+
30
+ const populateAttributeTable = (properties) => {
31
+ let html = '<tbody class="attribute-table-body">';
32
+
33
+ // Step through properties and append to table
34
+ Object.keys(properties).forEach((property) => {
35
+ html += `<tr><td>${property}</td>
36
+ <td>${linkify(properties[property])}</td></tr>`;
37
+ });
38
+ html += "</tbody>";
39
+
40
+ const tableBody = document.querySelector(".attribute-table-body");
41
+ if (tableBody) {
42
+ tableBody.outerHTML = html; // Replace existing table body with new content
43
+ }
44
+ }
@@ -9,7 +9,7 @@ module Geoblacklight
9
9
  # Returns boolean about whether document viewer protocol is inspectable
10
10
  # @return [Boolean]
11
11
  def inspectable?
12
- %w[wms feature_layer dynamic_map_layer tiled_map_layer]
12
+ %w[wms feature_layer dynamic_map_layer tiled_map_layer pmtiles]
13
13
  .include? viewer_protocol
14
14
  end
15
15
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Geoblacklight
4
- VERSION = "5.0.0"
4
+ VERSION = "5.0.2"
5
5
  end
data/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@geoblacklight/frontend",
3
3
  "type": "module",
4
- "version": "5.0.0",
4
+ "version": "5.0.2",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -9,4 +9,13 @@ feature "Layer inspection", js: true do
9
9
  find("#leaflet-viewer").click
10
10
  expect(page).not_to have_css("td.default-text")
11
11
  end
12
+
13
+ context "with a pmtiles layer" do
14
+ scenario "clicking map should trigger inspection" do
15
+ visit solr_document_path("princeton-t722hd30j")
16
+ expect(page).to have_css("th", text: "Attribute")
17
+ find("#openlayers-viewer").click
18
+ expect(page).not_to have_css("td.default-text")
19
+ end
20
+ end
12
21
  end
@@ -34,7 +34,7 @@ feature "Display related documents" do
34
34
 
35
35
  scenario "Relationship browse link returns relationship-scoped results", js: true do
36
36
  # Wabash Topo parent record
37
- visit solr_document_path("88cc9b19-3294-4da9-9edd-775c81fb1c59")
37
+ visit solr_document_path("eee6150b-ce2f-4837-9d17-ce72a0c1c26f")
38
38
 
39
39
  expect(page).to have_content("Has part...")
40
40
  expect(page).to have_link("Browse all 4 records...")
@@ -1,9 +1,7 @@
1
1
  {
2
- "id": "b5857bb0-2819-49cf-a6da-fdb39d50c529",
3
- "gbl_mdVersion_s": "Aardvark",
4
- "dct_title_s": "Wabash Topo (15): Indiana, 1929",
2
+ "dct_title_s": "Wabash Aerial (15): Indiana, 1929",
5
3
  "dct_description_sm": [
6
- "The maps represented here are on tiff files owned by EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
4
+ "The images represented here are the raster orthophoto set collected by remote sensing of 25 aerial images owned by EAS library. Each aerial image was up to 450MB, 400dpi, grayscale. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
7
5
  ],
8
6
  "dct_language_sm": [
9
7
  "eng"
@@ -12,51 +10,47 @@
12
10
  "Brock & Weymouth Inc.",
13
11
  "United States Engineer Office"
14
12
  ],
15
- "dct_publisher_sm": [
16
- "Purdue University Libraries"
17
- ],
13
+ "schema_provider_s": "Purdue University",
18
14
  "gbl_resourceClass_sm": [
19
- "Maps"
20
- ],
21
- "dcat_keyword_sm": [
22
- "Topography",
23
- "Purdue Georeferenced Imagery"
15
+ "Imagery"
24
16
  ],
25
17
  "dcat_theme_sm": [
26
- "Imagery and Base Maps"
18
+ "Imagery"
19
+ ],
20
+ "dcat_keyword_sm": [
21
+ "Universities",
22
+ "Campuses"
27
23
  ],
28
- "dct_issued_s": "2015-10-31",
29
24
  "dct_temporal_sm": [
30
25
  "1929"
31
26
  ],
32
- "gbl_dateRange_drsim": [
33
- "[1929 TO 1929]"
34
- ],
27
+ "dct_issued_s": "2015-11-02",
35
28
  "gbl_indexYear_im": [
36
29
  1929
37
30
  ],
31
+ "gbl_dateRange_drsim": [
32
+ "[1929 TO 1929]"
33
+ ],
38
34
  "dct_spatial_sm": [
39
35
  "Indiana"
40
36
  ],
41
- "locn_geometry": "ENVELOPE(-87.5071,-87.3597,39.539,39.4622)",
42
- "dcat_bbox": "ENVELOPE(-87.5071,-87.3597,39.539,39.4622)",
43
- "dcat_centroid": "39.500600000000006,-87.4334",
37
+ "locn_geometry": "ENVELOPE(-87.508,-87.3596,39.5374,39.4628)",
38
+ "dcat_bbox": "ENVELOPE(-87.508,-87.3596,39.5374,39.4628)",
39
+ "dcat_centroid": "39.5001,-87.43379999999999",
44
40
  "pcdm_memberOf_sm": [
45
- "09d-01"
41
+ "dc8c18df-7d64-4ff4-a754-d18d0891187d"
46
42
  ],
47
- "gbl_resourceType_sm": [
48
- "Topographic maps"
43
+ "dct_isPartOf_sm": [
44
+ "09d-01",
45
+ "eee6150b-ce2f-4837-9d17-ce72a0c1c26f"
49
46
  ],
47
+ "dct_accessRights_s": "Public",
50
48
  "dct_format_s": "GeoTIFF",
51
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabash_topo_15.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabashAerial_15.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashaerial/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
50
+ "id": "757d0f6e-2e04-4ac1-bd28-a5204df46ac1",
52
51
  "dct_identifier_sm": [
53
- "b5857bb0-2819-49cf-a6da-fdb39d50c529"
52
+ "757d0f6e-2e04-4ac1-bd28-a5204df46ac1"
54
53
  ],
55
- "schema_provider_s": "Purdue University",
56
- "dct_isPartOf_sm": [
57
- "88cc9b19-3294-4da9-9edd-775c81fb1c59"
58
- ],
59
- "dct_accessRights_s": "Public",
60
- "gbl_suppressed_b": true,
61
- "gbl_mdModified_dt": "2021-05-07T23:00:10Z"
62
- }
54
+ "gbl_mdModified_dt": "2022-05-31T13:44:06Z",
55
+ "gbl_mdVersion_s": "Aardvark"
56
+ }
@@ -1,9 +1,7 @@
1
1
  {
2
- "id": "d8906fc8-92bb-4ced-bcd5-9ce9a4701c25",
3
- "gbl_mdVersion_s": "Aardvark",
4
- "dct_title_s": "Wabash Topo (16): Indiana, 1929",
2
+ "dct_title_s": "Wabash Aerial (16): Indiana, 1929",
5
3
  "dct_description_sm": [
6
- "The maps represented here are on tiff files owned by EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
4
+ "The images represented here are the raster orthophoto set collected by remote sensing of 25 aerial images owned by EAS library. Each aerial image was up to 450MB, 400dpi, grayscale. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
7
5
  ],
8
6
  "dct_language_sm": [
9
7
  "eng"
@@ -12,53 +10,47 @@
12
10
  "Brock & Weymouth Inc.",
13
11
  "United States Engineer Office"
14
12
  ],
15
- "dct_publisher_sm": [
16
- "Purdue University Libraries"
17
- ],
13
+ "schema_provider_s": "Purdue University",
18
14
  "gbl_resourceClass_sm": [
19
- "Maps"
20
- ],
21
- "dcat_keyword_sm": [
22
- "Topography",
23
- "Purdue Georeferenced Imagery"
15
+ "Imagery"
24
16
  ],
25
17
  "dcat_theme_sm": [
26
- "Imagery and Base Maps"
18
+ "Imagery"
19
+ ],
20
+ "dcat_keyword_sm": [
21
+ "Universities",
22
+ "Campuses"
27
23
  ],
28
- "dct_issued_s": "2015-10-31",
29
24
  "dct_temporal_sm": [
30
25
  "1929"
31
26
  ],
32
- "gbl_dateRange_drsim": [
33
- "[1929 TO 1929]"
34
- ],
27
+ "dct_issued_s": "2015-11-02",
35
28
  "gbl_indexYear_im": [
36
29
  1929
37
30
  ],
31
+ "gbl_dateRange_drsim": [
32
+ "[1929 TO 1929]"
33
+ ],
38
34
  "dct_spatial_sm": [
39
- "Indiana",
40
- "Tippecano County, Indiana",
41
- "Wabash River, Indiana"
35
+ "Indiana"
42
36
  ],
43
- "locn_geometry": "ENVELOPE(-87.4831,-87.336,39.606,39.5301)",
44
- "dcat_bbox": "ENVELOPE(-87.4831,-87.336,39.606,39.5301)",
45
- "dcat_centroid": "39.56805,-87.40955",
37
+ "locn_geometry": "ENVELOPE(-87.4824,-87.3368,39.605,39.5309)",
38
+ "dcat_bbox": "ENVELOPE(-87.4824,-87.3368,39.605,39.5309)",
39
+ "dcat_centroid": "39.567949999999996,-87.4096",
46
40
  "pcdm_memberOf_sm": [
47
- "09d-01"
41
+ "dc8c18df-7d64-4ff4-a754-d18d0891187d"
48
42
  ],
49
- "gbl_resourceType_sm": [
50
- "Topographic maps"
43
+ "dct_isPartOf_sm": [
44
+ "09d-01",
45
+ "eee6150b-ce2f-4837-9d17-ce72a0c1c26f"
51
46
  ],
47
+ "dct_accessRights_s": "Public",
52
48
  "dct_format_s": "GeoTIFF",
53
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabash_topo_16.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabashAerial_16.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashaerial/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
50
+ "id": "972872c0-3459-438c-8ef0-6e8ff8110395",
54
51
  "dct_identifier_sm": [
55
- "d8906fc8-92bb-4ced-bcd5-9ce9a4701c25"
52
+ "972872c0-3459-438c-8ef0-6e8ff8110395"
56
53
  ],
57
- "schema_provider_s": "Purdue University",
58
- "dct_isPartOf_sm": [
59
- "88cc9b19-3294-4da9-9edd-775c81fb1c59"
60
- ],
61
- "dct_accessRights_s": "Public",
62
- "gbl_suppressed_b": true,
63
- "gbl_mdModified_dt": "2021-05-07T23:00:10Z"
64
- }
54
+ "gbl_mdModified_dt": "2022-05-31T13:44:06Z",
55
+ "gbl_mdVersion_s": "Aardvark"
56
+ }
@@ -1,9 +1,7 @@
1
1
  {
2
- "id": "55d9f193-9f29-4cbf-860d-23c1cff11691",
3
- "gbl_mdVersion_s": "Aardvark",
4
- "dct_title_s": "Wabash Topo (17): Indiana, 1929",
2
+ "dct_title_s": "Wabash Aerial (17): Indiana, 1929",
5
3
  "dct_description_sm": [
6
- "The maps represented here are on tiff files owned by EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
4
+ "The images represented here are the raster orthophoto set collected by remote sensing of 25 aerial images owned by EAS library. Each aerial image was up to 450MB, 400dpi, grayscale. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
7
5
  ],
8
6
  "dct_language_sm": [
9
7
  "eng"
@@ -12,51 +10,47 @@
12
10
  "Brock & Weymouth Inc.",
13
11
  "United States Engineer Office"
14
12
  ],
15
- "dct_publisher_sm": [
16
- "Purdue University Libraries"
17
- ],
13
+ "schema_provider_s": "Purdue University",
18
14
  "gbl_resourceClass_sm": [
19
- "Maps"
20
- ],
21
- "dcat_keyword_sm": [
22
- "Topography",
23
- "Purdue Georeferenced Imagery"
15
+ "Imagery"
24
16
  ],
25
17
  "dcat_theme_sm": [
26
- "Imagery and Base Maps"
18
+ "Imagery"
19
+ ],
20
+ "dcat_keyword_sm": [
21
+ "Universities",
22
+ "Campuses"
27
23
  ],
28
- "dct_issued_s": "2015-10-31",
29
24
  "dct_temporal_sm": [
30
25
  "1929"
31
26
  ],
32
- "gbl_dateRange_drsim": [
33
- "[1929 TO 1929]"
34
- ],
27
+ "dct_issued_s": "2015-11-02",
35
28
  "gbl_indexYear_im": [
36
29
  1929
37
30
  ],
31
+ "gbl_dateRange_drsim": [
32
+ "[1929 TO 1929]"
33
+ ],
38
34
  "dct_spatial_sm": [
39
35
  "Indiana"
40
36
  ],
41
- "locn_geometry": "ENVELOPE(-87.4665,-87.3179,39.6748,39.5982)",
42
- "dcat_bbox": "ENVELOPE(-87.4665,-87.3179,39.6748,39.5982)",
43
- "dcat_centroid": "39.6365,-87.3922",
37
+ "locn_geometry": "ENVELOPE(-87.4646,-87.3186,39.673,39.5987)",
38
+ "dcat_bbox": "ENVELOPE(-87.4646,-87.3186,39.673,39.5987)",
39
+ "dcat_centroid": "39.635850000000005,-87.39160000000001",
44
40
  "pcdm_memberOf_sm": [
45
- "09d-01"
41
+ "dc8c18df-7d64-4ff4-a754-d18d0891187d"
46
42
  ],
47
- "gbl_resourceType_sm": [
48
- "Topographic maps"
43
+ "dct_isPartOf_sm": [
44
+ "09d-01",
45
+ "eee6150b-ce2f-4837-9d17-ce72a0c1c26f"
49
46
  ],
47
+ "dct_accessRights_s": "Public",
50
48
  "dct_format_s": "GeoTIFF",
51
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabash_topo_17.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabashAerial_17.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashaerial/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
50
+ "id": "33ecd1bd-c532-422c-8996-d8c1800aed5b",
52
51
  "dct_identifier_sm": [
53
- "55d9f193-9f29-4cbf-860d-23c1cff11691"
52
+ "33ecd1bd-c532-422c-8996-d8c1800aed5b"
54
53
  ],
55
- "schema_provider_s": "Purdue University",
56
- "dct_isPartOf_sm": [
57
- "88cc9b19-3294-4da9-9edd-775c81fb1c59"
58
- ],
59
- "dct_accessRights_s": "Public",
60
- "gbl_suppressed_b": true,
61
- "gbl_mdModified_dt": "2021-05-07T23:00:10Z"
62
- }
54
+ "gbl_mdModified_dt": "2022-05-31T13:44:06Z",
55
+ "gbl_mdVersion_s": "Aardvark"
56
+ }
@@ -1,9 +1,7 @@
1
1
  {
2
- "id": "b835efbd-ca27-41af-bae2-c22210e58a89",
3
- "gbl_mdVersion_s": "Aardvark",
4
- "dct_title_s": "Wabash Topo (18): Indiana, 1929",
2
+ "dct_title_s": "Wabash Aerial (18): Indiana, 1929",
5
3
  "dct_description_sm": [
6
- "The maps represented here are on tiff files owned by EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
4
+ "The images represented here are the raster orthophoto set collected by remote sensing of 25 aerial images owned by EAS library. Each aerial image was up to 450MB, 400dpi, grayscale. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
7
5
  ],
8
6
  "dct_language_sm": [
9
7
  "eng"
@@ -12,51 +10,47 @@
12
10
  "Brock & Weymouth Inc.",
13
11
  "United States Engineer Office"
14
12
  ],
15
- "dct_publisher_sm": [
16
- "Purdue University Libraries"
17
- ],
13
+ "schema_provider_s": "Purdue University",
18
14
  "gbl_resourceClass_sm": [
19
- "Maps"
20
- ],
21
- "dcat_keyword_sm": [
22
- "Topography",
23
- "Purdue Georeferenced Imagery"
15
+ "Imagery"
24
16
  ],
25
17
  "dcat_theme_sm": [
26
- "Imagery and Base Maps"
18
+ "Imagery"
19
+ ],
20
+ "dcat_keyword_sm": [
21
+ "Universities",
22
+ "Campuses"
27
23
  ],
28
- "dct_issued_s": "2015-10-30",
29
24
  "dct_temporal_sm": [
30
25
  "1929"
31
26
  ],
32
- "gbl_dateRange_drsim": [
33
- "[1929 TO 1929]"
34
- ],
27
+ "dct_issued_s": "2015-11-02",
35
28
  "gbl_indexYear_im": [
36
29
  1929
37
30
  ],
31
+ "gbl_dateRange_drsim": [
32
+ "[1929 TO 1929]"
33
+ ],
38
34
  "dct_spatial_sm": [
39
35
  "Indiana"
40
36
  ],
41
- "locn_geometry": "ENVELOPE(-87.4407,-87.2936,39.7429,39.6653)",
42
- "dcat_bbox": "ENVELOPE(-87.4407,-87.2936,39.7429,39.6653)",
43
- "dcat_centroid": "39.7041,-87.36715000000001",
37
+ "locn_geometry": "ENVELOPE(-87.4104,-87.3281,39.7406,39.6668)",
38
+ "dcat_bbox": "ENVELOPE(-87.4104,-87.3281,39.7406,39.6668)",
39
+ "dcat_centroid": "39.7037,-87.36925",
44
40
  "pcdm_memberOf_sm": [
45
- "09d-01"
41
+ "dc8c18df-7d64-4ff4-a754-d18d0891187d"
46
42
  ],
47
- "gbl_resourceType_sm": [
48
- "Topographic maps"
43
+ "dct_isPartOf_sm": [
44
+ "09d-01",
45
+ "eee6150b-ce2f-4837-9d17-ce72a0c1c26f"
49
46
  ],
47
+ "dct_accessRights_s": "Public",
50
48
  "dct_format_s": "GeoTIFF",
51
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabash_topo_18.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
49
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabashAerial_18.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashaerial/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
50
+ "id": "1b315c9c-f3f7-44be-a77b-2b726e87ff94",
52
51
  "dct_identifier_sm": [
53
- "b835efbd-ca27-41af-bae2-c22210e58a89"
52
+ "1b315c9c-f3f7-44be-a77b-2b726e87ff94"
54
53
  ],
55
- "schema_provider_s": "Purdue University",
56
- "dct_isPartOf_sm": [
57
- "88cc9b19-3294-4da9-9edd-775c81fb1c59"
58
- ],
59
- "dct_accessRights_s": "Public",
60
- "gbl_suppressed_b": true,
61
- "gbl_mdModified_dt": "2021-05-07T23:00:10Z"
62
- }
54
+ "gbl_mdModified_dt": "2022-05-31T13:44:07Z",
55
+ "gbl_mdVersion_s": "Aardvark"
56
+ }
@@ -1,9 +1,7 @@
1
1
  {
2
- "id": "88cc9b19-3294-4da9-9edd-775c81fb1c59",
3
- "gbl_mdVersion_s": "Aardvark",
4
- "dct_title_s": "Wabash River Topographic Maps: Indiana, 1929",
2
+ "dct_title_s": "Wabash River Aerial Imagery: Indiana, 1929",
5
3
  "dct_description_sm": [
6
- "See Related Records below to download individual GeoTIFFs. The maps represented here are tiff files owned by Purdue University's EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
4
+ "See Related Records below to download individual GeoTIFFs. The images represented here are the raster orthophoto set collected by remote sensing of 25 aerial images owned by EAS library. Each aerial image was up to 450MB, 400dpi, grayscale. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
7
5
  ],
8
6
  "dct_language_sm": [
9
7
  "eng"
@@ -12,48 +10,47 @@
12
10
  "Brock & Weymouth Inc.",
13
11
  "United States Engineer Office"
14
12
  ],
15
- "dct_publisher_sm": [
16
- "Purdue University Libraries"
17
- ],
13
+ "schema_provider_s": "Purdue University",
18
14
  "gbl_resourceClass_sm": [
19
- "Maps"
20
- ],
21
- "dcat_keyword_sm": [
22
- "Topography",
23
- "Purdue Georeferenced Imagery"
15
+ "Imagery"
24
16
  ],
25
17
  "dcat_theme_sm": [
26
- "Imagery and Base Maps"
18
+ "Imagery"
19
+ ],
20
+ "dcat_keyword_sm": [
21
+ "Universities",
22
+ "Campuses"
27
23
  ],
28
- "dct_issued_s": "2015-10-17",
29
24
  "dct_temporal_sm": [
30
25
  "1929"
31
26
  ],
32
- "gbl_dateRange_drsim": [
33
- "[1929 TO 1929]"
34
- ],
27
+ "dct_issued_s": "2015-11-03",
35
28
  "gbl_indexYear_im": [
36
29
  1929
37
30
  ],
31
+ "gbl_dateRange_drsim": [
32
+ "[1929 TO 1929]"
33
+ ],
38
34
  "dct_spatial_sm": [
39
- "Indiana"
35
+ "Indiana",
36
+ "West Lafayette, Indiana"
40
37
  ],
41
38
  "locn_geometry": "ENVELOPE(-87.5291,-86.2066,40.8009,39.3999)",
42
39
  "dcat_bbox": "ENVELOPE(-87.5291,-86.2066,40.8009,39.3999)",
43
40
  "dcat_centroid": "40.1004,-86.86785",
44
41
  "pcdm_memberOf_sm": [
45
- "09d-01"
42
+ "dc8c18df-7d64-4ff4-a754-d18d0891187d"
46
43
  ],
47
- "gbl_resourceType_sm": [
48
- "Topographic maps"
44
+ "dct_isPartOf_sm": [
45
+ "09d-01"
49
46
  ],
47
+ "dct_accessRights_s": "Public",
50
48
  "dct_format_s": "Image Service",
51
- "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
49
+ "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashaerial/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
50
+ "id": "eee6150b-ce2f-4837-9d17-ce72a0c1c26f",
52
51
  "dct_identifier_sm": [
53
- "88cc9b19-3294-4da9-9edd-775c81fb1c59"
52
+ "eee6150b-ce2f-4837-9d17-ce72a0c1c26f"
54
53
  ],
55
- "schema_provider_s": "Purdue University",
56
- "dct_accessRights_s": "Public",
57
- "gbl_suppressed_b": false,
58
- "gbl_mdModified_dt": "2021-05-07T23:00:10Z"
59
- }
54
+ "gbl_mdModified_dt": "2022-05-31T13:44:08Z",
55
+ "gbl_mdVersion_s": "Aardvark"
56
+ }
@@ -1,35 +1,30 @@
1
1
  {
2
- "dct_title_s": "Wabash Topo (27): Indiana, 1929",
3
- "dct_alternative_sm": [
4
- "esri-image-map-layer"
5
- ],
2
+ "dct_title_s": "Wabash River Aerial Imagery: Indiana, 1929",
6
3
  "dct_description_sm": [
7
- "ArcGIS Image Map Layer with GeoTIFF direct download. ",
8
- "The maps represented here are on tiff files owned by EAS library. The topos were scanned in color and are up to 550MB each. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
4
+ "See Related Records below to download individual GeoTIFFs. The images represented here are the raster orthophoto set collected by remote sensing of 25 aerial images owned by EAS library. Each aerial image was up to 450MB, 400dpi, grayscale. These images can be viewed and performed in the using either ArcGIS Desktop or QGIS (user choice), referencing against a number of known mapsets like the 2005 Indiana Orthophoto setand USGS DRGs. The geographic coordinate system reference of the maps included are applied in GCS_WGS_1984."
9
5
  ],
10
6
  "dct_language_sm": [
11
7
  "eng"
12
8
  ],
13
- "dct_publisher_sm": [
14
- "Purdue University Libraries"
9
+ "dct_creator_sm": [
10
+ "Brock & Weymouth Inc.",
11
+ "United States Engineer Office"
15
12
  ],
16
13
  "schema_provider_s": "Purdue University",
17
14
  "gbl_resourceClass_sm": [
18
- "Maps"
19
- ],
20
- "gbl_resourceType_sm": [
21
- "Topographic maps"
15
+ "Imagery"
22
16
  ],
23
17
  "dcat_theme_sm": [
24
18
  "Imagery"
25
19
  ],
26
20
  "dcat_keyword_sm": [
27
- "GBL Fixture records"
21
+ "Universities",
22
+ "Campuses"
28
23
  ],
29
24
  "dct_temporal_sm": [
30
25
  "1929"
31
26
  ],
32
- "dct_issued_s": "2015-10-31",
27
+ "dct_issued_s": "2015-11-03",
33
28
  "gbl_indexYear_im": [
34
29
  1929
35
30
  ],
@@ -37,21 +32,25 @@
37
32
  "[1929 TO 1929]"
38
33
  ],
39
34
  "dct_spatial_sm": [
40
- "Indiana"
35
+ "Indiana",
36
+ "West Lafayette, Indiana"
37
+ ],
38
+ "locn_geometry": "ENVELOPE(-87.5291,-86.2066,40.8009,39.3999)",
39
+ "dcat_bbox": "ENVELOPE(-87.5291,-86.2066,40.8009,39.3999)",
40
+ "dcat_centroid": "40.1004,-86.86785",
41
+ "pcdm_memberOf_sm": [
42
+ "dc8c18df-7d64-4ff4-a754-d18d0891187d"
41
43
  ],
42
- "locn_geometry": "ENVELOPE(-87.324704,-87.174404,40.310695,40.233691)",
43
- "dcat_bbox": "ENVELOPE(-87.324704,-87.174404,40.310695,40.233691)",
44
- "dcat_centroid": "40.272193,-87.24955399999999",
45
- "dct_source_sm": [
46
- "88cc9b19-3294-4da9-9edd-775c81fb1c59"
44
+ "dct_isPartOf_sm": [
45
+ "09d-01"
47
46
  ],
48
47
  "dct_accessRights_s": "Public",
49
- "dct_format_s": "GeoTIFF",
50
- "dct_references_s": "{\"http://schema.org/downloadUrl\":\"https://mapsweb.lib.purdue.edu/datasets/Wabash1929/wabash_topo_27.tif.zip\",\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashtopo/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
51
- "id": "32653ed6-8d83-4692-8a06-bf13ffe2c018",
48
+ "dct_format_s": "Image Service",
49
+ "dct_references_s": "{\"urn:x-esri:serviceType:ArcGIS#ImageMapLayer\":\"https://mapsweb.lib.purdue.edu/arcgis/rest/services/Purdue/wabashaerial/ImageServer\",\"http://schema.org/url\":\"https://mapsweb.lib.purdue.edu/wabashriver/\"}",
50
+ "id": "eee6150b-ce2f-4837-9d17-ce72a0c1c26f",
52
51
  "dct_identifier_sm": [
53
- "32653ed6-8d83-4692-8a06-bf13ffe2c018"
52
+ "eee6150b-ce2f-4837-9d17-ce72a0c1c26f"
54
53
  ],
55
- "gbl_mdModified_dt": "2021-06-01T22:14:15Z",
54
+ "gbl_mdModified_dt": "2022-05-31T13:44:08Z",
56
55
  "gbl_mdVersion_s": "Aardvark"
57
- }
56
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geoblacklight
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Graves
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2025-01-30 00:00:00.000000000 Z
14
+ date: 2025-04-17 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rails
@@ -567,6 +567,7 @@ files:
567
567
  - app/javascript/geoblacklight/leaflet/layers.js
568
568
  - app/javascript/geoblacklight/leaflet/utils.js
569
569
  - app/javascript/geoblacklight/openlayers/basemaps.js
570
+ - app/javascript/geoblacklight/openlayers/inspection.js
570
571
  - app/javascript/geoblacklight/openlayers/layers.js
571
572
  - app/models/concerns/geoblacklight/bbox_filter_field.rb
572
573
  - app/models/concerns/geoblacklight/bbox_filter_query.rb
@@ -954,7 +955,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
954
955
  - !ruby/object:Gem::Version
955
956
  version: 2.5.2
956
957
  requirements: []
957
- rubygems_version: 3.5.16
958
+ rubygems_version: 3.5.11
958
959
  signing_key:
959
960
  specification_version: 4
960
961
  summary: A discovery platform for geospatial holdings