geoblacklight 5.0.0 → 5.0.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/app/assets/stylesheets/geoblacklight/modules/geosearch.scss +0 -6
- data/app/javascript/geoblacklight/controllers/openlayers_viewer_controller.js +6 -0
- data/app/javascript/geoblacklight/leaflet/controls/layer_opacity.js +1 -1
- data/app/javascript/geoblacklight/leaflet/controls/sleep.js +0 -2
- data/app/javascript/geoblacklight/openlayers/inspection.js +44 -0
- data/app/models/concerns/geoblacklight/solr_document/inspection.rb +1 -1
- data/lib/geoblacklight/version.rb +1 -1
- data/package.json +1 -1
- data/spec/features/layer_inspection_spec.rb +9 -0
- data/spec/features/relations_spec.rb +1 -1
- data/spec/fixtures/solr_documents/b1g_wabash_child_15.json +27 -33
- data/spec/fixtures/solr_documents/b1g_wabash_child_16.json +28 -36
- data/spec/fixtures/solr_documents/b1g_wabash_child_17.json +27 -33
- data/spec/fixtures/solr_documents/b1g_wabash_child_18.json +27 -33
- data/spec/fixtures/solr_documents/b1g_wabash_parent.json +25 -28
- data/spec/fixtures/solr_documents/esri-image-map-layer.json +25 -26
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b43c78b979a0af3b5429327478ffa766a52566d6f04594ebd6ae62bd30611d3
|
4
|
+
data.tar.gz: 9741a9cc0f6a693f1f1502dc22f718f855cdb6bae45920fcbf915d78f532857c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6f1683e70a2f760a3582315d48c4910af9746aa540165fdedbbd2093e22a89081fb95f37ab3fb8af978e96997b7351dddf24609c001db52a3757f37402d3d73
|
7
|
+
data.tar.gz: 9d1e1e83ffcc5fb48a5e112b55d47314b6d59b01304bdb601ab92a2230634df58460308d18fe8abc25104ee3e396c915e2ec8ec8fd2b43b082a5265cbcc75731
|
@@ -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() {
|
@@ -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
|
data/package.json
CHANGED
@@ -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("
|
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
|
-
"
|
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
|
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
|
-
"
|
16
|
-
"Purdue University Libraries"
|
17
|
-
],
|
13
|
+
"schema_provider_s": "Purdue University",
|
18
14
|
"gbl_resourceClass_sm": [
|
19
|
-
"
|
20
|
-
],
|
21
|
-
"dcat_keyword_sm": [
|
22
|
-
"Topography",
|
23
|
-
"Purdue Georeferenced Imagery"
|
15
|
+
"Imagery"
|
24
16
|
],
|
25
17
|
"dcat_theme_sm": [
|
26
|
-
"Imagery
|
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
|
-
"
|
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.
|
42
|
-
"dcat_bbox": "ENVELOPE(-87.
|
43
|
-
"dcat_centroid": "39.
|
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
|
-
"
|
41
|
+
"dc8c18df-7d64-4ff4-a754-d18d0891187d"
|
46
42
|
],
|
47
|
-
"
|
48
|
-
"
|
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/
|
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
|
-
"
|
52
|
+
"757d0f6e-2e04-4ac1-bd28-a5204df46ac1"
|
54
53
|
],
|
55
|
-
"
|
56
|
-
"
|
57
|
-
|
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
|
-
"
|
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
|
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
|
-
"
|
16
|
-
"Purdue University Libraries"
|
17
|
-
],
|
13
|
+
"schema_provider_s": "Purdue University",
|
18
14
|
"gbl_resourceClass_sm": [
|
19
|
-
"
|
20
|
-
],
|
21
|
-
"dcat_keyword_sm": [
|
22
|
-
"Topography",
|
23
|
-
"Purdue Georeferenced Imagery"
|
15
|
+
"Imagery"
|
24
16
|
],
|
25
17
|
"dcat_theme_sm": [
|
26
|
-
"Imagery
|
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
|
-
"
|
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.
|
44
|
-
"dcat_bbox": "ENVELOPE(-87.
|
45
|
-
"dcat_centroid": "39.
|
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
|
-
"
|
41
|
+
"dc8c18df-7d64-4ff4-a754-d18d0891187d"
|
48
42
|
],
|
49
|
-
"
|
50
|
-
"
|
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/
|
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
|
-
"
|
52
|
+
"972872c0-3459-438c-8ef0-6e8ff8110395"
|
56
53
|
],
|
57
|
-
"
|
58
|
-
"
|
59
|
-
|
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
|
-
"
|
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
|
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
|
-
"
|
16
|
-
"Purdue University Libraries"
|
17
|
-
],
|
13
|
+
"schema_provider_s": "Purdue University",
|
18
14
|
"gbl_resourceClass_sm": [
|
19
|
-
"
|
20
|
-
],
|
21
|
-
"dcat_keyword_sm": [
|
22
|
-
"Topography",
|
23
|
-
"Purdue Georeferenced Imagery"
|
15
|
+
"Imagery"
|
24
16
|
],
|
25
17
|
"dcat_theme_sm": [
|
26
|
-
"Imagery
|
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
|
-
"
|
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.
|
42
|
-
"dcat_bbox": "ENVELOPE(-87.
|
43
|
-
"dcat_centroid": "39.
|
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
|
-
"
|
41
|
+
"dc8c18df-7d64-4ff4-a754-d18d0891187d"
|
46
42
|
],
|
47
|
-
"
|
48
|
-
"
|
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/
|
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
|
-
"
|
52
|
+
"33ecd1bd-c532-422c-8996-d8c1800aed5b"
|
54
53
|
],
|
55
|
-
"
|
56
|
-
"
|
57
|
-
|
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
|
-
"
|
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
|
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
|
-
"
|
16
|
-
"Purdue University Libraries"
|
17
|
-
],
|
13
|
+
"schema_provider_s": "Purdue University",
|
18
14
|
"gbl_resourceClass_sm": [
|
19
|
-
"
|
20
|
-
],
|
21
|
-
"dcat_keyword_sm": [
|
22
|
-
"Topography",
|
23
|
-
"Purdue Georeferenced Imagery"
|
15
|
+
"Imagery"
|
24
16
|
],
|
25
17
|
"dcat_theme_sm": [
|
26
|
-
"Imagery
|
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
|
-
"
|
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.
|
42
|
-
"dcat_bbox": "ENVELOPE(-87.
|
43
|
-
"dcat_centroid": "39.
|
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
|
-
"
|
41
|
+
"dc8c18df-7d64-4ff4-a754-d18d0891187d"
|
46
42
|
],
|
47
|
-
"
|
48
|
-
"
|
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/
|
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
|
-
"
|
52
|
+
"1b315c9c-f3f7-44be-a77b-2b726e87ff94"
|
54
53
|
],
|
55
|
-
"
|
56
|
-
"
|
57
|
-
|
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
|
-
"
|
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
|
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
|
-
"
|
16
|
-
"Purdue University Libraries"
|
17
|
-
],
|
13
|
+
"schema_provider_s": "Purdue University",
|
18
14
|
"gbl_resourceClass_sm": [
|
19
|
-
"
|
20
|
-
],
|
21
|
-
"dcat_keyword_sm": [
|
22
|
-
"Topography",
|
23
|
-
"Purdue Georeferenced Imagery"
|
15
|
+
"Imagery"
|
24
16
|
],
|
25
17
|
"dcat_theme_sm": [
|
26
|
-
"Imagery
|
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
|
-
"
|
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
|
-
"
|
42
|
+
"dc8c18df-7d64-4ff4-a754-d18d0891187d"
|
46
43
|
],
|
47
|
-
"
|
48
|
-
"
|
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/
|
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
|
-
"
|
52
|
+
"eee6150b-ce2f-4837-9d17-ce72a0c1c26f"
|
54
53
|
],
|
55
|
-
"
|
56
|
-
"
|
57
|
-
|
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
|
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
|
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
|
-
"
|
14
|
-
"
|
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
|
-
"
|
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
|
-
"
|
21
|
+
"Universities",
|
22
|
+
"Campuses"
|
28
23
|
],
|
29
24
|
"dct_temporal_sm": [
|
30
25
|
"1929"
|
31
26
|
],
|
32
|
-
"dct_issued_s": "2015-
|
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
|
-
"
|
43
|
-
|
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": "
|
50
|
-
"dct_references_s": "{\"
|
51
|
-
"id": "
|
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
|
-
"
|
52
|
+
"eee6150b-ce2f-4837-9d17-ce72a0c1c26f"
|
54
53
|
],
|
55
|
-
"gbl_mdModified_dt": "
|
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.
|
4
|
+
version: 5.0.1
|
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-
|
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.
|
958
|
+
rubygems_version: 3.5.11
|
958
959
|
signing_key:
|
959
960
|
specification_version: 4
|
960
961
|
summary: A discovery platform for geospatial holdings
|