diff --git a/collection/scripts/benguelacc-harvest.py b/collection/scripts/benguelacc-harvest.py
index 22e2dfe20..4a85e21e6 100644
--- a/collection/scripts/benguelacc-harvest.py
+++ b/collection/scripts/benguelacc-harvest.py
@@ -10,7 +10,7 @@
exposed through the OGC:CSW service, and also a
.RDF resource file.
-Requires: Python 3.x
+Requires: - Python 3.x
Notes:
@@ -24,12 +24,12 @@
# define common variables
CSW_ENDPOINT = "https://geodata.benguelacc.org/catalogue/csw"
CSW_ENDPOINT_TIMEOUT = 60 #seconds
-PATH_TO_DATA_FOLDER = "./data-benguelacc/"
+PATH_TO_DATA_FOLDER = "../tempHosting/data-benguelacc/"
NEW_RDF_FILENAME = "benguelacc-catalogue.rdf"
HOSTNAME = "https://geodata.benguelacc.org"
LOGFILE = "benguelacc-harvest.log"
-SHORTNAME = "benguelacc" #must be hyphen
-ID_URL_BASE = "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/"
+SHORTNAME = "benguelacc" #must not contain spaces, but can contain hyphen
+ID_URL_BASE = "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/"
"""
#########################
@@ -42,8 +42,6 @@
import os, sys, io, uuid
from owslib.csw import CatalogueServiceWeb
from owslib.fes import SortBy, SortProperty
-import ssl
-import pandas as pd
import kglab
import logging
@@ -52,13 +50,6 @@
format="%(asctime)s;%(levelname)s;%(message)s",
datefmt="%Y-%m-%d %H:%M", filemode = "w")
-# generate a Context for each connection
-# disable SSL for now
-
-ctx = ssl.create_default_context()
-ctx.check_hostname = False
-ctx.verify_mode = ssl.CERT_NONE
-
# prepare namespace
namespaces = {
@@ -159,7 +150,17 @@
maxx = csw.records[rec].identification.bbox.maxx
maxy = csw.records[rec].identification.bbox.maxy
- poly = str("""POLYGON(({} {}, {} {}, {} {}, {} {}, {} {}))""".format(minx, miny, minx, maxy, maxx, maxy, maxx, miny, minx, miny))
+ #poly = str("""POLYGON(({} {}, {} {}, {} {}, {} {}, {} {}))""".format(minx, miny, minx, maxy, maxx, maxy, maxx, miny, minx, miny))
+
+ #schema.org expects lat long (Y X) coordinate order
+ boxCoords = str("""{} {} {} {}""".format(miny, minx, maxy, maxx))
+ print(" GeoShape:Box: " + boxCoords)
+ spatialCov = {}
+ spatialCov["@type"] = "https://schema.org/Place"
+ geo = {}
+ geo["@type"] = "https://schema.org/GeoShape"
+ geo["https://schema.org/box"] = boxCoords
+ spatialCov["https://schema.org/geo"] = geo
data = {}
@@ -177,19 +178,7 @@
data["https://schema.org/description"] = description
data["https://schema.org/url"] = url
- aswkt = {}
- aswkt["@type"] = "http://www.opengis.net/ont/geosparql#wktLiteral"
- aswkt["@value"] = poly
-
- crs = {}
- crs["@id"] = "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
-
- hg = {}
- hg["@type"] = "http://www.opengis.net/ont/sf#Polygon"
- hg["http://www.opengis.net/ont/geosparql#asWKT"] = aswkt
- hg["http://www.opengis.net/ont/geosparql#crs"] = crs
-
- data["http://www.opengis.net/ont/geosparql#hasGeometry"] = hg
+ data["https://schema.org/spatialCoverage"] = spatialCov
# keyword(s) loop
k = ""
@@ -212,7 +201,7 @@
k_list = k.split(",")
data["https://schema.org/keywords"] = k_list
- context = {"@vocab": "https://schema.org/", "geosparql": "http://www.opengis.net/ont/geosparql#"}
+ context = {"@vocab": "https://schema.org/"}
compacted = jsonld.compact(data, context)
# need sha hash for the "compacted" var and then also generate the prov for this record.
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-000a6aa2-5f46-11ec-9cf2-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-000a6aa2-5f46-11ec-9cf2-0242ac1c0006.json
index bf407bc60..c527d3c4f 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-000a6aa2-5f46-11ec-9cf2-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-000a6aa2-5f46-11ec-9cf2-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-000a6aa2-5f46-11ec-9cf2-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-000a6aa2-5f46-11ec-9cf2-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.0565643310547 -29.9711952209473, 10.0565643310547 -18.7997817993164, 14.9446954727173 -18.7997817993164, 14.9446954727173 -29.9711952209473, 10.0565643310547 -29.9711952209473))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Terraces found in Namibian sea.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/. \nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Terraces",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.9711952209473 10.0565643310547 -18.7997817993164 14.9446954727173"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_terraces"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-01062a52-8f09-11ec-8819-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-01062a52-8f09-11ec-8819-0242ac1c0006.json
index 951285407..d12fdaa42 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-01062a52-8f09-11ec-8819-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-01062a52-8f09-11ec-8819-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-01062a52-8f09-11ec-8819-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-01062a52-8f09-11ec-8819-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.231640522 -30.658138482, 8.231640522 -17.246196504, 17.073816534 -17.246196504, 17.073816534 -30.658138482, 8.231640522 -30.658138482))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "DESCRIPTION: Shipping is an important use of marine areas in Namibia. Associated\nimpacts from shipping are underwater noise pollution, oil spillage and other pollutants,\npropeller and wake damage in shallow areas, dumping of waste (especially plastic) into\nthe ocean, direct strikes on cetaceans, invasion pathways for alien species and associated\ninfrastructure (ports and anchorages).",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Shipping intensity",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.658138482 8.231640522 -17.246196504 17.073816534"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/NAM_CSR_MTP_shipping_intensity:geonode:NAM_CSR_MTP_shipping_intensity"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-01e050a6-67c7-11ec-9de4-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-01e050a6-67c7-11ec-9de4-0242ac1c0006.json
index 57b84c4f8..1e82a7480 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-01e050a6-67c7-11ec-9de4-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-01e050a6-67c7-11ec-9de4-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-01e050a6-67c7-11ec-9de4-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-01e050a6-67c7-11ec-9de4-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4294900894165 -22.9716682434082, 14.4294900894165 -22.7771892547607, 14.5439987182617 -22.7771892547607, 14.5439987182617 -22.9716682434082, 14.4294900894165 -22.9716682434082))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas delineated for inshore traffic in the Walvis Bay port channel.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Inshore traffic zone",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.9716682434082 14.4294900894165 -22.7771892547607 14.5439987182617"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_inshore_traffic_zone"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-0220de3a-68a5-11ec-803f-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-0220de3a-68a5-11ec-803f-0242ac1c0006.json
index 25fa7ff95..1a0b5105a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-0220de3a-68a5-11ec-803f-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-0220de3a-68a5-11ec-803f-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-0220de3a-68a5-11ec-803f-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-0220de3a-68a5-11ec-803f-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.6833324432373 -23.0, 11.6833324432373 -18.0, 14.0500001907349 -18.0, 14.0500001907349 -23.0, 11.6833324432373 -23.0))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Oceanographic moorings deployed by the Baltic Sea Research Institute in collaboration with MFMR. Moorings collect data on temperature, salinity, oxygen and ocean currents.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Moorings",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.0 11.6833324432373 -18.0 14.0500001907349"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_RES_Moorings"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-03fac06c-13eb-11ed-b034-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-03fac06c-13eb-11ed-b034-0242ac1c0005.json
index 7ea1cd5de..26752a8e4 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-03fac06c-13eb-11ed-b034-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-03fac06c-13eb-11ed-b034-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-03fac06c-13eb-11ed-b034-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-03fac06c-13eb-11ed-b034-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13,0036296844482 -9,33810043334961, 13,0036296844482 -9,3244743347168, 13,1185398101807 -9,3244743347168, 13,1185398101807 -9,33810043334961, 13,0036296844482 -9,33810043334961))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Cabos e Ductos Submarinos. Método –Transformou-se as coordenadas para graus decimais e a posterior tratou-se os mesmos no Qgis.",
"keywords": [
- "AGO_OEM_INFR_WACS",
- "features",
- "Global"
+ "Cabos",
+ "Angola"
],
- "name": "AGO_OEM_INFR_WACS",
+ "name": "AGO Cabos Submarinos WACS 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-9.33810043334961 13.0036296844482 -9.3244743347168 13.1185398101807"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_INFR_WACS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-0549fd70-0469-11ed-b6be-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-0549fd70-0469-11ed-b6be-0242ac1c0005.json
index ca5c1ea41..8cd418d8a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-0549fd70-0469-11ed-b6be-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-0549fd70-0469-11ed-b6be-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-0549fd70-0469-11ed-b6be-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-0549fd70-0469-11ed-b6be-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,766676902771 -17,4416732788086, 11,766676902771 -4,83762121200562, 17,6371536254883 -4,83762121200562, 17,6371536254883 -17,4416732788086, 11,766676902771 -17,4416732788086))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Rios. Método-Shapefile Baixada.",
"keywords": [
- "AGO_OEM_BASE_RIOS",
- "features",
- "Global"
+ "Rios",
+ "Angola"
],
- "name": "AGO_OEM_BASE_RIOS",
+ "name": "AGO Rios 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.4416732788086 11.766676902771 -4.83762121200562 17.6371536254883"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_RIOS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-05bc3598-6333-11ec-8eab-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-05bc3598-6333-11ec-8eab-0242ac1c0006.json
index 6fea02e43..23f010da2 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-05bc3598-6333-11ec-8eab-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-05bc3598-6333-11ec-8eab-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-05bc3598-6333-11ec-8eab-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-05bc3598-6333-11ec-8eab-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.5083322525024 -22.9295749664307, 14.5083322525024 -22.9133644104004, 14.5284357070923 -22.9133644104004, 14.5284357070923 -22.9295749664307, 14.5083322525024 -22.9295749664307))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas of interest or reserved for naval defence, including military training areas, ammunition dumping area and naval infrastructure area",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Military restricted area III",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.9295749664307 14.5083322525024 -22.9133644104004 14.5284357070923"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_DEF_naval_infrastructure_area4"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-067f2650-0466-11ed-92ab-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-067f2650-0466-11ed-92ab-0242ac1c0005.json
index 2c370c49d..0f8946530 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-067f2650-0466-11ed-92ab-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-067f2650-0466-11ed-92ab-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-067f2650-0466-11ed-92ab-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-067f2650-0466-11ed-92ab-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.087270538239027 -17.29562017624149, 8.087270538239027 -5.884547598165719, 10.153178390369302 -5.884547598165719, 10.153178390369302 -17.29562017624149, 8.087270538239027 -17.29562017624149))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Descrição-Milhas Náuticas.Método - Digitalização das Informações com Base na Lei.",
"keywords": [
- "AGO_OEM_BASE_200MN",
- "features",
- "Global"
+ "Nauticas",
+ "Angola"
],
- "name": "AGO_OEM_BASE_200MN",
+ "name": "AGO 200MN 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.29562017624149 8.087270538239027 -5.884547598165719 10.153178390369302"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_200MN"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-068722e8-623a-11ec-857b-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-068722e8-623a-11ec-857b-0242ac1c0006.json
index 25b8a0aef..58b63fe29 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-068722e8-623a-11ec-857b-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-068722e8-623a-11ec-857b-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-068722e8-623a-11ec-857b-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-068722e8-623a-11ec-857b-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4336624145508 -26.708080291748, 14.4336624145508 -22.5122909545898, 16.4223480224609 -22.5122909545898, 16.4223480224609 -26.708080291748, 14.4336624145508 -26.708080291748))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Namib Naukluft National Park.\nDATA SOURCE: Mendelsohn J, Jarvis A, Roberts C and Robertson T. 2002. Atlas of Namibia: A portrait of the land and its people. David Philip Publishers, Cape Town, South Africa. http://www.the-eis.com/",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Namib Naukluft Park",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.708080291748 14.4336624145508 -22.5122909545898 16.4223480224609"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_national_park_Namib_Naukluft_Park"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-070bb7ce-170c-11ed-a943-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-070bb7ce-170c-11ed-a943-0242ac1c0005.json
index 5f6d7ab9e..039ab7035 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-070bb7ce-170c-11ed-a943-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-070bb7ce-170c-11ed-a943-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-070bb7ce-170c-11ed-a943-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-070bb7ce-170c-11ed-a943-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,6695585250854 -17,2732696533203, 11,6695585250854 -4,99951696395874, 13,8655052185059 -4,99951696395874, 13,8655052185059 -17,2732696533203, 11,6695585250854 -17,2732696533203))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "A linha de costa tem uma extensão de 1.650 Km, é representada por 7 províncias (Cabinda, Zaire, Bengo, Luanda, Cuanza Sul, Benguela e Namibe). Existem 8 grandes cidades (Cabinda, Soyo, Luanda, Sumbe, Lobito, Benguela, Namibe e Tômbwa).Método-Imagens aéreas da costa Angolana do Google Earth 2011 foram salvas como uma série de imagens georreferenciadas usando o plug-in Shape2Earth para o programa de código aberto MapWindow GIS (disponível em: http://shape2earth.com). As imagens foram capturadas em uma escala consistente (barra de escala do Google Earth a 900 m), embora algumas exceções fossem necessárias devido à qualidade e resolução variadas das imagens do Google Earth. As imagens capturadas foram importadas para ArcMap 10 (ESRI), e serviram como a linha de base em que os shapefiles de habitat costeiro foram digitalizados. A digitalização foi geralmente realizada em uma escala de 1: 8000, embora, como acima, a resolução variada das imagens ocasionalmente necessitasse de um zoom de mais ou menos a partir desta escala de base. A projeção WGS84 (Universal Transverse Mercator) foi usada para todos os shapefiles.",
"keywords": [
- "Linha_de_costa",
- "features",
- "Global"
+ "Costa",
+ "Angola"
],
- "name": "Linha_de_costa_",
+ "name": "AGO Linha de Costa 2011",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2732696533203 11.6695585250854 -4.99951696395874 13.8655052185059"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:Linha_de_costa"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-095ab27a-67c9-11ec-aef6-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-095ab27a-67c9-11ec-aef6-0242ac1c0006.json
index 6c20988d8..41649c534 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-095ab27a-67c9-11ec-aef6-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-095ab27a-67c9-11ec-aef6-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-095ab27a-67c9-11ec-aef6-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-095ab27a-67c9-11ec-aef6-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4846172332764 -22.9544448852539, 14.4846172332764 -22.8528575897217, 14.5290250778198 -22.8528575897217, 14.5290250778198 -22.9544448852539, 14.4846172332764 -22.9544448852539))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas delineated for channels in the Walvis Bay port.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR channels Walvis Bay port",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.9544448852539 14.4846172332764 -22.8528575897217 14.5290250778198"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_channels_WVB"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-09954ece-6d43-11ec-b5c1-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-09954ece-6d43-11ec-b5c1-0242ac1c0006.json
index b4f9dc17b..562e1b547 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-09954ece-6d43-11ec-b5c1-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-09954ece-6d43-11ec-b5c1-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-09954ece-6d43-11ec-b5c1-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-09954ece-6d43-11ec-b5c1-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.0169439315796 -29.6502780914307, 10.0169439315796 -17.2502765655518, 14.7502784729004 -17.2502765655518, 14.7502784729004 -29.6502780914307, 10.0169439315796 -29.6502780914307))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of horse mackerel trawlers 2013",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.6502780914307 10.0169439315796 -17.2502765655518 14.7502784729004"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_horsemackerel_catch_location_2010"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-0d9b46ee-6eca-11ec-9f95-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-0d9b46ee-6eca-11ec-9f95-0242ac1c0006.json
index 59a1efce3..dabacc874 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-0d9b46ee-6eca-11ec-9f95-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-0d9b46ee-6eca-11ec-9f95-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-0d9b46ee-6eca-11ec-9f95-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-0d9b46ee-6eca-11ec-9f95-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.96666622161865 -30.1500015258789, 8.96666622161865 -17.2666664123535, 14.5333337783813 -17.2666664123535, 14.5333337783813 -30.1500015258789, 8.96666622161865 -30.1500015258789))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of blue sharks 2013",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.1500015258789 8.96666622161865 -17.2666664123535 14.5333337783813"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2013"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-0da32676-67e9-11ec-93e0-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-0da32676-67e9-11ec-93e0-0242ac1c0006.json
index 459504125..03f5df451 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-0da32676-67e9-11ec-93e0-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-0da32676-67e9-11ec-93e0-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-0da32676-67e9-11ec-93e0-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-0da32676-67e9-11ec-93e0-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4435367584229 -22.8847522735596, 14.4435367584229 -22.879430770874, 14.4476613998413 -22.879430770874, 14.4476613998413 -22.8847522735596, 14.4435367584229 -22.8847522735596))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Important area for kayak tours",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Kayak tours",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.8847522735596 14.4435367584229 -22.879430770874 14.4476613998413"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_TOUR_kayak_tours"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-0db892ee-63e9-11ec-94b3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-0db892ee-63e9-11ec-94b3-0242ac1c0006.json
index 3736d9da3..5196eb253 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-0db892ee-63e9-11ec-94b3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-0db892ee-63e9-11ec-94b3-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-0db892ee-63e9-11ec-94b3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-0db892ee-63e9-11ec-94b3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.270791053772 -28.9087295532227, 10.270791053772 -16.8774013519287, 16.6627883911133 -16.8774013519287, 16.6627883911133 -28.9087295532227, 10.270791053772 -28.9087295532227))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Mineable deposit of phosphate as they are spatially located at the ocean\nfloor within the Namibian marine environment mostly found at the mouth of Kunene river and the area between Swakopmund and Lüderitz.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Mineable deposit of phosphate",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.9087295532227 10.270791053772 -16.8774013519287 16.6627883911133"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_phosphorite"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-0e059824-63e3-11ec-9749-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-0e059824-63e3-11ec-9749-0242ac1c0006.json
index 23992154e..dac3638f9 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-0e059824-63e3-11ec-9749-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-0e059824-63e3-11ec-9749-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-0e059824-63e3-11ec-9749-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-0e059824-63e3-11ec-9749-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.9971132278442 -28.6291255950928, 13.9971132278442 -21.8108005523682, 16.4478759765625 -21.8108005523682, 16.4478759765625 -28.6291255950928, 13.9971132278442 -28.6291255950928))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Important bird areas along the Namibian coast. IBAs are selected according to a set of criteria (standards) determined by BirdLife International (www.birdlife.org).\nDATA SOURCE: BirdLife International, 2020. Important Bird and Biodiversity Area (IBA)\ndigital boundaries: September 2020 version. BirdLife International, Cambridge, UK.\nMETHODS: Shapefile created along the coastline of Namibia where IBAs are adjacent",
"keywords": [
"Biodiversity",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Important bird areas",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.6291255950928 13.9971132278442 -21.8108005523682 16.4478759765625"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_Marine_Imp_Bird_Areas_coast"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-0f9332d6-6ec5-11ec-9210-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-0f9332d6-6ec5-11ec-9210-0242ac1c0006.json
index b10f3e0c3..984871b70 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-0f9332d6-6ec5-11ec-9210-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-0f9332d6-6ec5-11ec-9210-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-0f9332d6-6ec5-11ec-9210-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-0f9332d6-6ec5-11ec-9210-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.3166666030884 -27.8000011444092, 10.3166666030884 -17.9333324432373, 14.3833341598511 -17.9333324432373, 14.3833341598511 -27.8000011444092, 10.3166666030884 -27.8000011444092))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of short fin mako 2011",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-27.8000011444092 10.3166666030884 -17.9333324432373 14.3833341598511"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2011"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1007e242-5f3f-11ec-8ad6-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1007e242-5f3f-11ec-8ad6-0242ac1c0006.json
index 113ea0b3a..3e8ab600a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1007e242-5f3f-11ec-8ad6-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1007e242-5f3f-11ec-8ad6-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1007e242-5f3f-11ec-8ad6-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1007e242-5f3f-11ec-8ad6-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.74575328826904 -20.8536739349365, 8.74575328826904 -19.3415470123291, 9.92459964752197 -19.3415470123291, 9.92459964752197 -20.8536739349365, 8.74575328826904 -20.8536739349365))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Ridges found in Namibian sea.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/. \nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Ridges",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-20.8536739349365 8.74575328826904 -19.3415470123291 9.92459964752197"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_ridges0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-113dadfa-13e8-11ed-99e4-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-113dadfa-13e8-11ed-99e4-0242ac1c0005.json
index 8efdd8215..3edbe6689 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-113dadfa-13e8-11ed-99e4-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-113dadfa-13e8-11ed-99e4-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-113dadfa-13e8-11ed-99e4-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-113dadfa-13e8-11ed-99e4-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.666657666806568 -16.74679706300943, 11.666657666806568 -16.508102374820844, 11.755216397069958 -16.508102374820844, 11.755216397069958 -16.74679706300943, 11.666657666806568 -16.74679706300943))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Baia dos Tigres.",
"keywords": [
- "AGO_OEM_TUR_BAIA_TIGRES",
- "features",
- "Global"
+ "Baia",
+ "Angola"
],
- "name": "AGO_OEM_TUR_BAIA_TIGRES",
+ "name": "AGO Baia dos Tigres 2022",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-16.74679706300943 11.666657666806568 -16.508102374820844 11.755216397069958"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_TUR_BAIA_TIGRES"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-11579bfc-1401-11ed-96bf-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-11579bfc-1401-11ed-96bf-0242ac1c0005.json
index 26e04a8ad..9b753c349 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-11579bfc-1401-11ed-96bf-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-11579bfc-1401-11ed-96bf-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-11579bfc-1401-11ed-96bf-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-11579bfc-1401-11ed-96bf-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,7410373687744 -16,6001720428467, 11,7410373687744 -8,76489543914795, 13,5482864379883 -8,76489543914795, 13,5482864379883 -16,6001720428467, 11,7410373687744 -16,6001720428467))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Áreas Favoráveis para Maricultura .Método- Digitalização das Informações com Base na Lei.",
"keywords": [
- "AGO_OEM_PES_MARICULTURA",
- "features",
- "Global"
+ "Maricultura",
+ "Angola"
],
- "name": "AGO_OEM_PES_MARICULTURA",
+ "name": "AGO Maricultura 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-16.6001720428467 11.7410373687744 -8.76489543914795 13.5482864379883"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PES_MARICULTURA"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1293fe52-6196-11ec-a60e-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1293fe52-6196-11ec-a60e-0242ac1c0006.json
index 9cddec66f..83b8e02af 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1293fe52-6196-11ec-a60e-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1293fe52-6196-11ec-a60e-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1293fe52-6196-11ec-a60e-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1293fe52-6196-11ec-a60e-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.24328708648682 -30.6581401824951, 8.24328708648682 -17.2429466247559, 16.4548759460449 -17.2429466247559, 16.4548759460449 -30.6581401824951, 8.24328708648682 -30.6581401824951))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "The Namibian Marine Spatial Planning Areas",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR MSP Areas",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6581401824951 8.24328708648682 -17.2429466247559 16.4548759460449"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_planning_areas0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-16bf9c14-13ea-11ed-b0b5-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-16bf9c14-13ea-11ed-b0b5-0242ac1c0005.json
index 78cb0ad48..97d644bb8 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-16bf9c14-13ea-11ed-b0b5-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-16bf9c14-13ea-11ed-b0b5-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-16bf9c14-13ea-11ed-b0b5-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-16bf9c14-13ea-11ed-b0b5-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,8175563812256 -15,8014841079712, 11,8175563812256 -5,3972020149231, 13,4552631378174 -5,3972020149231, 13,4552631378174 -15,8014841079712, 11,8175563812256 -15,8014841079712))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Ancoradouros .Método- Digitalização dos Dados com Base na Lei.",
"keywords": [
- "AGO_OEM_INFR_ANCORADOUROS",
- "features",
- "Global"
+ "Ancoras",
+ "Angola"
],
- "name": "AGO_OEM_INFR_ANCORADOUROS",
+ "name": "AGO Ancoradouros 2022",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-15.8014841079712 11.8175563812256 -5.3972020149231 13.4552631378174"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_INFR_ANCORADOUROS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-182d2054-687c-11ec-9103-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-182d2054-687c-11ec-9103-0242ac1c0006.json
index 5108d0b30..f2078639d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-182d2054-687c-11ec-9103-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-182d2054-687c-11ec-9103-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-182d2054-687c-11ec-9103-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-182d2054-687c-11ec-9103-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((16.4060573577881 -28.6270942687988, 16.4060573577881 -28.5342922210693, 16.5021381378174 -28.5342922210693, 16.5021381378174 -28.6270942687988, 16.4060573577881 -28.6270942687988))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Townlands of Oranjemund. Data supplied by NamDeb.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Townlands Oranjemund",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.6270942687988 16.4060573577881 -28.5342922210693 16.5021381378174"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_townlands_Oranjemund"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1854a820-6d2e-11ec-9083-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1854a820-6d2e-11ec-9083-0242ac1c0006.json
index b0d746ce5..5cc74989e 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1854a820-6d2e-11ec-9083-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1854a820-6d2e-11ec-9083-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1854a820-6d2e-11ec-9083-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1854a820-6d2e-11ec-9083-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.0833330154419 -29.7333335876465, 11.0833330154419 -17.283332824707, 14.8166675567627 -17.283332824707, 14.8166675567627 -29.7333335876465, 11.0833330154419 -29.7333335876465))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations of hake freezer trawlers 2014 as recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake freezer tawlers 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.7333335876465 11.0833330154419 -17.283332824707 14.8166675567627"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_freezer_catch_location_2014"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-186e1848-67e6-11ec-ae09-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-186e1848-67e6-11ec-ae09-0242ac1c0006.json
index 35b8ef78f..69583aac6 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-186e1848-67e6-11ec-ae09-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-186e1848-67e6-11ec-ae09-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-186e1848-67e6-11ec-ae09-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-186e1848-67e6-11ec-ae09-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4066858291626 -23.5574855804443, 14.4066858291626 -22.574462890625, 14.7291564941406 -22.574462890625, 14.7291564941406 -23.5574855804443, 14.4066858291626 -23.5574855804443))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Important areas for bird watching",
"keywords": [
"Biodiversity",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Birding areas",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.5574855804443 14.4066858291626 -22.574462890625 14.7291564941406"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_TOUR_birding_areas"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1a56a6f4-6d48-11ec-b579-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1a56a6f4-6d48-11ec-b579-0242ac1c0006.json
index 6f41b1f65..ca414ba4d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1a56a6f4-6d48-11ec-b579-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1a56a6f4-6d48-11ec-b579-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1a56a6f4-6d48-11ec-b579-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1a56a6f4-6d48-11ec-b579-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.2166662216187 -23.6916675567627, 13.2166662216187 -21.5566654205322, 13.9533338546753 -21.5566654205322, 13.9533338546753 -23.6916675567627, 13.2166662216187 -23.6916675567627))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of sardine purse seiners 2017",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.6916675567627 13.2166662216187 -21.5566654205322 13.9533338546753"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_sardine_catch_location_2017"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1aae4192-0466-11ed-9a67-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-1aae4192-0466-11ed-9a67-0242ac1c0005.json
index 4a500dbdf..edffedd6e 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1aae4192-0466-11ed-9a67-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1aae4192-0466-11ed-9a67-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1aae4192-0466-11ed-9a67-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1aae4192-0466-11ed-9a67-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((5.54784643411301 -17.531729700887247, 5.54784643411301 -7.552288756854756, 7.357628462263919 -7.552288756854756, 7.357628462263919 -17.531729700887247, 5.54784643411301 -17.531729700887247))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Descrição-Milhas Náuticas.Método - Digitalização das Informações com Base na Lei.",
"keywords": [
- "AGO_OEM_BASE_350MN",
- "features",
- "Global"
+ "Nauticas",
+ "Angola"
],
- "name": "AGO_OEM_BASE_350MN",
+ "name": "AGO 350MN 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.531729700887247 5.54784643411301 -7.552288756854756 7.357628462263919"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_350MN"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1b0ac7e4-e7d0-11ec-823d-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1b0ac7e4-e7d0-11ec-823d-0242ac1c0006.json
index 752866de2..99793d286 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1b0ac7e4-e7d0-11ec-823d-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1b0ac7e4-e7d0-11ec-823d-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1b0ac7e4-e7d0-11ec-823d-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1b0ac7e4-e7d0-11ec-823d-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((3.0 -20.0, 3.0 -2.0, 13.4973001480103 -2.0, 13.4973001480103 -20.0, 3.0 -20.0))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Descrição-Em geral a batimetria da costa angolana é caracterizada pela plataforma continental que varia em profundidade. O declive da plataforma ocorre a cerca de 30 a 40km da costa, partir destas profundidades. O acidente mais notável na batimetria ao largo da costa angolana é pronunciado pelo canhão existente na foz do rio congo.",
"keywords": [
"AGO_OEM_BASE_BAT",
@@ -22,5 +11,12 @@
"Global"
],
"name": "AGO_OEM_BASE_BAT",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-20.0 3.0 -2.0 13.4973001480103"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_BAT"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1bbafa2c-6ed3-11ec-a0d3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1bbafa2c-6ed3-11ec-a0d3-0242ac1c0006.json
index 620433737..db450ea98 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1bbafa2c-6ed3-11ec-a0d3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1bbafa2c-6ed3-11ec-a0d3-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1bbafa2c-6ed3-11ec-a0d3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1bbafa2c-6ed3-11ec-a0d3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.7299995422363 -26.9200000762939, 12.7299995422363 -19.6799983978271, 14.9800004959106 -19.6799983978271, 14.9800004959106 -26.9200000762939, 12.7299995422363 -26.9200000762939))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of snoek 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.9200000762939 12.7299995422363 -19.6799983978271 14.9800004959106"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2015"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1bc709d0-0469-11ed-92ab-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-1bc709d0-0469-11ed-92ab-0242ac1c0005.json
index b520b0986..d111688f9 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1bc709d0-0469-11ed-92ab-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1bc709d0-0469-11ed-92ab-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1bc709d0-0469-11ed-92ab-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1bc709d0-0469-11ed-92ab-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8,19983768463135 -17,2501811981201, 8,19983768463135 -5,88454723358154, 11,75648021698 -5,88454723358154, 11,75648021698 -17,2501811981201, 8,19983768463135 -17,2501811981201))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Descrição Zona Econômica Exclusiva (ZEE) é uma distância de 200 milhas náuticas (cerca de 370 quilômetros) a partir da costa, que vai além das águas territoriais, distante 12 milhas ou 22 quilômetros da costa. Nesta faixa cada país costeiro tem prioridade para a utilização e proteção dos recursos naturais do mar. Além da exploração e gestão dos recursos naturais, o país costeiro exercerá nesta zona a jurisdição no que concerne ao estabelecimento e utilização de ilhas artificiais, instalações e estruturas e investigação científica marinha.\nAngola detém uma Zona Econômica Exclusiva com extensão de 518.433 Km².Método- Shapefile fornecido",
"keywords": [
- "AGO_OEM_BASE_ZEE",
- "features",
- "Global"
+ "ZEE",
+ "Angola"
],
- "name": "AGO_OEM_BASE_ZEE",
+ "name": "AGO Zona Economica Exclusiva 2022",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2501811981201 8.19983768463135 -5.88454723358154 11.75648021698"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_ZEE"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1df23c2a-6266-11ec-8d97-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1df23c2a-6266-11ec-8d97-0242ac1c0006.json
index 3371ccd64..ea74af97a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1df23c2a-6266-11ec-8d97-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1df23c2a-6266-11ec-8d97-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1df23c2a-6266-11ec-8d97-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1df23c2a-6266-11ec-8d97-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.3853330612183 -25.0000267028809, 11.3853330612183 -17.2429466247559, 14.839168548584 -17.2429466247559, 14.839168548584 -25.0000267028809, 11.3853330612183 -25.0000267028809))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Generalised spawning areas of pelagic fish - sardine, horse mackerel, anchovy.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Spawning areas of pelagic fish",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-25.0000267028809 11.3853330612183 -17.2429466247559 14.839168548584"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_pelagic_spawning_area1"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1f133e52-6d3c-11ec-8b0a-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1f133e52-6d3c-11ec-8b0a-0242ac1c0006.json
index 2511ca69a..cf17ac10f 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1f133e52-6d3c-11ec-8b0a-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1f133e52-6d3c-11ec-8b0a-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1f133e52-6d3c-11ec-8b0a-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1f133e52-6d3c-11ec-8b0a-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.3666658401489 -29.716667175293, 11.3666658401489 -17.8833332061768, 14.8500003814697 -17.8833332061768, 14.8500003814697 -29.716667175293, 11.3666658401489 -29.716667175293))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of monk trawlers 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.716667175293 11.3666658401489 -17.8833332061768 14.8500003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_monk_catch_location_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-1f974b8c-6ec9-11ec-8671-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-1f974b8c-6ec9-11ec-8671-0242ac1c0006.json
index 444c92770..5e48e71d1 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-1f974b8c-6ec9-11ec-8671-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-1f974b8c-6ec9-11ec-8671-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-1f974b8c-6ec9-11ec-8671-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-1f974b8c-6ec9-11ec-8671-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9.38333320617676 -27.8000011444092, 9.38333320617676 -17.5666656494141, 14.6166667938232 -17.5666656494141, 14.6166667938232 -27.8000011444092, 9.38333320617676 -27.8000011444092))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of blue sharks 2011",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-27.8000011444092 9.38333320617676 -17.5666656494141 14.6166667938232"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2011"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-20cffa7e-1407-11ed-9439-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-20cffa7e-1407-11ed-9439-0242ac1c0005.json
index 08b92ea61..3e9f52e7f 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-20cffa7e-1407-11ed-9439-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-20cffa7e-1407-11ed-9439-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-20cffa7e-1407-11ed-9439-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-20cffa7e-1407-11ed-9439-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,336573600769 -17,2373352050781, 11,336573600769 -16,5233535766602, 11,6770877838135 -16,5233535766602, 11,6770877838135 -17,2373352050781, 11,336573600769 -17,2373352050781))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Espécies Aquáticas. Método- Vectorização das Informações Contida no Relatório.",
"keywords": [
- "AGO_OEM_NOR_DAT_MERLUCCIUS_CAPENSIS",
- "features",
- "Global"
+ "Peixe",
+ "Angola"
],
- "name": "AGO_OEM_NOR_DAT_MERLUCCIUS_CAPENSIS",
+ "name": "AGO Mercuccius Capensis 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2373352050781 11.336573600769 -16.5233535766602 11.6770877838135"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_NOR_DAT_MERLUCCIUS_CAPENSIS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-22ba8e3c-6ebf-11ec-a188-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-22ba8e3c-6ebf-11ec-a188-0242ac1c0006.json
index 8b5f9d0a7..e0148026a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-22ba8e3c-6ebf-11ec-a188-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-22ba8e3c-6ebf-11ec-a188-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-22ba8e3c-6ebf-11ec-a188-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-22ba8e3c-6ebf-11ec-a188-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.73333263397217 -30.3666667938232, 8.73333263397217 -17.6666660308838, 14.7000007629395 -17.6666660308838, 14.7000007629395 -30.3666667938232, 8.73333263397217 -30.3666667938232))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of swordfish 2010",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3666667938232 8.73333263397217 -17.6666660308838 14.7000007629395"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_swordfish_catch_location_2010"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-231a2032-6ec8-11ec-b890-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-231a2032-6ec8-11ec-b890-0242ac1c0006.json
index ddd7e97ea..101daf28c 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-231a2032-6ec8-11ec-b890-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-231a2032-6ec8-11ec-b890-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-231a2032-6ec8-11ec-b890-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-231a2032-6ec8-11ec-b890-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.39999961853027 -30.3333339691162, 8.39999961853027 -17.2666664123535, 14.4833335876465 -17.2666664123535, 14.4833335876465 -30.3333339691162, 8.39999961853027 -30.3333339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of short fin mako 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3333339691162 8.39999961853027 -17.2666664123535 14.4833335876465"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2016"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-247233d8-6d34-11ec-b4b4-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-247233d8-6d34-11ec-b4b4-0242ac1c0006.json
index 66c03b770..4f182393a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-247233d8-6d34-11ec-b4b4-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-247233d8-6d34-11ec-b4b4-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-247233d8-6d34-11ec-b4b4-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-247233d8-6d34-11ec-b4b4-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.9666662216187 -29.7833347320557, 11.9666662216187 -19.9166660308838, 14.9833335876465 -19.9166660308838, 14.9833335876465 -29.7833347320557, 11.9666662216187 -29.7833347320557))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake long line vessels 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.7833347320557 11.9666662216187 -19.9166660308838 14.9833335876465"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_LL_catch_location_2014"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-2568f108-6ed0-11ec-a0d3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-2568f108-6ed0-11ec-a0d3-0242ac1c0006.json
index 634d59b61..edefa5f84 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-2568f108-6ed0-11ec-a0d3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-2568f108-6ed0-11ec-a0d3-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-2568f108-6ed0-11ec-a0d3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-2568f108-6ed0-11ec-a0d3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.39999961853027 -30.3333339691162, 8.39999961853027 -17.2666664123535, 14.9000005722046 -17.2666664123535, 14.9000005722046 -30.3333339691162, 8.39999961853027 -30.3333339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of other sharks (fins) 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3333339691162 8.39999961853027 -17.2666664123535 14.9000005722046"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shark_fin_catch_locations_2016"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-263a6e62-6ec7-11ec-8bc8-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-263a6e62-6ec7-11ec-8bc8-0242ac1c0006.json
index f53f20b3d..904ecda3c 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-263a6e62-6ec7-11ec-8bc8-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-263a6e62-6ec7-11ec-8bc8-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-263a6e62-6ec7-11ec-8bc8-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-263a6e62-6ec7-11ec-8bc8-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.31666660308838 -29.8333339691162, 8.31666660308838 -17.25, 15.1000003814697 -17.25, 15.1000003814697 -29.8333339691162, 8.31666660308838 -29.8333339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of short fin mako 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.8333339691162 8.31666660308838 -17.25 15.1000003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2015"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-267762f2-6d3e-11ec-a28b-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-267762f2-6d3e-11ec-a28b-0242ac1c0006.json
index eefc61355..2ff5f20f1 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-267762f2-6d3e-11ec-a28b-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-267762f2-6d3e-11ec-a28b-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-267762f2-6d3e-11ec-a28b-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-267762f2-6d3e-11ec-a28b-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.3333330154419 -29.1500015258789, 11.3333330154419 -17.8999996185303, 14.8500003814697 -17.8999996185303, 14.8500003814697 -29.1500015258789, 11.3333330154419 -29.1500015258789))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of monk trawlers 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.1500015258789 11.3333330154419 -17.8999996185303 14.8500003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_monk_catch_location_2014"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-2695c3da-6192-11ec-9598-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-2695c3da-6192-11ec-9598-0242ac1c0006.json
index 917d650ae..3768f5101 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-2695c3da-6192-11ec-9598-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-2695c3da-6192-11ec-9598-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-2695c3da-6192-11ec-9598-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-2695c3da-6192-11ec-9598-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.24328708648682 -30.6581401824951, 8.24328708648682 -17.2429466247559, 16.4548759460449 -17.2429466247559, 16.4548759460449 -30.6581401824951, 8.24328708648682 -30.6581401824951))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "The United Nations Convention on Law of the Sea (UNCLOS) indicates that the exclusive economic zone (EEZ) of a coastal state extends 200 nm from the baseline. Within this area, the coastal nation has sole exploitation rights over all natural resources.\nNamibia has ratified this convention. \nDATA SOURCE: Flanders Marine Institute (2019). Maritime Boundaries Geodatabase: Maritime Boundaries and Exclusive Economic Zones (200NM), version 11. available online at http://www.marineregions.org/. https://doi.org/10.14284/38",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR EEZ",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6581401824951 8.24328708648682 -17.2429466247559 16.4548759460449"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_EEZ_area"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-2726b530-f9a4-11eb-987c-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-2726b530-f9a4-11eb-987c-0242ac1c0006.json
index 1c337d086..73f32b082 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-2726b530-f9a4-11eb-987c-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-2726b530-f9a4-11eb-987c-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-2726b530-f9a4-11eb-987c-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-2726b530-f9a4-11eb-987c-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Recreational shore-based fishery sector targeting kob, steenbras, galjoen and blacktail.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Linefish fishery",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Linefish"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-28508728-1727-11ed-8ce4-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-28508728-1727-11ed-8ce4-0242ac1c0005.json
index f4c286294..ddf1edda0 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-28508728-1727-11ed-8ce4-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-28508728-1727-11ed-8ce4-0242ac1c0005.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-28508728-1727-11ed-8ce4-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-28508728-1727-11ed-8ce4-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.4137411117554 -8.5845947265625, 10.4137411117554 -5.02650260925293, 13.3964872360229 -5.02650260925293, 13.3964872360229 -8.5845947265625, 10.4137411117554 -8.5845947265625))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "bla bla",
+ "description": "Blocos Petrolíferos. Georreferenciação do Mapa e posterior vectorização dos dados importantes.",
"keywords": [
- "petroleum",
+ "Petroleo",
"Angola"
],
- "name": "AGO OEM PET BLOCOS INSTALACOES 2022",
+ "name": "AGO Blocos Com Instalacoes Petroliferas 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-8.5845947265625 10.4137411117554 -5.02650260925293 13.3964872360229"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PET_BLOCOS_INSTALACOES0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-286d5910-6ecc-11ec-af5d-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-286d5910-6ecc-11ec-af5d-0242ac1c0006.json
index c7fee3d6b..a4853c96b 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-286d5910-6ecc-11ec-af5d-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-286d5910-6ecc-11ec-af5d-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-286d5910-6ecc-11ec-af5d-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-286d5910-6ecc-11ec-af5d-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.38333320617676 -30.3333339691162, 8.38333320617676 -17.2666664123535, 14.9000005722046 -17.2666664123535, 14.9000005722046 -30.3333339691162, 8.38333320617676 -30.3333339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of blue sharks 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3333339691162 8.38333320617676 -17.2666664123535 14.9000005722046"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2016"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-28d93940-63ec-11ec-abe8-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-28d93940-63ec-11ec-abe8-0242ac1c0006.json
index 602b32fcb..24fef6380 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-28d93940-63ec-11ec-abe8-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-28d93940-63ec-11ec-abe8-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-28d93940-63ec-11ec-abe8-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-28d93940-63ec-11ec-abe8-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((7.95583963394165 -30.1668968200684, 7.95583963394165 -16.9515724182129, 25.2544174194336 -16.9515724182129, 25.2544174194336 -30.1668968200684, 7.95583963394165 -30.1668968200684))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Geophysical and geoscientific research have been done in the area like the shelf edges and transects from east to west of Namibian ocean space to create knowledge, discoveries and development of mineral resources and to understand the\nearth system and geology within Namibian EEZ.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Geology",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.1668968200684 7.95583963394165 -16.9515724182129 25.2544174194336"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_geology"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-2943463c-6ed2-11ec-a0d3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-2943463c-6ed2-11ec-a0d3-0242ac1c0006.json
index bd76d7d1a..0bf2f2bb8 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-2943463c-6ed2-11ec-a0d3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-2943463c-6ed2-11ec-a0d3-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-2943463c-6ed2-11ec-a0d3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-2943463c-6ed2-11ec-a0d3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.0199995040894 -26.980001449585, 13.0199995040894 -20.5, 14.9700002670288 -20.5, 14.9700002670288 -26.980001449585, 13.0199995040894 -26.980001449585))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of snoek 2013",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.980001449585 13.0199995040894 -20.5 14.9700002670288"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2013"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-2a022a7e-14a5-11ed-9664-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-2a022a7e-14a5-11ed-9664-0242ac1c0005.json
index 35789737c..9e3c68b9d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-2a022a7e-14a5-11ed-9664-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-2a022a7e-14a5-11ed-9664-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-2a022a7e-14a5-11ed-9664-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-2a022a7e-14a5-11ed-9664-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.641861996291713 -18.105003314512683, 11.641861996291713 -4.293597438621827, 24.362327600695224 -4.293597438621827, 24.362327600695224 -18.105003314512683, 11.641861996291713 -18.105003314512683))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Divisão Político-Administrativa (DPA).Método- Shapefile baixada",
"keywords": [
- "AGO_OEM_BASE_PROV",
- "features",
- "Global"
+ "Provincia",
+ "Angola"
],
- "name": "AGO_OEM_BASE_PROV0",
+ "name": "AGO Provincias 2020",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-18.105003314512683 11.641861996291713 -4.293597438621827 24.362327600695224"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_PROV0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-2c8b08c6-63f0-11ec-abe8-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-2c8b08c6-63f0-11ec-abe8-0242ac1c0006.json
index 35104a7d6..403f81768 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-2c8b08c6-63f0-11ec-abe8-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-2c8b08c6-63f0-11ec-abe8-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-2c8b08c6-63f0-11ec-abe8-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-2c8b08c6-63f0-11ec-abe8-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.459552140912974 -28.952906539610662, 11.459552140912974 -17.255033839593825, 18.772535270585788 -17.255033839593825, 18.772535270585788 -28.952906539610662, 11.459552140912974 -28.952906539610662))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Spatial allocation of mining licences within the Namibian ocean space.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Active mining licences (Sept 2020)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.952906539610662 11.459552140912974 -17.255033839593825 18.772535270585788"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_mining_licence_Sept2020"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-2cbb265a-6ed1-11ec-ab31-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-2cbb265a-6ed1-11ec-ab31-0242ac1c0006.json
index 36b913444..e7d071279 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-2cbb265a-6ed1-11ec-ab31-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-2cbb265a-6ed1-11ec-ab31-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-2cbb265a-6ed1-11ec-ab31-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-2cbb265a-6ed1-11ec-ab31-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.7699995040894 -26.980001449585, 12.7699995040894 -19.8299999237061, 14.9700002670288 -19.8299999237061, 14.9700002670288 -26.980001449585, 12.7699995040894 -26.980001449585))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of snoek 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.980001449585 12.7699995040894 -19.8299999237061 14.9700002670288"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-307a080c-623c-11ec-adf6-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-307a080c-623c-11ec-adf6-0242ac1c0006.json
index 1ab78a3c7..cab84825f 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-307a080c-623c-11ec-adf6-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-307a080c-623c-11ec-adf6-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-307a080c-623c-11ec-adf6-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-307a080c-623c-11ec-adf6-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.7364120483398 -21.1936912536621, 11.7364120483398 -17.1512336730957, 13.959716796875 -17.1512336730957, 13.959716796875 -21.1936912536621, 11.7364120483398 -21.1936912536621))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Skeleton Coast National Park. DATA SOURCE: Mendelsohn J, Jarvis A, Roberts C and Robertson T. 2002. Atlas of Namibia: A portrait of the land and its people. David Philip Publishers, Cape Town, South Africa. http://www.the-eis.com/",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Skeleton Coast Park",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-21.1936912536621 11.7364120483398 -17.1512336730957 13.959716796875"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_national_park_Skeleton_Coast_Park"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-3194f428-6876-11ec-9887-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-3194f428-6876-11ec-9887-0242ac1c0006.json
index 13313818f..e81119887 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-3194f428-6876-11ec-9887-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-3194f428-6876-11ec-9887-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-3194f428-6876-11ec-9887-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-3194f428-6876-11ec-9887-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4133920669556 -22.9411106109619, 14.4133920669556 -22.8431720733643, 14.5383968353271 -22.8431720733643, 14.5383968353271 -22.9411106109619, 14.4133920669556 -22.9411106109619))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Popular surf spots in the area of Walvis Bay and Swakopmund",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Surf spots",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.9411106109619 14.4133920669556 -22.8431720733643 14.5383968353271"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_TOUR_surf_spots"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-31e60428-6d47-11ec-95de-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-31e60428-6d47-11ec-95de-0242ac1c0006.json
index 33fd25d74..ef01934ec 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-31e60428-6d47-11ec-95de-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-31e60428-6d47-11ec-95de-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-31e60428-6d47-11ec-95de-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-31e60428-6d47-11ec-95de-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.196665763855 -23.7200012207031, 12.196665763855 -18.9266662597656, 13.9000005722046 -18.9266662597656, 13.9000005722046 -23.7200012207031, 12.196665763855 -23.7200012207031))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of sardine purse seiners 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.7200012207031 12.196665763855 -18.9266662597656 13.9000005722046"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_sardine_catch_location_2015"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-3245439a-6ec6-11ec-9084-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-3245439a-6ec6-11ec-9084-0242ac1c0006.json
index 53bef448c..46f25b22a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-3245439a-6ec6-11ec-9084-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-3245439a-6ec6-11ec-9084-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-3245439a-6ec6-11ec-9084-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-3245439a-6ec6-11ec-9084-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9.51666641235352 -30.1500015258789, 9.51666641235352 -17.2999992370605, 14.5333337783813 -17.2999992370605, 14.5333337783813 -30.1500015258789, 9.51666641235352 -30.1500015258789))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of short fin mako 2013",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.1500015258789 9.51666641235352 -17.2999992370605 14.5333337783813"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2013"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-3369aec6-6ecd-11ec-a6a0-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-3369aec6-6ecd-11ec-a6a0-0242ac1c0006.json
index 2bed93396..56442a0c5 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-3369aec6-6ecd-11ec-a6a0-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-3369aec6-6ecd-11ec-a6a0-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-3369aec6-6ecd-11ec-a6a0-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-3369aec6-6ecd-11ec-a6a0-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.3166666030884 -27.8000011444092, 10.3166666030884 -17.9333324432373, 14.6166667938232 -17.9333324432373, 14.6166667938232 -27.8000011444092, 10.3166666030884 -27.8000011444092))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of other sharks (fins) 2011",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-27.8000011444092 10.3166666030884 -17.9333324432373 14.6166667938232"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shark_fin_catch_locations_2011"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-3471bb90-f9a4-11eb-af70-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-3471bb90-f9a4-11eb-af70-0242ac1c0006.json
index 726a8fe1b..3d8ef4330 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-3471bb90-f9a4-11eb-af70-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-3471bb90-f9a4-11eb-af70-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-3471bb90-f9a4-11eb-af70-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-3471bb90-f9a4-11eb-af70-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Commercial industry targeting horse mackerel using mid-water trawl.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Horse Mackerel fishery",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Horse_Mackerel"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-34ab017a-687b-11ec-9103-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-34ab017a-687b-11ec-9103-0242ac1c0006.json
index d1ab66ac7..bca9f4706 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-34ab017a-687b-11ec-9103-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-34ab017a-687b-11ec-9103-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-34ab017a-687b-11ec-9103-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-34ab017a-687b-11ec-9103-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.8247537612915 -28.7086925506592, 13.8247537612915 -17.3897972106934, 24.3216743469238 -17.3897972106934, 24.3216743469238 -28.7086925506592, 13.8247537612915 -28.7086925506592))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Townland areas",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Townlands",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.7086925506592 13.8247537612915 -17.3897972106934 24.3216743469238"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_townlands"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-35c37a46-68a4-11ec-9900-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-35c37a46-68a4-11ec-9900-0242ac1c0006.json
index e31608cff..0c6a7ecac 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-35c37a46-68a4-11ec-9900-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-35c37a46-68a4-11ec-9900-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-35c37a46-68a4-11ec-9900-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-35c37a46-68a4-11ec-9900-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.6666994094849 -28.6667003631592, 11.6666994094849 -17.3299999237061, 16.2000102996826 -17.3299999237061, 16.2000102996826 -28.6667003631592, 11.6666994094849 -28.6667003631592))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Oceanographic monitoring stations sampled during hake and monk biomass surveys. Parameters samples include temperature, salinity and oxygen.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Additional monitoring stations",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.6667003631592 11.6666994094849 -17.3299999237061 16.2000102996826"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_RES_additional_monitoring_stations"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-35c95190-694a-11ec-8a8f-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-35c95190-694a-11ec-8a8f-0242ac1c0006.json
index 495ceab8d..f06ccab51 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-35c95190-694a-11ec-8a8f-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-35c95190-694a-11ec-8a8f-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-35c95190-694a-11ec-8a8f-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-35c95190-694a-11ec-8a8f-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((7.677234554696233 -29.97835405565207, 7.677234554696233 -16.5192511983747, 15.512244252128317 -16.5192511983747, 15.512244252128317 -29.97835405565207, 7.677234554696233 -29.97835405565207))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Fishing intensity of midwater trawlers from vessel monitoring systems.\nMETHODS:\n· VMS point location data for all vessels in each of the nine fisheries were collated for the period 2014 – 2017. The data were cleaned, including removal of clear errors (e.g. points on land) and clipped to the study area.\n· Points were converted into a raster density layer, using a kernel density approach. This used a 0.005° cell size and a 0.075° search distance using planar units.\n· Density layers were then iteratively explored using a quantile based approach to identify the cut-off for very low density use areas and areas used for transit only, which for all industries identified the bottom 10% - 15% of used areas as being low use or transit only. The calibration was done on an expert basis. It identified the mean density of transit only zones, and then rounded this value up to the next 5 percentile mark. For the next steps only values above this threshold were evaluated.\n· Remaining areas were then split into 10 quantiles, from lower intensity use to highest\nintensity use.\n· The raster was then converted to a polygon layer.\n· Isolated port and anchorage polygons (which would have had high intensity values as vessels are often found there) were manually identified and exclude from the datasets.\n· The above approach gives a set of 10 intensity of use categories from lower intensity use (1) to highest intensity use (10). The areas deliberately exclude very low use areas.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Fishing intensity of midwater trawlers",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.97835405565207 7.677234554696233 -16.5192511983747 15.512244252128317"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_intensity_midwater0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-35e25f66-0466-11ed-abec-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-35e25f66-0466-11ed-abec-0242ac1c0005.json
index 5662facbe..bfb4d693c 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-35e25f66-0466-11ed-abec-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-35e25f66-0466-11ed-abec-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-35e25f66-0466-11ed-abec-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-35e25f66-0466-11ed-abec-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,1544990539551 -28,6421127319336, 11,1544990539551 -3,94752788543701, 16,4741401672363 -3,94752788543701, 16,4741401672363 -28,6421127319336, 11,1544990539551 -28,6421127319336))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Fonte-Harris, LR 2012. Mapeamento da linha costeira do Grande Ecossistema Marinho da Corrente de Benguela 2011: Empreendido para o projeto da Comissão da Corrente de Benguela (BCC) “Avaliação da Biodiversidade Espacial (BCC-SBA) e Gestão Espacial, incluindo Áreas Marinhas Protegidas”. Universidade Metropolitana Nelson Mandela, Port Elizabeth, África do Sul.",
"keywords": [
- "AGO_OEM_BASE_coastline_missing_pieces",
- "features",
- "Global"
+ "Linha de Costa",
+ "Angola"
],
- "name": "AGO_OEM_BASE_coastline_missing_pieces",
+ "name": "AGO coastline missing pieces 2022",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.6421127319336 11.1544990539551 -3.94752788543701 16.4741401672363"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_coastline_missing_pieces"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-369a06f8-625d-11ec-8943-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-369a06f8-625d-11ec-8943-0242ac1c0006.json
index 537a18eb2..08b0f5e29 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-369a06f8-625d-11ec-8943-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-369a06f8-625d-11ec-8943-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-369a06f8-625d-11ec-8943-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-369a06f8-625d-11ec-8943-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.7344369888306 -24.5075435638428, 13.7344369888306 -21.3312187194824, 14.6161508560181 -21.3312187194824, 14.6161508560181 -24.5075435638428, 13.7344369888306 -24.5075435638428))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Kob spawning areas along the Namibian coast.\nDATA SOURCE: Mendelsohn J, Jarvis A, Roberts C and Robertson T. 2002. Atlas of Namibia: A portrait of the land and its people. David Philip Publishers, Cape Town, South Africa.\nMETHODS: Adapted from a map provided by the Geological Survey of Namibia for the Atlas of Namibia. http://www.the-eis.com/",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Kob spawning areas",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-24.5075435638428 13.7344369888306 -21.3312187194824 14.6161508560181"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_kob_spawning_area1"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-396d13e8-67b2-11ec-aec4-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-396d13e8-67b2-11ec-aec4-0242ac1c0006.json
index 8ea2618eb..242590255 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-396d13e8-67b2-11ec-aec4-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-396d13e8-67b2-11ec-aec4-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-396d13e8-67b2-11ec-aec4-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-396d13e8-67b2-11ec-aec4-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4172496795654 -22.9544429779053, 14.4172496795654 -22.750207901001, 14.4948472976685 -22.750207901001, 14.4948472976685 -22.9544429779053, 14.4172496795654 -22.9544429779053))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas delineated for mariculture.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Mariculture areas WB",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.9544429779053 14.4172496795654 -22.750207901001 14.4948472976685"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MARI_mariculture_areas_WVB"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-399f0f10-f9a3-11eb-bdfe-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-399f0f10-f9a3-11eb-bdfe-0242ac1c0006.json
index c8ae5bcba..477aa1022 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-399f0f10-f9a3-11eb-bdfe-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-399f0f10-f9a3-11eb-bdfe-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-399f0f10-f9a3-11eb-bdfe-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-399f0f10-f9a3-11eb-bdfe-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Commercial pole fishery targeting albacore and yellowfin tuna.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Large pelagic pole fishery (effort)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Large_Pelagic_Pole_Effort"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-39f576ae-6ec2-11ec-812d-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-39f576ae-6ec2-11ec-812d-0242ac1c0006.json
index 3242f229b..61f96112a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-39f576ae-6ec2-11ec-812d-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-39f576ae-6ec2-11ec-812d-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-39f576ae-6ec2-11ec-812d-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-39f576ae-6ec2-11ec-812d-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.96666622161865 -30.1500015258789, 8.96666622161865 -17.2666664123535, 14.5 -17.2666664123535, 14.5 -30.1500015258789, 8.96666622161865 -30.1500015258789))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of swordfish 2013",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.1500015258789 8.96666622161865 -17.2666664123535 14.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_swordfish_catch_location_2013"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-3ab693e2-6d29-11ec-ac37-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-3ab693e2-6d29-11ec-ac37-0242ac1c0006.json
index bf087afd6..baded25f9 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-3ab693e2-6d29-11ec-ac37-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-3ab693e2-6d29-11ec-ac37-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-3ab693e2-6d29-11ec-ac37-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-3ab693e2-6d29-11ec-ac37-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.2333326339722 -29.9333343505859, 11.2333326339722 -17.2666664123535, 14.9833335876465 -17.2666664123535, 14.9833335876465 -29.9333343505859, 11.2333326339722 -29.9333343505859))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations of hake wet fish trawler 2013 as recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake wet fish trawlers 2013",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.9333343505859 11.2333326339722 -17.2666664123535 14.9833335876465"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_wet_catch_location_2013"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-3cc916f6-6193-11ec-8e57-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-3cc916f6-6193-11ec-8e57-0242ac1c0006.json
index 626ee7ca2..0561723c3 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-3cc916f6-6193-11ec-8e57-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-3cc916f6-6193-11ec-8e57-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-3cc916f6-6193-11ec-8e57-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-3cc916f6-6193-11ec-8e57-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.5257692337036 -28.7977275848389, 11.5257692337036 -17.2429466247559, 16.8284358978271 -17.2429466247559, 16.8284358978271 -28.7977275848389, 11.5257692337036 -28.7977275848389))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Territorial waters, in international law, is the area of the sea immediately adjacent to the shores of a state and subject to the territorial jurisdiction of that state. With the negotiation of the 1982 United Nations Law of the Sea Convention, the allowed breadth of a territorial sea claim was extended to 12 nautical miles (22 kilometers).",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Territorial Waters",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.7977275848389 11.5257692337036 -17.2429466247559 16.8284358978271"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_territorial_waters_12nm"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-3e1508ea-63ea-11ec-a1b7-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-3e1508ea-63ea-11ec-a1b7-0242ac1c0006.json
index 70170d775..a8bc79656 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-3e1508ea-63ea-11ec-a1b7-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-3e1508ea-63ea-11ec-a1b7-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-3e1508ea-63ea-11ec-a1b7-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-3e1508ea-63ea-11ec-a1b7-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4732522964478 -28.6335277557373, 14.4732522964478 -18.8321762084961, 16.474048614502 -18.8321762084961, 16.474048614502 -28.6335277557373, 14.4732522964478 -28.6335277557373))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Ramsar wetlands are wetlands of international importance listed under\nthe Convention on Wetlands. The aim of the convention is to halt the worldwide loss of\nwetlands and to conserve those that remain.",
"keywords": [
"Biodiversity",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Ramsar sites",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.6335277557373 14.4732522964478 -18.8321762084961 16.474048614502"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_Ramsar_sites"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-3f9aa5f6-1404-11ed-8992-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-3f9aa5f6-1404-11ed-8992-0242ac1c0005.json
index e3b4d2667..e2039deb8 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-3f9aa5f6-1404-11ed-8992-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-3f9aa5f6-1404-11ed-8992-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-3f9aa5f6-1404-11ed-8992-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-3f9aa5f6-1404-11ed-8992-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10,4137411117554 -8,5845947265625, 10,4137411117554 -5,02650260925293, 13,3964872360229 -5,02650260925293, 13,3964872360229 -8,5845947265625, 10,4137411117554 -8,5845947265625))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Blocos com Instalações petrolíferas. Método- Georreferenciação do Mapa e posterior vectorização dos dados importantes.",
"keywords": [
- "AGO_OEM_PET_BLOCOS_INSTALACOES",
- "features",
- "Global"
+ "Petroleo",
+ "Angola"
],
- "name": "AGO_OEM_PET_BLOCOS_INSTALACOES",
+ "name": "AGO Blocos Com Instalacoes Petroliferas 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-8.5845947265625 10.4137411117554 -5.02650260925293 13.3964872360229"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PET_BLOCOS_INSTALACOES"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-418f9022-f9a4-11eb-b687-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-418f9022-f9a4-11eb-b687-0242ac1c0006.json
index bfced2422..fa02051ce 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-418f9022-f9a4-11eb-b687-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-418f9022-f9a4-11eb-b687-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-418f9022-f9a4-11eb-b687-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-418f9022-f9a4-11eb-b687-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Commercial trawl industry targeting hake species.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Hake commercial trawling (catch)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Hake_Catch"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-41b5ed5c-1407-11ed-9d24-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-41b5ed5c-1407-11ed-9d24-0242ac1c0005.json
index 10843a155..1f5c4087a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-41b5ed5c-1407-11ed-9d24-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-41b5ed5c-1407-11ed-9d24-0242ac1c0005.json
@@ -1,26 +1,22 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-41b5ed5c-1407-11ed-9d24-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-41b5ed5c-1407-11ed-9d24-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,2335958480835 -12,3886842727661, 11,2335958480835 -6,25075197219849, 13,6451063156128 -6,25075197219849, 13,6451063156128 -12,3886842727661, 11,2335958480835 -12,3886842727661))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Espécies Aquáticas. Método- Vectorização das Informações Contida no Relatório.",
"keywords": [
"AGO_OEM_NOR_DAT_MERLUCCIUS_POLLI",
"features",
- "Global"
+ "Angola"
],
- "name": "AGO_OEM_NOR_DAT_MERLUCCIUS_POLLI",
+ "name": "AGO Merluccius Polli 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-12.3886842727661 11.2335958480835 -6.25075197219849 13.6451063156128"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_NOR_DAT_MERLUCCIUS_POLLI"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-42e0283a-5f3c-11ec-b3c9-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-42e0283a-5f3c-11ec-b3c9-0242ac1c0006.json
index c4b19794d..24b098ca6 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-42e0283a-5f3c-11ec-b3c9-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-42e0283a-5f3c-11ec-b3c9-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-42e0283a-5f3c-11ec-b3c9-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-42e0283a-5f3c-11ec-b3c9-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.55008602142334 -30.0833339691162, 8.55008602142334 -17.2500152587891, 14.3753623962402 -17.2500152587891, 14.3753623962402 -30.0833339691162, 8.55008602142334 -30.0833339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Escarpments found in Namibian sea.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/. \nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Escarpments",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.0833339691162 8.55008602142334 -17.2500152587891 14.3753623962402"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_escarpments"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-43c8e0d8-1400-11ed-9439-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-43c8e0d8-1400-11ed-9439-0242ac1c0005.json
index 9534fcefd..2f74934b8 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-43c8e0d8-1400-11ed-9439-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-43c8e0d8-1400-11ed-9439-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-43c8e0d8-1400-11ed-9439-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-43c8e0d8-1400-11ed-9439-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12,0151033401489 -11,0532064437866, 12,0151033401489 -5,03137969970703, 14,0409498214722 -5,03137969970703, 14,0409498214722 -11,0532064437866, 12,0151033401489 -11,0532064437866))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Descrição- Este conjunto de dados mostra a distribuição global de mangais, e foi produzido como uma iniciativa conjunta da International Tropical Timber Organização (ITTO) Organização para Alimentação e Agricultura das Nações Unidas (FAO). O financiamento principal foi fornecido pela ITTO por meio de uma concessão de projecto do governo japonês; o projecto foi implementado pelo ISME.Método- O conjunto de dados foi criado principalmente a partir de imagens de satélite processadas em UNEP-WCMC ou FAO. Para vários países, existente (WCMC-012 (1997)) ou dados recentemente disponíveis (vetor) foram incorporados. A metodologia é detalhada no capítulo 3 de Spalding et al. (2010), que é distribuído com o conjunto de dados (\"WCMC-011-AtlasMangrove2010- Methodology.pdf \").",
"keywords": [
- "AGO_OEM_AMB_MANGAIS",
- "features",
- "Global"
+ "Mangais",
+ "Angola"
],
- "name": "AGO_OEM_AMB_MANGAIS",
+ "name": "AGO Mangais 2003",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-11.0532064437866 12.0151033401489 -5.03137969970703 14.0409498214722"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_AMB_MANGAIS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-43dd0df2-6d33-11ec-8e75-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-43dd0df2-6d33-11ec-8e75-0242ac1c0006.json
index d956d89af..4d11429a0 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-43dd0df2-6d33-11ec-8e75-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-43dd0df2-6d33-11ec-8e75-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-43dd0df2-6d33-11ec-8e75-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-43dd0df2-6d33-11ec-8e75-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.1333332061768 -29.8333339691162, 12.1333332061768 -20.3833332061768, 14.9833335876465 -20.3833332061768, 14.9833335876465 -29.8333339691162, 12.1333332061768 -29.8333339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake long line vessels 2013",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.8333339691162 12.1333332061768 -20.3833332061768 14.9833335876465"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_LL_catch_location_2013"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-4435e2c0-f528-11eb-8a21-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-4435e2c0-f528-11eb-8a21-0242ac1c0006.json
index 468b75b9e..221fa4ec3 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-4435e2c0-f528-11eb-8a21-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-4435e2c0-f528-11eb-8a21-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-4435e2c0-f528-11eb-8a21-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-4435e2c0-f528-11eb-8a21-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "The data reflect the commercial trawl industry targeting Orange Roughy. Due to collapse of the fishery, the industry has been closed since 2007.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Orange Roughy fishery",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Orange_Roughy"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-4445214c-0466-11ed-abfa-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-4445214c-0466-11ed-abfa-0242ac1c0005.json
index 8f64ec88a..4bcf8fa9f 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-4445214c-0466-11ed-abfa-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-4445214c-0466-11ed-abfa-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-4445214c-0466-11ed-abfa-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-4445214c-0466-11ed-abfa-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8,19983768463135 -17,2501811981201, 8,19983768463135 -5,88454723358154, 11,75648021698 -5,88454723358154, 11,75648021698 -17,2501811981201, 8,19983768463135 -17,2501811981201))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Descrição Zona Econômica Exclusiva (ZEE) é uma distância de 200 milhas náuticas (cerca de 370 quilômetros) a partir da costa, que vai além das águas territoriais, distante 12 milhas ou 22 quilômetros da costa. Nesta faixa cada país costeiro tem prioridade para a utilização e proteção dos recursos naturais do mar. Além da exploração e gestão dos recursos naturais, o país costeiro exercerá nesta zona a jurisdição no que concerne ao estabelecimento e utilização de ilhas artificiais, instalações e estruturas e investigação científica marinha.\nAngola detém uma Zona Econômica Exclusiva com extensão de 518.433 Km².Método- Shapefile fornecido",
"keywords": [
- "AGO_OEM_BASE_LIM_ZEE",
- "features",
- "Global"
+ "ZEE",
+ "Angola"
],
- "name": "AGO_OEM_BASE_LIM_ZEE",
+ "name": "AGO Zona Económica Exclusiva 2022",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2501811981201 8.19983768463135 -5.88454723358154 11.75648021698"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_LIM_ZEE"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-44d710a4-6d38-11ec-b1b2-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-44d710a4-6d38-11ec-b1b2-0242ac1c0006.json
index 396610bf0..a7403dae8 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-44d710a4-6d38-11ec-b1b2-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-44d710a4-6d38-11ec-b1b2-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-44d710a4-6d38-11ec-b1b2-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-44d710a4-6d38-11ec-b1b2-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.1833324432373 -29.9833335876465, 11.1833324432373 -17.2666664123535, 14.9833335876465 -17.2666664123535, 14.9833335876465 -29.9833335876465, 11.1833324432373 -29.9833335876465))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake wet fish trawlers 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.9833335876465 11.1833324432373 -17.2666664123535 14.9833335876465"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_wet_catch_location_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-45efa45a-f9a3-11eb-bdfe-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-45efa45a-f9a3-11eb-bdfe-0242ac1c0006.json
index be5b8e406..8f4d0a667 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-45efa45a-f9a3-11eb-bdfe-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-45efa45a-f9a3-11eb-bdfe-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-45efa45a-f9a3-11eb-bdfe-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-45efa45a-f9a3-11eb-bdfe-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Commercial pole fishery targeting albacore and yellowfin tuna.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Large pelagic pole fishery (catch)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Large_Pelagic_Pole_Catch"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-4858858c-6d42-11ec-9b73-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-4858858c-6d42-11ec-9b73-0242ac1c0006.json
index 70ff5cb27..05f25a751 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-4858858c-6d42-11ec-9b73-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-4858858c-6d42-11ec-9b73-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-4858858c-6d42-11ec-9b73-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-4858858c-6d42-11ec-9b73-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.7466659545898 -25.8600006103516, 10.7466659545898 -17.2516651153564, 14.0216674804688 -17.2516651153564, 14.0216674804688 -25.8600006103516, 10.7466659545898 -25.8600006103516))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of horse mackerel trawlers 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-25.8600006103516 10.7466659545898 -17.2516651153564 14.0216674804688"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_horsemackerel_catch_location_201"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-487a4b6a-1402-11ed-9d24-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-487a4b6a-1402-11ed-9d24-0242ac1c0005.json
index af1f7322d..9fc4b7ceb 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-487a4b6a-1402-11ed-9d24-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-487a4b6a-1402-11ed-9d24-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-487a4b6a-1402-11ed-9d24-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-487a4b6a-1402-11ed-9d24-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9,08037948608398 -17,2505397796631, 9,08037948608398 -5,02650260925293, 13,8652963638306 -5,02650260925293, 13,8652963638306 -17,2505397796631, 9,08037948608398 -17,2505397796631))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Blocos Petrolíferos. Método- Georreferenciação do Mapa e posterior vectorização dos dados importantes.",
"keywords": [
- "AGO_OEM_PET_BLOCOS",
- "features",
- "Global"
+ "Petroleo",
+ "Angola"
],
- "name": "AGO_OEM_PET_BLOCOS",
+ "name": "AGO Blocos Petroliferos 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2505397796631 9.08037948608398 -5.02650260925293 13.8652963638306"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PET_BLOCOS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-4a9588fc-6164-11ec-a2ad-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-4a9588fc-6164-11ec-a2ad-0242ac1c0006.json
index 7ca375604..d3ced6768 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-4a9588fc-6164-11ec-a2ad-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-4a9588fc-6164-11ec-a2ad-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-4a9588fc-6164-11ec-a2ad-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-4a9588fc-6164-11ec-a2ad-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.72719764709473 -21.0410385131836, 8.72719764709473 -19.0556144714355, 10.3545665740967 -19.0556144714355, 10.3545665740967 -21.0410385131836, 8.72719764709473 -21.0410385131836))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Plateaus found in the Namibian sea.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/. \nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Plateaus",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-21.0410385131836 8.72719764709473 -19.0556144714355 10.3545665740967"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_plateaus"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-4ef2881e-f9a4-11eb-bdfe-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-4ef2881e-f9a4-11eb-bdfe-0242ac1c0006.json
index f698b8440..4183eae9b 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-4ef2881e-f9a4-11eb-bdfe-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-4ef2881e-f9a4-11eb-bdfe-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-4ef2881e-f9a4-11eb-bdfe-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-4ef2881e-f9a4-11eb-bdfe-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Base data were collated by Dr Carola Kirchner as part of the BCC Spatial Biodiversity Assessment and Spatial Management, including Marine Protected Areas Project, from information held by the National Marine Information and Research Centre (NatMIRC). Effort is given as the number of traps set, and catch in terms of mass (kg). This was normalised into a scale of 0-1, and coded to 5' grid cells.",
"keywords": [
"pressures",
"Namibia"
],
"name": "NAM EBSA Deep sea red crab fishing (effort)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Crab_Effort"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-4f03a822-67b5-11ec-acb9-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-4f03a822-67b5-11ec-acb9-0242ac1c0006.json
index 337a364fa..966fdd840 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-4f03a822-67b5-11ec-acb9-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-4f03a822-67b5-11ec-acb9-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-4f03a822-67b5-11ec-acb9-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-4f03a822-67b5-11ec-acb9-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((15.1558418273926 -26.6017169952393, 15.1558418273926 -26.5939350128174, 15.1641263961792 -26.5939350128174, 15.1641263961792 -26.6017169952393, 15.1558418273926 -26.6017169952393))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas delineated for mariculture",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Mariculture areas in Lüderitz",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.6017169952393 15.1558418273926 -26.5939350128174 15.1641263961792"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MARI_mariculture_areas_LUD"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-51287728-6264-11ec-af9a-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-51287728-6264-11ec-af9a-0242ac1c0006.json
index 97c894018..c8b4f269d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-51287728-6264-11ec-af9a-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-51287728-6264-11ec-af9a-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-51287728-6264-11ec-af9a-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-51287728-6264-11ec-af9a-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.0476665496826 -29.7700004577637, 10.0476665496826 -19.3166656494141, 14.4300003051758 -19.3166656494141, 14.4300003051758 -29.7700004577637, 10.0476665496826 -29.7700004577637))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Orange roughy spawning aggregations in the Namibian EEZ.\nData source: MFMR/NatMIRC",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Orange roughy spawning aggregations",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.7700004577637 10.0476665496826 -19.3166656494141 14.4300003051758"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_orange_roughy_spawning_area1"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-51870bc0-13ea-11ed-b0b5-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-51870bc0-13ea-11ed-b0b5-0242ac1c0005.json
index ead06a783..4d756a954 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-51870bc0-13ea-11ed-b0b5-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-51870bc0-13ea-11ed-b0b5-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-51870bc0-13ea-11ed-b0b5-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-51870bc0-13ea-11ed-b0b5-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((-38,2742500305176 -23,1362800598145, -38,2742500305176 -2,40276980400085, 13,3544645309448 -2,40276980400085, 13,3544645309448 -23,1362800598145, -38,2742500305176 -23,1362800598145))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Cabos e Ductos Submarinos.Método –Transformou-se as coordenadas para graus decimais e a posterior tratou-se os mesmos no Qgis.",
"keywords": [
- "AGO_OEM_INFR_CABOS_COMUNICACAO",
- "features",
- "Global"
+ "Cabos",
+ "Angola"
],
- "name": "AGO_OEM_INFR_CABOS_COMUNICACAO",
+ "name": "AGO Cabos Submarinos 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.1362800598145 -38.2742500305176 -2.40276980400085 13.3544645309448"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_INFR_CABOS_COMUNICACAO"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5233b542-617e-11ec-b3cb-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-5233b542-617e-11ec-b3cb-0242ac1c0006.json
index 23cf5f6d4..30118f7bb 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-5233b542-617e-11ec-b3cb-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5233b542-617e-11ec-b3cb-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-5233b542-617e-11ec-b3cb-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5233b542-617e-11ec-b3cb-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.32918930053711 -30.582160949707, 8.32918930053711 -17.2499980926514, 15.2899007797241 -17.2499980926514, 15.2899007797241 -30.582160949707, 8.32918930053711 -30.582160949707))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Bathymetric depth contours for the world oceans from the General Bathymetric Chart of the Oceans (GEBCO) includes a seamless, global, digital set of the basic contours (200m, 500m, and at 500m intervals thereafter) with contours at intermediate depths also included in some areas, where available. GEBCO is published by the British Oceanographic Data Centre (BODC) on behalf of the Intergovernmental Oceanographic Commission (IOC) of UNESCO and the International Hydrographic Organization (IHO).\nhttps://www.gebco.net/data_and_products",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Bathymetry",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.582160949707 8.32918930053711 -17.2499980926514 15.2899007797241"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_bathymetry_mbsl"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-52c1c57c-67e5-11ec-b928-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-52c1c57c-67e5-11ec-b928-0242ac1c0006.json
index 0a6187ac2..ace96a45a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-52c1c57c-67e5-11ec-b928-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-52c1c57c-67e5-11ec-b928-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-52c1c57c-67e5-11ec-b928-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-52c1c57c-67e5-11ec-b928-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.7518396377563 -28.5142555236816, 11.7518396377563 -17.135274887085, 16.6416511535645 -17.135274887085, 16.6416511535645 -28.5142555236816, 11.7518396377563 -28.5142555236816))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Dunes along the coast of Namibia.\nDATA SOURCE: De Cauwer, V. 2007. Mapping of the BCLME shoreline, shallow water and marine habitats. Final report for the BCLME project BEP/BAC/03/02 \nMETHODS: The high sand dune areas in the Namib desert were digitised up to about 50\nkm inland. Landsat images of 2000 were the main source, the topographic maps were\nused in a lesser extent and mainly where in doubt on the Landsat images.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Dunes along the coast of Namibia",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.5142555236816 11.7518396377563 -17.135274887085 16.6416511535645"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_TOUR_dunes"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-52f0aa16-68af-11ec-aa0b-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-52f0aa16-68af-11ec-aa0b-0242ac1c0006.json
index 86870df2a..e52982d18 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-52f0aa16-68af-11ec-aa0b-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-52f0aa16-68af-11ec-aa0b-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-52f0aa16-68af-11ec-aa0b-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-52f0aa16-68af-11ec-aa0b-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((7.677234554696233 -29.97835405565207, 7.677234554696233 -16.5192511983747, 15.512244252128317 -16.5192511983747, 15.512244252128317 -29.97835405565207, 7.677234554696233 -29.97835405565207))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Fishing intensity of hake fishing vessels (trawling)\nMETHODS:\n· VMS point location data for all vessels in each of the nine fisheries were collated for the period 2014 – 2017. The data were cleaned, including removal of clear errors (e.g. points on land) and clipped to the study area.\n· Points were converted into a raster density layer, using a kernel density approach. This used a 0.005° cell size and a 0.075° search distance using planar units.\n· Density layers were then iteratively explored using a quantile based approach to identify the cut-off for very low density use areas and areas used for transit only, which for all industries identified the bottom 10% - 15% of used areas as being low use or transit only. The calibration was done on an expert basis. It identified the mean density of transit only zones, and then rounded this value up to the next 5 percentile mark. For the next steps only values above this threshold were evaluated.\n· Remaining areas were then split into 10 quantiles, from lower intensity use to highest\nintensity use.\n· The raster was then converted to a polygon layer.\n· Isolated port and anchorage polygons (which would have had high intensity values as vessels are often found there) were manually identified and exclude from the datasets.\n· The above approach gives a set of 10 intensity of use categories from lower intensity use (1) to highest intensity use (10). The areas deliberately exclude very low use areas.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Fishing intensity for hake trawlers",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.97835405565207 7.677234554696233 -16.5192511983747 15.512244252128317"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_intensity_hake_wet_freeze0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-535dcf04-f9a3-11eb-987c-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-535dcf04-f9a3-11eb-987c-0242ac1c0006.json
index 92b9a6b8d..01cb24bfd 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-535dcf04-f9a3-11eb-987c-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-535dcf04-f9a3-11eb-987c-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-535dcf04-f9a3-11eb-987c-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-535dcf04-f9a3-11eb-987c-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Commercial longline industry targeting tunas, swordfish, sharks and other large pelagic groups.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Large pelagic longline fishing (effort)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Longline_Effort"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-55c239e8-688d-11ec-bf0e-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-55c239e8-688d-11ec-bf0e-0242ac1c0006.json
index 113579a27..e6fb1343d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-55c239e8-688d-11ec-bf0e-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-55c239e8-688d-11ec-bf0e-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-55c239e8-688d-11ec-bf0e-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-55c239e8-688d-11ec-bf0e-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.2829999923706 -28.0, 11.2829999923706 -18.0, 15.6833000183105 -18.0, 15.6833000183105 -28.0, 11.2829999923706 -28.0))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Oceanographic monitoring stations sampled using the research vessel Mirabilis or other vessels of opportunity. Parameters samples include temperature, salinity, oxygen, phytoplankton and zooplankton.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Monitoring lines",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.0 11.2829999923706 -18.0 15.6833000183105"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_RES_monitoring_lines"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-563ad6fc-6d45-11ec-98fd-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-563ad6fc-6d45-11ec-98fd-0242ac1c0006.json
index e59bf69da..74791aa33 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-563ad6fc-6d45-11ec-98fd-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-563ad6fc-6d45-11ec-98fd-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-563ad6fc-6d45-11ec-98fd-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-563ad6fc-6d45-11ec-98fd-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.9333324432373 -25.8511123657227, 10.9333324432373 -17.2680549621582, 14.1347227096558 -17.2680549621582, 14.1347227096558 -25.8511123657227, 10.9333324432373 -25.8511123657227))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of horse mackerel trawlers 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-25.8511123657227 10.9333324432373 -17.2680549621582 14.1347227096558"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_horsemackerel_catch_location_2013"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-566ba942-6ec3-11ec-9210-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-566ba942-6ec3-11ec-9210-0242ac1c0006.json
index 15bacb4dc..f50ca000d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-566ba942-6ec3-11ec-9210-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-566ba942-6ec3-11ec-9210-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-566ba942-6ec3-11ec-9210-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-566ba942-6ec3-11ec-9210-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.31666660308838 -29.7833347320557, 8.31666660308838 -17.25, 14.3166675567627 -17.25, 14.3166675567627 -29.7833347320557, 8.31666660308838 -29.7833347320557))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of swordfish 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.7833347320557 8.31666660308838 -17.25 14.3166675567627"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_swordfish_catch_location_2015"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5678020c-13ee-11ed-b0b5-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-5678020c-13ee-11ed-b0b5-0242ac1c0005.json
index 50c0759bb..7d79890bf 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-5678020c-13ee-11ed-b0b5-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5678020c-13ee-11ed-b0b5-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-5678020c-13ee-11ed-b0b5-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5678020c-13ee-11ed-b0b5-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,7324094772339 -17,2693710327148, 11,7324094772339 -9,17305946350098, 14,083890914917 -9,17305946350098, 14,083890914917 -17,2693710327148, 11,7324094772339 -17,2693710327148))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Os bancos de dados contêm áreas protegidas e OECMs designados em nível nacional e no âmbito de convenções e acordos regionais e internacionais, além daqueles não designado legalmente. As designações internacionais incluem aquelas sob a Convenção do Patrimônio Mundial (Nações Unidas para a Educação, a Ciência e Organização Cultural, UNESCO), e locais sob a Biosfera da UNESCO Programa (MAB). Método- áreas protegidas no WDPA foram obtidas de quase 500 origens. Junto com as informações sobre o verificador de dados, essas fontes estão listadas na tabela de origem (\"WDPA_Source_Table\") incluída em cada versão mensal. Dados para áreas protegidas designadas sob acordos e convenções internacionais são frequentemente provenientes dos secretariados de convenções relevantes.",
"keywords": [
- "AGO_OEM_AMB_AREASPROTEGIDAS",
- "features",
- "Global"
+ "area",
+ "Angola"
],
- "name": "AGO_OEM_AMB_AREASPROTEGIDAS",
+ "name": "AGO Areas Protegidas 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2693710327148 11.7324094772339 -9.17305946350098 14.083890914917"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_AMB_AREASPROTEGIDAS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-57361e5a-0466-11ed-9405-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-57361e5a-0466-11ed-9405-0242ac1c0005.json
index 24dcb95c0..f9a3efc65 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-57361e5a-0466-11ed-9405-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-57361e5a-0466-11ed-9405-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-57361e5a-0466-11ed-9405-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-57361e5a-0466-11ed-9405-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,6689491271973 -17,2513294219971, 11,6689491271973 -5,03156852722168, 13,7966966629028 -5,03156852722168, 13,7966966629028 -17,2513294219971, 11,6689491271973 -17,2513294219971))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Linha de Base.Método-Shapefile fornecido pelo CIDEMA",
"keywords": [
- "AGO_OEM_BASE_LINHA_BASE",
- "features",
- "Global"
+ "Linha",
+ "Angola"
],
- "name": "AGO_OEM_BASE_LINHA_BASE",
+ "name": "AGO Linha de Base 2022",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2513294219971 11.6689491271973 -5.03156852722168 13.7966966629028"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_LINHA_BASE"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-57da6a96-149c-11ed-950c-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-57da6a96-149c-11ed-950c-0242ac1c0005.json
index 8de6bf0c0..5db17a9b8 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-57da6a96-149c-11ed-950c-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-57da6a96-149c-11ed-950c-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-57da6a96-149c-11ed-950c-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-57da6a96-149c-11ed-950c-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((3,0 -20,0, 3,0 -2,0, 13,4973001480103 -2,0, 13,4973001480103 -20,0, 3,0 -20,0))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Em geral a batimetria da costa angolana é caracterizada pela plataforma continental que varia em profundidade. O declive da plataforma ocorre a cerca de 30 a 40km da costa, partir destas profundidades. O acidente mais notável na batimetria ao largo da costa angolana é pronunciado pelo canhão existente na foz do rio congo. Método-Downloud do Shapefile compartilhado de Lisa Sousa e Roman GIZ NA.",
"keywords": [
- "AGO_OEM_BASE_BAT",
- "features",
- "Global"
+ "Batimetria",
+ "Angola"
],
- "name": "AGO_OEM_BASE_BAT0",
+ "name": "AGO Batimetria 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-20.0 3.0 -2.0 13.4973001480103"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_BAT0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5a777e2e-63c1-11ec-a7fe-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-5a777e2e-63c1-11ec-a7fe-0242ac1c0006.json
index b1339590e..8ad192b44 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-5a777e2e-63c1-11ec-a7fe-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5a777e2e-63c1-11ec-a7fe-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-5a777e2e-63c1-11ec-a7fe-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5a777e2e-63c1-11ec-a7fe-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.65106201171875 -30.5857734680176, 8.65106201171875 -16.2845668792725, 16.6999702453613 -16.2845668792725, 16.6999702453613 -30.5857734680176, 8.65106201171875 -30.5857734680176))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Ecologically or Biologically Significant Marine Areas (EBSA) are regarded as priority areas with ecological properties within our ocean space and require special management of human activities.",
"keywords": [
"Current Status Report",
@@ -23,5 +12,12 @@
"Namibia"
],
"name": "NAM CSR Ecologically or Biologically Significant Marine Areas (EBSA)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.5857734680176 8.65106201171875 -16.2845668792725 16.6999702453613"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_Eco_Bio_Sign_Areas0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5b3f2a52-2921-11ed-bc6d-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-5b3f2a52-2921-11ed-bc6d-0242ac1c0005.json
new file mode 100644
index 000000000..686649564
--- /dev/null
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5b3f2a52-2921-11ed-bc6d-0242ac1c0005.json
@@ -0,0 +1,21 @@
+{
+ "@context": {
+ "@vocab": "https://schema.org/"
+ },
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5b3f2a52-2921-11ed-bc6d-0242ac1c0005.json",
+ "@type": "Dataset",
+ "description": "Poços Petrolíferos Método- Georreferenciação do Mapa e posterior vectorização dos dados importantes.",
+ "keywords": [
+ "Petroleo",
+ "Angola"
+ ],
+ "name": "AGO Pocos 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-90.0 -180.0 90.0 180.0"
+ }
+ },
+ "url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PET_POCOS"
+}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5bacc088-63ee-11ec-abe8-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-5bacc088-63ee-11ec-abe8-0242ac1c0006.json
index daac045b2..5c79cd876 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-5bacc088-63ee-11ec-abe8-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5bacc088-63ee-11ec-abe8-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-5bacc088-63ee-11ec-abe8-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5bacc088-63ee-11ec-abe8-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.107731852918132 -29.592270007797204, 11.107731852918132 -16.715054773738782, 26.19843255070696 -16.715054773738782, 26.19843255070696 -29.592270007797204, 11.107731852918132 -29.592270007797204))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Spatial allocation of exclusive prospecting licences within Namibia. Where an EPL is awarded it is assumed that prospecting is carried out.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Exclusive prospecting licences",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.592270007797204 11.107731852918132 -16.715054773738782 26.19843255070696"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_Explo_Pros_Lice"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5beb3dcc-f9a4-11eb-bdfe-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-5beb3dcc-f9a4-11eb-bdfe-0242ac1c0006.json
index fc90c1aef..3ffef041f 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-5beb3dcc-f9a4-11eb-bdfe-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5beb3dcc-f9a4-11eb-bdfe-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-5beb3dcc-f9a4-11eb-bdfe-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5beb3dcc-f9a4-11eb-bdfe-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Base data were collated by Dr Carola Kirchner as part of the BCC Spatial Biodiversity Assessment and Spatial Management, including Marine Protected Areas Project, from information held by the National Marine Information and Research Centre (NatMIRC). This was normalised into a scale of 0-1, and coded to 5' grid cells.",
"keywords": [
"pressures",
"Namibia"
],
"name": "NAM EBSA Deep sea red crab fishing (catch)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Crab_Catch"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5c5aac70-6182-11ec-a394-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-5c5aac70-6182-11ec-a394-0242ac1c0006.json
index 5de3b032f..3aee61c75 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-5c5aac70-6182-11ec-a394-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5c5aac70-6182-11ec-a394-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-5c5aac70-6182-11ec-a394-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5c5aac70-6182-11ec-a394-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.7367706298828 -28.9695911407471, 11.7367706298828 -16.9637126922607, 25.2621803283691 -16.9637126922607, 25.2621803283691 -28.9695911407471, 11.7367706298828 -28.9695911407471))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Gazetted constituency boundaries as per the Delimitation Commission of 2013.\nDATA SOURCE: Ministry of Land Reform, available via NSDI.\nMETHODS: Boundaries captured by the Delimitation Commission in 2013, constituencies were dissolved into regions",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR (Regional) Administrative Boundaries",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.9695911407471 11.7367706298828 -16.9637126922607 25.2621803283691"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_ADMIN_region_boundaries_20140"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5d41b66e-e71b-11ec-aeac-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-5d41b66e-e71b-11ec-aeac-0242ac1c0006.json
index beef1ba95..f2c1e94cd 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-5d41b66e-e71b-11ec-aeac-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5d41b66e-e71b-11ec-aeac-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-5d41b66e-e71b-11ec-aeac-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5d41b66e-e71b-11ec-aeac-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.641861996291713 -18.105003314512683, 11.641861996291713 -4.293597438621827, 24.362327600695224 -4.293597438621827, 24.362327600695224 -18.105003314512683, 11.641861996291713 -18.105003314512683))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Fonte: Ministério da administração do\nterritório",
"keywords": [
"AGO_OEM_BASE_PROV",
@@ -22,5 +11,12 @@
"Global"
],
"name": "AGO_OEM_BASE_PROV",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-18.105003314512683 11.641861996291713 -4.293597438621827 24.362327600695224"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_PROV"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-5ff09b5c-f9a3-11eb-81c3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-5ff09b5c-f9a3-11eb-81c3-0242ac1c0006.json
index b7314deaa..31415b889 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-5ff09b5c-f9a3-11eb-81c3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-5ff09b5c-f9a3-11eb-81c3-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-5ff09b5c-f9a3-11eb-81c3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-5ff09b5c-f9a3-11eb-81c3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Commercial longline industry targeting tunas, swordfish, sharks and other large pelagic groups.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Large pelagic longline fishing (catch)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Longline_Catch"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-60a7de9e-6941-11ec-b05d-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-60a7de9e-6941-11ec-b05d-0242ac1c0006.json
index 7b1c7f405..08368615d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-60a7de9e-6941-11ec-b05d-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-60a7de9e-6941-11ec-b05d-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-60a7de9e-6941-11ec-b05d-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-60a7de9e-6941-11ec-b05d-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((7.677234554696233 -29.97835405565207, 7.677234554696233 -16.5192511983747, 15.512244252128317 -16.5192511983747, 15.512244252128317 -29.97835405565207, 7.677234554696233 -29.97835405565207))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Fishing intensity of monk and sole vessels from vessel monitoring systems.\nMETHODS:\n· VMS point location data for all vessels in each of the nine fisheries were collated for the period 2014 – 2017. The data were cleaned, including removal of clear errors (e.g. points on land) and clipped to the study area.\n· Points were converted into a raster density layer, using a kernel density approach. This used a 0.005° cell size and a 0.075° search distance using planar units.\n· Density layers were then iteratively explored using a quantile based approach to identify the cut-off for very low density use areas and areas used for transit only, which for all industries identified the bottom 10% - 15% of used areas as being low use or transit only. The calibration was done on an expert basis. It identified the mean density of transit only zones, and then rounded this value up to the next 5 percentile mark. For the next steps only values above this threshold were evaluated.\n· Remaining areas were then split into 10 quantiles, from lower intensity use to highest\nintensity use.\n· The raster was then converted to a polygon layer.\n· Isolated port and anchorage polygons (which would have had high intensity values as vessels are often found there) were manually identified and exclude from the datasets.\n· The above approach gives a set of 10 intensity of use categories from lower intensity use (1) to highest intensity use (10). The areas deliberately exclude very low use areas.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Fishing intensity of monk and sole vessels",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.97835405565207 7.677234554696233 -16.5192511983747 15.512244252128317"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_intensity_MonkSole0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-61dd854a-6877-11ec-9103-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-61dd854a-6877-11ec-9103-0242ac1c0006.json
index a49be74a3..fe54fd538 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-61dd854a-6877-11ec-9103-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-61dd854a-6877-11ec-9103-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-61dd854a-6877-11ec-9103-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-61dd854a-6877-11ec-9103-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.5669832229614 -28.587121963501, 14.5669832229614 -22.4623432159424, 16.4453830718994 -22.4623432159424, 16.4453830718994 -28.587121963501, 14.5669832229614 -28.587121963501))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Airports along the central Namibian coast.\nDATA SOURCE: Mendelsohn J, Jarvis A, Roberts C and Robertson T. 2002. Atlas of Namibia:\nA portrait of the land and its people. David Philip Publishers, Cape Town, South Africa.\n(www.the-eis.com)",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Airports",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.587121963501 14.5669832229614 -22.4623432159424 16.4453830718994"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_LI_airports_coast"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-622cedb4-6d46-11ec-b923-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-622cedb4-6d46-11ec-b923-0242ac1c0006.json
index 4e0835957..814a391d5 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-622cedb4-6d46-11ec-b923-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-622cedb4-6d46-11ec-b923-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-622cedb4-6d46-11ec-b923-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-622cedb4-6d46-11ec-b923-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.533332824707 -24.2233333587646, 11.533332824707 -18.6366653442383, 14.5033340454102 -18.6366653442383, 14.5033340454102 -24.2233333587646, 11.533332824707 -24.2233333587646))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of sardine purse seiners 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-24.2233333587646 11.533332824707 -18.6366653442383 14.5033340454102"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_sardine_catch_location_20130"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-62f90974-5f3d-11ec-8ad6-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-62f90974-5f3d-11ec-8ad6-0242ac1c0006.json
index 37d979c27..032502db1 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-62f90974-5f3d-11ec-8ad6-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-62f90974-5f3d-11ec-8ad6-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-62f90974-5f3d-11ec-8ad6-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-62f90974-5f3d-11ec-8ad6-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.54186916351318 -20.6785907745361, 8.54186916351318 -17.7255039215088, 9.86977386474609 -17.7255039215088, 9.86977386474609 -20.6785907745361, 8.54186916351318 -20.6785907745361))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Seamounts found in the Namibian sea.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/. \nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Seamounts",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-20.6785907745361 8.54186916351318 -17.7255039215088 9.86977386474609"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_seamounts"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-65d416a6-6880-11ec-8955-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-65d416a6-6880-11ec-8955-0242ac1c0006.json
index b50fc1653..b64b86241 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-65d416a6-6880-11ec-8955-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-65d416a6-6880-11ec-8955-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-65d416a6-6880-11ec-8955-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-65d416a6-6880-11ec-8955-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.0407390594482 -26.7043724060059, 13.0407390594482 -19.9704399108887, 15.5358190536499 -19.9704399108887, 15.5358190536499 -26.7043724060059, 13.0407390594482 -26.7043724060059))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Coastal water supply lines",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Water supply lines",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.7043724060059 13.0407390594482 -19.9704399108887 15.5358190536499"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_LI_water_supply_lines"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-6956355c-f9a4-11eb-b70f-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-6956355c-f9a4-11eb-b70f-0242ac1c0006.json
index 54c46203d..f6b3f0b5a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-6956355c-f9a4-11eb-b70f-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-6956355c-f9a4-11eb-b70f-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-6956355c-f9a4-11eb-b70f-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-6956355c-f9a4-11eb-b70f-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Coastal land transformation maps generated by Vera De Cauwer as part of the BCLME Physical mapping project were the base data. The mapping was based on orthophotos, satellite imagery and topographic maps, and gives an indication of any human transformation in the coastal area, e.g. roads, mines or settlements. The layer is now very dated especially considering that rapid urban expansion has occurred over the last few years in certain areas, such as between Swakopmund and Walvis Bay. In addition, the original data layer was based on datasets that were already dated at the time and in many cases incomplete. The data were reclassified and presented as a coastal development score of 0-1, per 5' grid cell.",
"keywords": [
"pressures",
"Namibia"
],
"name": "NAM EBSA Coastal Development",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Coastal_Development"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-6b3e55be-632d-11ec-99dd-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-6b3e55be-632d-11ec-99dd-0242ac1c0006.json
index 48052b9b9..e57718893 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-6b3e55be-632d-11ec-99dd-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-6b3e55be-632d-11ec-99dd-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-6b3e55be-632d-11ec-99dd-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-6b3e55be-632d-11ec-99dd-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.7014856338501 -28.6604957580566, 11.7014856338501 -17.2431449890137, 16.4535465240479 -17.2431449890137, 16.4535465240479 -28.6604957580566, 11.7014856338501 -28.6604957580566))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas permitted for shore-based recreational fishing and boat-based line fishing (as per Gazette 2657) were redrawn in 2020 by the MARISMA project.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Areas permitted for shore-based recreational fishing and boat-based line fishing",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.6604957580566 11.7014856338501 -17.2431449890137 16.4535465240479"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_prohibited_permitted_recreationa"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-6c7fcfe4-625f-11ec-bf54-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-6c7fcfe4-625f-11ec-bf54-0242ac1c0006.json
index e02019f73..197e5aedd 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-6c7fcfe4-625f-11ec-bf54-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-6c7fcfe4-625f-11ec-bf54-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-6c7fcfe4-625f-11ec-bf54-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-6c7fcfe4-625f-11ec-bf54-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.575234413147 -27.0369625091553, 11.575234413147 -18.5127296447754, 15.1244812011719 -18.5127296447754, 15.1244812011719 -27.0369625091553, 11.575234413147 -27.0369625091553))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Distribution of monk spawning areas.\nMETHODS: Gonad stages collected during scientific surveys.\nData supplied by MFMR/NatMIRC",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Monk spawning areas",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-27.0369625091553 11.575234413147 -18.5127296447754 15.1244812011719"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_monk_spawning_area1"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-707d1fa6-5f3b-11ec-955d-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-707d1fa6-5f3b-11ec-955d-0242ac1c0006.json
index fe0bf3b61..9c6b6ddef 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-707d1fa6-5f3b-11ec-955d-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-707d1fa6-5f3b-11ec-955d-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-707d1fa6-5f3b-11ec-955d-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-707d1fa6-5f3b-11ec-955d-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.72129344940186 -30.2567806243896, 8.72129344940186 -17.437047958374, 15.0409250259399 -17.437047958374, 15.0409250259399 -30.2567806243896, 8.72129344940186 -30.2567806243896))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Canyons found in the Namibian sea.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/. \nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Canyons",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.2567806243896 8.72129344940186 -17.437047958374 15.0409250259399"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_canyons"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-7088e576-6886-11ec-acef-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-7088e576-6886-11ec-acef-0242ac1c0006.json
index 10d3f5c5d..f30c36abb 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-7088e576-6886-11ec-acef-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-7088e576-6886-11ec-acef-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-7088e576-6886-11ec-acef-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-7088e576-6886-11ec-acef-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.2585573196411 -23.0116901397705, 14.2585573196411 -22.0955791473389, 14.5189409255981 -22.0955791473389, 14.5189409255981 -23.0116901397705, 14.2585573196411 -23.0116901397705))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "The DAWF regularly conducts water quality and quantity monitoring throughout the Namibian coastline to ascertain the quality of effluent being discharged into the Atlantic Ocean. Parameters monitored include ammonia, nitrate, dissolved oxygen and dissolved solids.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Industrial effluent discharge points",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.0116901397705 14.2585573196411 -22.0955791473389 14.5189409255981"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_WA_effluent_discharge_central_DWAF_20"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-70acd836-67d8-11ec-9dbb-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-70acd836-67d8-11ec-9dbb-0242ac1c0006.json
index a88638a4d..1ec75c7cb 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-70acd836-67d8-11ec-9dbb-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-70acd836-67d8-11ec-9dbb-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-70acd836-67d8-11ec-9dbb-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-70acd836-67d8-11ec-9dbb-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4500017166138 -22.9116802215576, 14.4500017166138 -22.8116588592529, 14.5275440216064 -22.8116588592529, 14.5275440216064 -22.9116802215576, 14.4500017166138 -22.9116802215576))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas delineated as anchorage areas in the Walvis Bay port.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Anchorage areas",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.9116802215576 14.4500017166138 -22.8116588592529 14.5275440216064"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_anchorage_area_WVB"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-71c4aeae-6ec4-11ec-bef2-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-71c4aeae-6ec4-11ec-bef2-0242ac1c0006.json
index 26d244a87..2449eb344 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-71c4aeae-6ec4-11ec-bef2-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-71c4aeae-6ec4-11ec-bef2-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-71c4aeae-6ec4-11ec-bef2-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-71c4aeae-6ec4-11ec-bef2-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.73333263397217 -30.3666667938232, 8.73333263397217 -17.3999996185303, 15.3500003814697 -17.3999996185303, 15.3500003814697 -30.3666667938232, 8.73333263397217 -30.3666667938232))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of short fin mako 2010",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3666667938232 8.73333263397217 -17.3999996185303 15.3500003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2010"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-73f76f78-6310-11ec-ab81-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-73f76f78-6310-11ec-ab81-0242ac1c0006.json
index 04585454d..919fbce5c 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-73f76f78-6310-11ec-ab81-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-73f76f78-6310-11ec-ab81-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-73f76f78-6310-11ec-ab81-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-73f76f78-6310-11ec-ab81-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.4404048919678 -29.6687297821045, 11.4404048919678 -17.2431449890137, 16.4518775939941 -17.2431449890137, 16.4518775939941 -29.6687297821045, 11.4404048919678 -29.6687297821045))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Restricted areas for trawling, long lining or recreational fishing along the Namibia coast.\nDATA SOURCE: De Cauwer, V. 2007. Mapping of the BCLME shoreline, shallow water and marine habitats. Final report for the BCLME project BEP/BAC/03/02 Government Gazette 2657, December 2007 (The areas restricted to trawling and longlining have been published in Government Gazette 5721, April 2015, before they were a condition attached to fishing licences). Areas prohibited for shore-based recreational fishing and boat-based line fishing (as per Gazette 2657) were redrawn in 2020 by the MARISMA project.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Restricted areas for fishing",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.6687297821045 11.4404048919678 -17.2431449890137 16.4518775939941"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_areas_restricted_to_fishing1"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-7733b2d6-1400-11ed-96bf-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-7733b2d6-1400-11ed-96bf-0242ac1c0005.json
index a545d00e1..0a477a413 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-7733b2d6-1400-11ed-96bf-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-7733b2d6-1400-11ed-96bf-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-7733b2d6-1400-11ed-96bf-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-7733b2d6-1400-11ed-96bf-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13,1522798538208 -10,3660001754761, 13,1522798538208 -9,17305946350098, 14,083890914917 -9,17305946350098, 14,083890914917 -10,3660001754761, 13,1522798538208 -10,3660001754761))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Parque da Quissama.Método-Digitalização dos dados Levantados em Campo.",
"keywords": [
- "AGO_OEM_AMB_PARQ_QUISSAMA",
- "features",
- "Global"
+ "Parque",
+ "Angola"
],
- "name": "AGO_OEM_AMB_PARQ_QUISSAMA",
+ "name": "AGO Parque Quissama 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-10.3660001754761 13.1522798538208 -9.17305946350098 14.083890914917"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_AMB_PARQ_QUISSAMA"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-77ea1458-1401-11ed-9439-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-77ea1458-1401-11ed-9439-0242ac1c0005.json
index 4802754a5..c63622ddc 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-77ea1458-1401-11ed-9439-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-77ea1458-1401-11ed-9439-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-77ea1458-1401-11ed-9439-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-77ea1458-1401-11ed-9439-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,8638191223145 -15,8016328811646, 11,8638191223145 -6,16677236557007, 13,9958343505859 -6,16677236557007, 13,9958343505859 -15,8016328811646, 11,8638191223145 -15,8016328811646))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Estrada Nacional .Método- Shapefile Baixado",
"keywords": [
- "AGO_OEM_TRANS_EN100",
- "features",
- "Global"
+ "Estrada",
+ "Angola"
],
- "name": "AGO_OEM_TRANS_EN100",
+ "name": "AGO Estrada Nacional100 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-15.8016328811646 11.8638191223145 -6.16677236557007 13.9958343505859"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_TRANS_EN100"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-7bc2d3c4-630a-11ec-afbe-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-7bc2d3c4-630a-11ec-afbe-0242ac1c0006.json
index 3dfa41ade..a319e8407 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-7bc2d3c4-630a-11ec-afbe-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-7bc2d3c4-630a-11ec-afbe-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-7bc2d3c4-630a-11ec-afbe-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-7bc2d3c4-630a-11ec-afbe-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4014844894409 -22.7500743865967, 14.4014844894409 -22.3997135162354, 14.529598236084 -22.3997135162354, 14.529598236084 -22.7500743865967, 14.4014844894409 -22.7500743865967))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas along the the central Namibian coast which are important operating areas for ski boats launching in Swakopmund",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Ski boat areas",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.7500743865967 14.4014844894409 -22.3997135162354 14.529598236084"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_skiboat_areas1"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-7dc46be4-6d44-11ec-95de-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-7dc46be4-6d44-11ec-95de-0242ac1c0006.json
index aa4dcdde7..2c444bc51 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-7dc46be4-6d44-11ec-95de-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-7dc46be4-6d44-11ec-95de-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-7dc46be4-6d44-11ec-95de-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-7dc46be4-6d44-11ec-95de-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10.0019435882568 -24.9505558013916, 10.0019435882568 -17.2505550384521, 14.0166673660278 -17.2505550384521, 14.0166673660278 -24.9505558013916, 10.0019435882568 -24.9505558013916))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of horse mackerel trawlers 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-24.9505558013916 10.0019435882568 -17.2505550384521 14.0166673660278"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_horsemackerel_catch_location_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-7e9f376a-6d3a-11ec-b1b2-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-7e9f376a-6d3a-11ec-b1b2-0242ac1c0006.json
index e029c5a5d..dd940b0bd 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-7e9f376a-6d3a-11ec-b1b2-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-7e9f376a-6d3a-11ec-b1b2-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-7e9f376a-6d3a-11ec-b1b2-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-7e9f376a-6d3a-11ec-b1b2-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.283332824707 -29.9166679382324, 11.283332824707 -17.5, 14.9166669845581 -17.5, 14.9166669845581 -29.9166679382324, 11.283332824707 -29.9166679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake wet fish trawlers 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.9166679382324 11.283332824707 -17.5 14.9166669845581"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_wet_catch_location_2015"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-7f439cfa-67d7-11ec-82c3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-7f439cfa-67d7-11ec-82c3-0242ac1c0006.json
index fbebfe46c..fdd4ec7ed 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-7f439cfa-67d7-11ec-82c3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-7f439cfa-67d7-11ec-82c3-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-7f439cfa-67d7-11ec-82c3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-7f439cfa-67d7-11ec-82c3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4712438583374 -22.959156036377, 14.4712438583374 -22.9167633056641, 14.4955530166626 -22.9167633056641, 14.4955530166626 -22.959156036377, 14.4712438583374 -22.959156036377))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Area delineated as anchorage areas for recreational crafts in the Walvis Bay port.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Anchorage area for recreational crafts",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.959156036377 14.4712438583374 -22.9167633056641 14.4955530166626"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_recreational_crafts_anchorage_are"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-80c2a036-1401-11ed-8992-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-80c2a036-1401-11ed-8992-0242ac1c0005.json
index c42647baf..22239dfe1 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-80c2a036-1401-11ed-8992-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-80c2a036-1401-11ed-8992-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-80c2a036-1401-11ed-8992-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-80c2a036-1401-11ed-8992-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8,61778450012207 -17,2505416870117, 8,61778450012207 -5,06278133392334, 13,5122194290161 -5,06278133392334, 13,5122194290161 -17,2505416870117, 8,61778450012207 -17,2505416870117))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Rotas Internacionais .Método-Tratamento na raster de Intensidade de tráfego.",
"keywords": [
- "AGO_OEM_TRANS_ROTAS",
- "features",
- "Global"
+ "Rotas",
+ "Angola"
],
- "name": "AGO_OEM_TRANS_ROTAS",
+ "name": "AGO Corredores Maritimos 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2505416870117 8.61778450012207 -5.06278133392334 13.5122194290161"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_TRANS_ROTAS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-819436d6-1407-11ed-ba29-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-819436d6-1407-11ed-ba29-0242ac1c0005.json
index 05c5a2c94..fdd5b0b0d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-819436d6-1407-11ed-ba29-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-819436d6-1407-11ed-ba29-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-819436d6-1407-11ed-ba29-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-819436d6-1407-11ed-ba29-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,3860025405884 -8,86730289459229, 11,3860025405884 -6,22924089431763, 13,0812463760376 -6,22924089431763, 13,0812463760376 -8,86730289459229, 11,3860025405884 -8,86730289459229))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Espécies Aquáticas. Método- Vectorização das Informações Contida no Relatório.",
"keywords": [
- "AGO_OEM_NOR_DAT_PARAPENAEUS_LONGIROSTRIS",
- "features",
- "Global"
+ "Peixe",
+ "Angola"
],
- "name": "AGO_OEM_NOR_DAT_PARAPENAEUS_LONGIROSTRIS",
+ "name": "AGO Parapenaeus Longirostris 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-8.86730289459229 11.3860025405884 -6.22924089431763 13.0812463760376"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_NOR_DAT_PARAPENAEUS_LONGIROSTRIS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-8309bf8e-6874-11ec-8561-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-8309bf8e-6874-11ec-8561-0242ac1c0006.json
index a841d1533..4fcfa6e64 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-8309bf8e-6874-11ec-8561-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-8309bf8e-6874-11ec-8561-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-8309bf8e-6874-11ec-8561-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-8309bf8e-6874-11ec-8561-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.4245014190674 -28.8953857421875, 12.4245014190674 -16.9876079559326, 25.2362613677979 -16.9876079559326, 25.2362613677979 -28.8953857421875, 12.4245014190674 -28.8953857421875))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Outlines all gazetted district roads for all 14 Regions in Namibia.\nDATA SOURCE: Roads Authority, Road Management System Division, available via NSDI",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR District Roads",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.8953857421875 12.4245014190674 -16.9876079559326 25.2362613677979"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_LI_district_roads"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-8349f110-6d30-11ec-8a7e-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-8349f110-6d30-11ec-8a7e-0242ac1c0006.json
index 5a1cc1cb1..fe1b6b331 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-8349f110-6d30-11ec-8a7e-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-8349f110-6d30-11ec-8a7e-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-8349f110-6d30-11ec-8a7e-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-8349f110-6d30-11ec-8a7e-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.533332824707 -29.7333335876465, 12.533332824707 -20.5999984741211, 14.8000001907349 -20.5999984741211, 14.8000001907349 -29.7333335876465, 12.533332824707 -29.7333335876465))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake long line vessels 2011",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.7333335876465 12.533332824707 -20.5999984741211 14.8000001907349"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_LL_catch_location_2011"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-850f1c18-f9a0-11eb-b70f-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-850f1c18-f9a0-11eb-b70f-0242ac1c0006.json
index bfd9d5206..54f85f921 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-850f1c18-f9a0-11eb-b70f-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-850f1c18-f9a0-11eb-b70f-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-850f1c18-f9a0-11eb-b70f-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-850f1c18-f9a0-11eb-b70f-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Relative distribution of catch in the commercial trawl industry targeting monkfish.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Monkfish fishery (catch)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Monkfish_Catch"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-857d4612-619b-11ec-871b-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-857d4612-619b-11ec-871b-0242ac1c0006.json
index 2a4814bc9..c20e75525 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-857d4612-619b-11ec-871b-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-857d4612-619b-11ec-871b-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-857d4612-619b-11ec-871b-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-857d4612-619b-11ec-871b-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.9495887756348 -21.8563461303711, 13.9495887756348 -21.7556495666504, 14.0544853210449 -21.7556495666504, 14.0544853210449 -21.8563461303711, 13.9495887756348 -21.8563461303711))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Cape Cross Seal Reserve.\nDATA SOURCE: Mendelsohn J, Jarvis A, Roberts C and Robertson T. 2002. Atlas of Namibia: A portrait of the land and its people. David Philip Publishers, Cape Town, South Africa.\nhttp://www.the-eis.com/\nMETHODS: Created based on government gazettes. Where possible, boundaries were created from coordinates provided in the gazettes. Where landmarks had no specific coordinates, other shapefiles were used (e.g. farms shapefile, rivers shapefile, 1:250000 maps etc.).",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Cape Cross Seal Reserve",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-21.8563461303711 13.9495887756348 -21.7556495666504 14.0544853210449"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_national_park_Cape_Cross_Seal_Res"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-86d1223a-6d31-11ec-99b8-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-86d1223a-6d31-11ec-99b8-0242ac1c0006.json
index 5f7164c95..e94d901fa 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-86d1223a-6d31-11ec-99b8-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-86d1223a-6d31-11ec-99b8-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-86d1223a-6d31-11ec-99b8-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-86d1223a-6d31-11ec-99b8-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.7999992370605 -29.8666667938232, 11.7999992370605 -19.4333324432373, 14.8666667938232 -19.4333324432373, 14.8666667938232 -29.8666667938232, 11.7999992370605 -29.8666667938232))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake long line vessels 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.8666667938232 11.7999992370605 -19.4333324432373 14.8666667938232"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_LL_catch_location_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-8727bb20-1404-11ed-9439-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-8727bb20-1404-11ed-9439-0242ac1c0005.json
index 91dc6da46..9f08a6337 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-8727bb20-1404-11ed-9439-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-8727bb20-1404-11ed-9439-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-8727bb20-1404-11ed-9439-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-8727bb20-1404-11ed-9439-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((10,4137411117554 -13,3342084884644, 10,4137411117554 -5,02650260925293, 13,8652963638306 -5,02650260925293, 13,8652963638306 -13,3342084884644, 10,4137411117554 -13,3342084884644))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Blocos Com Poços Petrolíferos. Método- Georreferenciação do Mapa e posterior vectorização dos dados importantes.",
"keywords": [
- "AGO_OEM_PET_BLOCOS_POCOS",
- "features",
- "Global"
+ "Petroleo",
+ "Angola"
],
- "name": "AGO_OEM_PET_BLOCOS_POCOS",
+ "name": "AGO Blocos Com Pocos 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-13.3342084884644 10.4137411117554 -5.02650260925293 13.8652963638306"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PET_BLOCOS_POCOS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-87a583da-13ea-11ed-a17e-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-87a583da-13ea-11ed-a17e-0242ac1c0005.json
index 4eb524798..ff313f372 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-87a583da-13ea-11ed-a17e-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-87a583da-13ea-11ed-a17e-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-87a583da-13ea-11ed-a17e-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-87a583da-13ea-11ed-a17e-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12,1327905654907 -15,1949577331543, 12,1327905654907 -5,55025959014893, 13,7352142333984 -5,55025959014893, 13,7352142333984 -15,1949577331543, 12,1327905654907 -15,1949577331543))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Em angola temos os seguintes portos: complexo portuário de cabinda, porto do Soyo, porto de Luanda, porto do Cuanza sul, porto do Lobito e o porto do Namibe.Método- Shapefile gerado a partir de coordenadas.",
"keywords": [
- "AGO_OEM_INFR_PORTOS",
- "features",
- "Global"
+ "Porto",
+ "Angola"
],
- "name": "AGO_OEM_INFR_PORTOS",
+ "name": "AGO Portos 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-15.1949577331543 12.1327905654907 -5.55025959014893 13.7352142333984"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_INFR_PORTOS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-89815e86-f514-11eb-ae8a-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-89815e86-f514-11eb-ae8a-0242ac1c0006.json
index 8a60896a7..ee0fab151 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-89815e86-f514-11eb-ae8a-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-89815e86-f514-11eb-ae8a-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-89815e86-f514-11eb-ae8a-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-89815e86-f514-11eb-ae8a-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Commercial industry targeting sardine, anchovy and redeye.",
"keywords": [
"Fishing",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM EBSA Small pelagic fishing",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Small_Pelagic"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-89ff8a96-6d40-11ec-873a-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-89ff8a96-6d40-11ec-873a-0242ac1c0006.json
index 656ade7f8..45c478970 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-89ff8a96-6d40-11ec-873a-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-89ff8a96-6d40-11ec-873a-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-89ff8a96-6d40-11ec-873a-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-89ff8a96-6d40-11ec-873a-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.3999996185303 -29.3333339691162, 11.3999996185303 -18.2666664123535, 14.8500003814697 -18.2666664123535, 14.8500003814697 -29.3333339691162, 11.3999996185303 -29.3333339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of monk trawlers 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.3333339691162 11.3999996185303 -18.2666664123535 14.8500003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_monk_catch_location_2016"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-8af988da-68a3-11ec-9f5f-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-8af988da-68a3-11ec-9f5f-0242ac1c0006.json
index 032de3617..748d7bbe7 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-8af988da-68a3-11ec-9f5f-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-8af988da-68a3-11ec-9f5f-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-8af988da-68a3-11ec-9f5f-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-8af988da-68a3-11ec-9f5f-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.539999961853 -26.6300010681152, 14.539999961853 -26.6299991607666, 15.1400003433228 -26.6299991607666, 15.1400003433228 -26.6300010681152, 14.539999961853 -26.6300010681152))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Oceanographic monitoring stations sampled on a monthly basis (or more frequently) using the research vessel !Anichab. Parameters samples include temperature, salinity, oxygen, phytoplankton and zooplankton.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Diaz Point monitoring stations",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.6300010681152 14.539999961853 -26.6299991607666 15.1400003433228"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_RES_Diaz_Point_line"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-8c6f447e-6881-11ec-a867-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-8c6f447e-6881-11ec-a867-0242ac1c0006.json
index def02f8df..39bdfc9ad 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-8c6f447e-6881-11ec-a867-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-8c6f447e-6881-11ec-a867-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-8c6f447e-6881-11ec-a867-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-8c6f447e-6881-11ec-a867-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.82934284210205 -30.5659313201904, 8.82934284210205 -17.2499980926514, 14.5275173187256 -17.2499980926514, 14.5275173187256 -30.5659313201904, 8.82934284210205 -30.5659313201904))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "West Africa Cable System (WACS), Africa Coast to Europe (ACE) cablesyst em, South Atlantic 3 (SAT-3) and disused South Atlantic 1 (SAT-1) submarine cable.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Underwater cables",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.5659313201904 8.82934284210205 -17.2499980926514 14.5275173187256"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_UI_underwater_cables_202111"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-8cca7e36-694c-11ec-8e87-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-8cca7e36-694c-11ec-8e87-0242ac1c0006.json
index b7e497635..85fe47044 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-8cca7e36-694c-11ec-8e87-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-8cca7e36-694c-11ec-8e87-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-8cca7e36-694c-11ec-8e87-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-8cca7e36-694c-11ec-8e87-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((7.677234554696233 -29.97835405565207, 7.677234554696233 -16.5192511983747, 15.512244252128317 -16.5192511983747, 15.512244252128317 -29.97835405565207, 7.677234554696233 -29.97835405565207))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Fishing intensity of pelagic longline and pole-line (tuna and swordfish)\nMETHODS:\n· VMS point location data for all vessels in each of the nine fisheries were collated for the period 2014 – 2017. The data were cleaned, including removal of clear errors (e.g. points on land) and clipped to the study area.\n· Points were converted into a raster density layer, using a kernel density approach. This used a 0.005° cell size and a 0.075° search distance using planar units.\n· Density layers were then iteratively explored using a quantile based approach to identify the cut-off for very low density use areas and areas used for transit only, which for all industries identified the bottom 10% - 15% of used areas as being low use or transit only. The calibration was done on an expert basis. It identified the mean density of transit only zones, and then rounded this value up to the next 5 percentile mark. For the next steps only values above this threshold were evaluated.\n· Remaining areas were then split into 10 quantiles, from lower intensity use to highest\nintensity use.\n· The raster was then converted to a polygon layer.\n· Isolated port and anchorage polygons (which would have had high intensity values as vessels are often found there) were manually identified and exclude from the datasets.\n· The above approach gives a set of 10 intensity of use categories from lower intensity use (1) to highest intensity use (10). The areas deliberately exclude very low use areas.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Fishing intensity of pelagic longline and pole-line",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.97835405565207 7.677234554696233 -16.5192511983747 15.512244252128317"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_intensity_large_pelagic0"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-8f84a6f6-6ed3-11ec-a0d3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-8f84a6f6-6ed3-11ec-a0d3-0242ac1c0006.json
index c7d72a02f..9e3056c3d 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-8f84a6f6-6ed3-11ec-a0d3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-8f84a6f6-6ed3-11ec-a0d3-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-8f84a6f6-6ed3-11ec-a0d3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-8f84a6f6-6ed3-11ec-a0d3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.2799997329712 -26.8300018310547, 12.2799997329712 -18.7999992370605, 14.9800004959106 -18.7999992370605, 14.9800004959106 -26.8300018310547, 12.2799997329712 -26.8300018310547))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of snoek 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.8300018310547 12.2799997329712 -18.7999992370605 14.9800004959106"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2016"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-917fb420-0468-11ed-abfa-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-917fb420-0468-11ed-abfa-0242ac1c0005.json
index 0f3193eb0..444b3f6c8 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-917fb420-0468-11ed-abfa-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-917fb420-0468-11ed-abfa-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-917fb420-0468-11ed-abfa-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-917fb420-0468-11ed-abfa-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,6695585250854 -17,2732696533203, 11,6695585250854 -4,99951696395874, 13,8655052185059 -4,99951696395874, 13,8655052185059 -17,2732696533203, 11,6695585250854 -17,2732696533203))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Descrição- A linha de costa tem uma extensão de 1.650 Km, é representada por 7 províncias (Cabinda, Zaire, Bengo, Luanda, Cuanza Sul, Benguela e Namibe). Existem 8 grandes cidades (Cabinda, Soyo, Luanda, Sumbe, Lobito, Benguela, Namibe e Tômbwa). (Wikipédia)\nMétodo-Imagens aéreas da costa Angolana do Google Earth 2011 foram salvas como uma série de imagens georreferenciadas usando o plug-in Shape2Earth para o programa de código aberto MapWindow GIS (disponível em: http://shape2earth.com). As imagens foram capturadas em uma escala consistente (barra de escala do Google Earth a 900 m), embora algumas exceções fossem necessárias devido à qualidade e resolução variadas das imagens do Google Earth. As imagens capturadas foram importadas para ArcMap 10 (ESRI), e serviram como a linha de base em que os shapefiles de habitat costeiro foram digitalizados. A digitalização foi geralmente realizada em uma escala de 1: 8000, embora, como acima, a resolução variada das imagens ocasionalmente necessitasse de um zoom de mais ou menos a partir desta escala de base. A projeção WGS84 (Universal Transverse Mercator) foi usada para todos os shapefiles.",
"keywords": [
- "AGO_OEM_BASE_LINHA_COSTA_Harris2012",
- "features",
- "Global"
+ "Costa",
+ "Angola"
],
- "name": "AGO_OEM_BASE_LINHA_COSTA_Harris2012",
+ "name": "AGO Linha Costa 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2732696533203 11.6695585250854 -4.99951696395874 13.8655052185059"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_LINHA_COSTA_Harris2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-91c55136-6ec9-11ec-91fa-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-91c55136-6ec9-11ec-91fa-0242ac1c0006.json
index 9094d7eea..f0e0f5177 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-91c55136-6ec9-11ec-91fa-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-91c55136-6ec9-11ec-91fa-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-91c55136-6ec9-11ec-91fa-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-91c55136-6ec9-11ec-91fa-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9.44999980926514 -26.8000011444092, 9.44999980926514 -17.2666664123535, 14.4833335876465 -17.2666664123535, 14.4833335876465 -26.8000011444092, 9.44999980926514 -26.8000011444092))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of blue sharks 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.8000011444092 9.44999980926514 -17.2666664123535 14.4833335876465"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-9547d9ea-6eca-11ec-820b-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-9547d9ea-6eca-11ec-820b-0242ac1c0006.json
index a84f63c2d..a8559fb52 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-9547d9ea-6eca-11ec-820b-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-9547d9ea-6eca-11ec-820b-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-9547d9ea-6eca-11ec-820b-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-9547d9ea-6eca-11ec-820b-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.41666603088379 -30.3833351135254, 8.41666603088379 -17.7666664123535, 15.1666669845581 -17.7666664123535, 15.1666669845581 -30.3833351135254, 8.41666603088379 -30.3833351135254))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of blue sharks 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3833351135254 8.41666603088379 -17.7666664123535 15.1666669845581"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2014"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-96d60e88-67e7-11ec-96f4-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-96d60e88-67e7-11ec-96f4-0242ac1c0006.json
index b34ca5a2a..355f7a736 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-96d60e88-67e7-11ec-96f4-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-96d60e88-67e7-11ec-96f4-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-96d60e88-67e7-11ec-96f4-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-96d60e88-67e7-11ec-96f4-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.5334529876709 -22.8804874420166, 14.5334529876709 -22.8154163360596, 14.5420618057251 -22.8154163360596, 14.5420618057251 -22.8804874420166, 14.5334529876709 -22.8804874420166))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Dolphin sanctuary in the Walvis Bay area",
"keywords": [
"Biodiversity",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Dolphin sanctuary",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.8804874420166 14.5334529876709 -22.8154163360596 14.5420618057251"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_TOUR_dolphin_sanctuary_WVB"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-983a1fb0-687f-11ec-8a11-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-983a1fb0-687f-11ec-8a11-0242ac1c0006.json
index b3e9c48c8..360c5cc82 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-983a1fb0-687f-11ec-8a11-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-983a1fb0-687f-11ec-8a11-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-983a1fb0-687f-11ec-8a11-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-983a1fb0-687f-11ec-8a11-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4979181289673 -28.1474742889404, 14.4979181289673 -17.3918190002441, 19.9960918426514 -17.3918190002441, 19.9960918426514 -28.1474742889404, 14.4979181289673 -28.1474742889404))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "The national railway network of Namibia",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Railway",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.1474742889404 14.4979181289673 -17.3918190002441 19.9960918426514"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_LI_railway"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-98636302-13ec-11ed-b0b5-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-98636302-13ec-11ed-b0b5-0242ac1c0005.json
index 1ead7a664..b2fe8a164 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-98636302-13ec-11ed-b0b5-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-98636302-13ec-11ed-b0b5-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-98636302-13ec-11ed-b0b5-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-98636302-13ec-11ed-b0b5-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,8435592651367 -15,8058271408081, 11,8435592651367 -5,68875885009766, 13,586841583252 -5,68875885009766, 13,586841583252 -15,8058271408081, 11,8435592651367 -15,8058271408081))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Digitalização dos Dados, Fornecidos pelo Ministério da Defesa.",
"keywords": [
- "AGO_OEM_DEF_UNID_MIL",
- "features",
- "Global"
+ "Defesa",
+ "Angola"
],
- "name": "AGO_OEM_DEF_UNID_MIL",
+ "name": "AGO Unidades Militares 2022",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-15.8058271408081 11.8435592651367 -5.68875885009766 13.586841583252"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_DEF_UNID_MIL"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-98c99d42-6ecf-11ec-a6a0-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-98c99d42-6ecf-11ec-a6a0-0242ac1c0006.json
index b0b363e1f..856fffb1a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-98c99d42-6ecf-11ec-a6a0-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-98c99d42-6ecf-11ec-a6a0-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-98c99d42-6ecf-11ec-a6a0-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-98c99d42-6ecf-11ec-a6a0-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.31666660308838 -29.8333339691162, 8.31666660308838 -17.25, 15.1000003814697 -17.25, 15.1000003814697 -29.8333339691162, 8.31666660308838 -29.8333339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of other sharks (fins) 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.8333339691162 8.31666660308838 -17.25 15.1000003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shark_fin_catch_locations_2015"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-99930326-6ec5-11ec-ba00-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-99930326-6ec5-11ec-ba00-0242ac1c0006.json
index 40cbfc994..f70609187 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-99930326-6ec5-11ec-ba00-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-99930326-6ec5-11ec-ba00-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-99930326-6ec5-11ec-ba00-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-99930326-6ec5-11ec-ba00-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9.44999980926514 -26.8000011444092, 9.44999980926514 -17.2666664123535, 14.3333339691162 -17.2666664123535, 14.3333339691162 -26.8000011444092, 9.44999980926514 -26.8000011444092))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of short fin mako 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.8000011444092 9.44999980926514 -17.2666664123535 14.3333339691162"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-99cd1bdc-1407-11ed-9439-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-99cd1bdc-1407-11ed-9439-0242ac1c0005.json
index dcc379745..08a542575 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-99cd1bdc-1407-11ed-9439-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-99cd1bdc-1407-11ed-9439-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-99cd1bdc-1407-11ed-9439-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-99cd1bdc-1407-11ed-9439-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,9324712753296 -8,61283302307129, 11,9324712753296 -6,14228200912476, 13,1746129989624 -6,14228200912476, 13,1746129989624 -8,61283302307129, 11,9324712753296 -8,61283302307129))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Espécies Aquáticas. Vectorização das Informações Contida no Relatório da Noruega",
"keywords": [
- "AGO_OEM_NOR_DAT_PELAGICAS",
- "features",
- "Global"
+ "Peixe",
+ "Angola"
],
- "name": "AGO_OEM_NOR_DAT_PELAGICAS",
+ "name": "AGO Pelagicas 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-8.61283302307129 11.9324712753296 -6.14228200912476 13.1746129989624"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_NOR_DAT_PELAGICAS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-9d069e68-67dc-11ec-8eca-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-9d069e68-67dc-11ec-8eca-0242ac1c0006.json
index 035153c05..a8af6e304 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-9d069e68-67dc-11ec-8eca-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-9d069e68-67dc-11ec-8eca-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-9d069e68-67dc-11ec-8eca-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-9d069e68-67dc-11ec-8eca-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.9437093734741 -27.663122177124, 14.9437093734741 -26.1323566436768, 15.5238552093506 -26.1323566436768, 15.5238552093506 -27.663122177124, 14.9437093734741 -27.663122177124))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Anchorage sites around Lüderitz",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Anchorage sites",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-27.663122177124 14.9437093734741 -26.1323566436768 15.5238552093506"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_anchorage_sites_LUD"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-9da22b16-13ea-11ed-b2f3-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-9da22b16-13ea-11ed-b2f3-0242ac1c0005.json
index e72223118..7b8168794 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-9da22b16-13ea-11ed-b2f3-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-9da22b16-13ea-11ed-b2f3-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-9da22b16-13ea-11ed-b2f3-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-9da22b16-13ea-11ed-b2f3-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,922779083252 -15,6913661956787, 11,922779083252 -7,20048332214355, 13,7640991210938 -7,20048332214355, 13,7640991210938 -15,6913661956787, 11,922779083252 -15,6913661956787))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Salinas .Método-Fez-se o Levantamento das Salinas em Campo e a posterior tratou-se os Dados levantados",
"keywords": [
- "AGO_OEM_INFR_SALINAS",
- "features",
- "Global"
+ "Sal",
+ "Angola"
],
- "name": "AGO_OEM_INFR_SALINAS",
+ "name": "AGO Salinas 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-15.6913661956787 11.922779083252 -7.20048332214355 13.7640991210938"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_INFR_SALINAS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-9e575024-6ec0-11ec-a188-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-9e575024-6ec0-11ec-a188-0242ac1c0006.json
index bd700e331..e0a419c61 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-9e575024-6ec0-11ec-a188-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-9e575024-6ec0-11ec-a188-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-9e575024-6ec0-11ec-a188-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-9e575024-6ec0-11ec-a188-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9.44999980926514 -26.8000011444092, 9.44999980926514 -17.2999992370605, 14.4833335876465 -17.2999992370605, 14.4833335876465 -26.8000011444092, 9.44999980926514 -26.8000011444092))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of swordfish 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.8000011444092 9.44999980926514 -17.2999992370605 14.4833335876465"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_swordfish_catch_location_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-9f77e0fe-1401-11ed-9439-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-9f77e0fe-1401-11ed-9439-0242ac1c0005.json
index 17e4691a4..dc2e673b4 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-9f77e0fe-1401-11ed-9439-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-9f77e0fe-1401-11ed-9439-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-9f77e0fe-1401-11ed-9439-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-9f77e0fe-1401-11ed-9439-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.994538564979669 -9.111678717408864, 12.994538564979669 -8.860803628588108, 13.160220195157917 -8.860803628588108, 13.160220195157917 -9.111678717408864, 12.994538564979669 -9.111678717408864))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Peninsula do Mussulo",
"keywords": [
- "AGO_OEM_TUR_PENINSULA_MUSSULO",
- "features",
- "Global"
+ "Mussulo",
+ "Angola"
],
- "name": "AGO_OEM_TUR_PENINSULA_MUSSULO",
+ "name": "AGO Peninsula do Mussulo 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-9.111678717408864 12.994538564979669 -8.860803628588108 13.160220195157917"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_TUR_PENINSULA_MUSSULO"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-9f7f1168-67d5-11ec-ba6e-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-9f7f1168-67d5-11ec-ba6e-0242ac1c0006.json
index a6458ac75..d455093b4 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-9f7f1168-67d5-11ec-ba6e-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-9f7f1168-67d5-11ec-ba6e-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-9f7f1168-67d5-11ec-ba6e-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-9f7f1168-67d5-11ec-ba6e-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4501237869263 -22.8350067138672, 14.4501237869263 -22.8259582519531, 14.4597702026367 -22.8259582519531, 14.4597702026367 -22.8350067138672, 14.4501237869263 -22.8350067138672))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas delineated as spoilground in the Walvis Bay port.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Spoilground",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.8350067138672 14.4501237869263 -22.8259582519531 14.4597702026367"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_spoilground"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-9fa14a9c-6d36-11ec-8b0a-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-9fa14a9c-6d36-11ec-8b0a-0242ac1c0006.json
index 3a736d135..53f166cc5 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-9fa14a9c-6d36-11ec-8b0a-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-9fa14a9c-6d36-11ec-8b0a-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-9fa14a9c-6d36-11ec-8b0a-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-9fa14a9c-6d36-11ec-8b0a-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.2166662216187 -29.9166679382324, 11.2166662216187 -17.2666664123535, 14.9333333969116 -17.2666664123535, 14.9333333969116 -29.9166679382324, 11.2166662216187 -29.9166679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake wet fish trawlers 2011",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.9166679382324 11.2166662216187 -17.2666664123535 14.9333333969116"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_wet_catch_location_2011"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a23d18ea-617d-11ec-8914-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-a23d18ea-617d-11ec-8914-0242ac1c0006.json
index 2247004ed..c7d4b6e31 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a23d18ea-617d-11ec-8914-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a23d18ea-617d-11ec-8914-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a23d18ea-617d-11ec-8914-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a23d18ea-617d-11ec-8914-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9.7350025177002 -29.6970825195312, 9.7350025177002 -17.2429466247559, 16.4518032073975 -17.2429466247559, 16.4518032073975 -29.6970825195312, 9.7350025177002 -29.6970825195312))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Bathometry features found in Namibian sea, prominent by Walvis Ridge, few canyons and seamounts.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology\nof the oceans. Marine Geology, 352: 4-24.\nGEBCO (General Bathymetric Chart of the Oceans) Available at http://www.gebco.net/\ndata_and_poducts/gridded_bathymetry_data/.\nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Shelf Classification",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.6970825195312 9.7350025177002 -17.2429466247559 16.4518032073975"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_shelf_classification"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a25c909c-0468-11ed-abec-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-a25c909c-0468-11ed-abec-0242ac1c0005.json
index fe51e13fd..39ddb1eaa 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a25c909c-0468-11ed-abec-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a25c909c-0468-11ed-abec-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a25c909c-0468-11ed-abec-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a25c909c-0468-11ed-abec-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,7072668075562 -17,2626495361328, 11,7072668075562 -5,56267786026001, 13,8439455032349 -5,56267786026001, 13,8439455032349 -17,2626495361328, 11,7072668075562 -17,2626495361328))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Locais.Método-Digitalização dos Dados em Campo.",
"keywords": [
- "AGO_OEM_BASE_LOC",
- "features",
- "Global"
+ "Locais",
+ "Angola"
],
- "name": "AGO_OEM_BASE_LOC",
+ "name": "AGO Locais 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2626495361328 11.7072668075562 -5.56267786026001 13.8439455032349"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_LOC"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a27c5114-6ca3-11ec-8020-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-a27c5114-6ca3-11ec-8020-0242ac1c0006.json
index 3848d86e1..179eb0d23 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a27c5114-6ca3-11ec-8020-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a27c5114-6ca3-11ec-8020-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a27c5114-6ca3-11ec-8020-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a27c5114-6ca3-11ec-8020-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.2333326339722 -29.8500003814697, 11.2333326339722 -17.3499984741211, 14.8166675567627 -17.3499984741211, 14.8166675567627 -29.8500003814697, 11.2333326339722 -29.8500003814697))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations of hake freezer trawler 2012 as recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake freezer trawlers 2012",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.8500003814697 11.2333326339722 -17.3499984741211 14.8166675567627"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_freezer_catch_location_2012"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a2b7f92c-6ed2-11ec-bfa3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-a2b7f92c-6ed2-11ec-bfa3-0242ac1c0006.json
index 33ad78081..3cc62c11b 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a2b7f92c-6ed2-11ec-bfa3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a2b7f92c-6ed2-11ec-bfa3-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a2b7f92c-6ed2-11ec-bfa3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a2b7f92c-6ed2-11ec-bfa3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.2799997329712 -26.9300003051758, 13.2799997329712 -20.769998550415, 14.9800004959106 -20.769998550415, 14.9800004959106 -26.9300003051758, 13.2799997329712 -26.9300003051758))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of snoek 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.9300003051758 13.2799997329712 -20.769998550415 14.9800004959106"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2014"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a3279f28-1406-11ed-ba29-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-a3279f28-1406-11ed-ba29-0242ac1c0005.json
index 138d710de..d778a0220 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a3279f28-1406-11ed-ba29-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a3279f28-1406-11ed-ba29-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a3279f28-1406-11ed-ba29-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a3279f28-1406-11ed-ba29-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,3204021453857 -17,2364978790283, 11,3204021453857 -14,7104139328003, 12,2775621414185 -14,7104139328003, 12,2775621414185 -17,2364978790283, 11,3204021453857 -17,2364978790283))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Espécies Aquáticas. Método- Vectorização das Informações Contida no Relatório.",
"keywords": [
- "AGO_OEM_NOR_DAT_CARAPAU",
- "features",
- "Global"
+ "Peixe",
+ "Angola"
],
- "name": "AGO_OEM_NOR_DAT_CARAPAU",
+ "name": "AGO Carapau 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2364978790283 11.3204021453857 -14.7104139328003 12.2775621414185"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_NOR_DAT_CARAPAU"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a4043bb4-617c-11ec-94e2-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-a4043bb4-617c-11ec-94e2-0242ac1c0006.json
index 7114a3526..d55192fe0 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a4043bb4-617c-11ec-94e2-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a4043bb4-617c-11ec-94e2-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a4043bb4-617c-11ec-94e2-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a4043bb4-617c-11ec-94e2-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9.53365135192871 -30.3422832489014, 9.53365135192871 -17.2499980926514, 14.9446983337402 -17.2499980926514, 14.9446983337402 -30.3422832489014, 9.53365135192871 -30.3422832489014))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Slope in the Namibian sea.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/. \nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Slope",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3422832489014 9.53365135192871 -17.2499980926514 14.9446983337402"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_slope"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a5108070-67ea-11ec-b858-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-a5108070-67ea-11ec-b858-0242ac1c0006.json
index 901cf35d8..8fe3fe225 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a5108070-67ea-11ec-b858-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a5108070-67ea-11ec-b858-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a5108070-67ea-11ec-b858-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a5108070-67ea-11ec-b858-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.5196495056152 -28.7642726898193, 14.5196495056152 -17.3896961212158, 24.7208271026611 -17.3896961212158, 24.7208271026611 -28.7642726898193, 14.5196495056152 -28.7642726898193))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Outlines all gazetted trunk roads for all 14 Regions in Namibia.\nDATA SOURCE: Roads Authority, Road Management System Division, available via NSDI",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Trunk roads",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.7642726898193 14.5196495056152 -17.3896961212158 24.7208271026611"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_LI_trunk_roads"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a6677a54-6ecb-11ec-af52-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-a6677a54-6ecb-11ec-af52-0242ac1c0006.json
index 15927d880..a26d02559 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a6677a54-6ecb-11ec-af52-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a6677a54-6ecb-11ec-af52-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a6677a54-6ecb-11ec-af52-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a6677a54-6ecb-11ec-af52-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.31666660308838 -29.8333339691162, 8.31666660308838 -17.25, 15.1000003814697 -17.25, 15.1000003814697 -29.8333339691162, 8.31666660308838 -29.8333339691162))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of blue sharks 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.8333339691162 8.31666660308838 -17.25 15.1000003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2015"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a798fe80-1401-11ed-96bf-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-a798fe80-1401-11ed-96bf-0242ac1c0005.json
index f00849828..acf19427c 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a798fe80-1401-11ed-96bf-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a798fe80-1401-11ed-96bf-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a798fe80-1401-11ed-96bf-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a798fe80-1401-11ed-96bf-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13,0583438873291 -9,6734504699707, 13,0583438873291 -8,96447086334229, 13,2196846008301 -8,96447086334229, 13,2196846008301 -9,6734504699707, 13,0583438873291 -9,6734504699707))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Resorts. Método-Digitalização dos Dados Recolhidos em Campo.",
"keywords": [
- "AGO_OEM_TUR_RESORTS",
- "features",
- "Global"
+ "Risorts",
+ "Angola"
],
- "name": "AGO_OEM_TUR_RESORTS",
+ "name": "AGO Resorts 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-9.6734504699707 13.0583438873291 -8.96447086334229 13.2196846008301"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_TUR_RESORTS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-a7e139d6-67ca-11ec-9aff-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-a7e139d6-67ca-11ec-9aff-0242ac1c0006.json
index 678660865..bbefbb3ee 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-a7e139d6-67ca-11ec-9aff-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-a7e139d6-67ca-11ec-9aff-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-a7e139d6-67ca-11ec-9aff-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-a7e139d6-67ca-11ec-9aff-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4856214523315 -22.953821182251, 14.4856214523315 -22.9040813446045, 14.5281620025635 -22.9040813446045, 14.5281620025635 -22.953821182251, 14.4856214523315 -22.953821182251))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Areas delineated as turning basins in the Walvis Bay port.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Turning basin",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.953821182251 14.4856214523315 -22.9040813446045 14.5281620025635"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_turning_basin_WVB"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-aa23336c-f9a1-11eb-b70f-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-aa23336c-f9a1-11eb-b70f-0242ac1c0006.json
index dc946407a..4ba69412a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-aa23336c-f9a1-11eb-b70f-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-aa23336c-f9a1-11eb-b70f-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-aa23336c-f9a1-11eb-b70f-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-aa23336c-f9a1-11eb-b70f-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "The Namibian coastal mining industry is largely focussed on diamond mining in the south of the country. Salt production areas are also included in this layer.",
"keywords": [
"pressures",
"Namibia"
],
"name": "NAM EBSA Mining and salt production",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Mining_Salt"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-aa432418-6d2f-11ec-96a6-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-aa432418-6d2f-11ec-96a6-0242ac1c0006.json
index 3d1527af1..bba60c742 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-aa432418-6d2f-11ec-96a6-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-aa432418-6d2f-11ec-96a6-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-aa432418-6d2f-11ec-96a6-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-aa432418-6d2f-11ec-96a6-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.283332824707 -29.9166679382324, 11.283332824707 -17.5, 14.9166669845581 -17.5, 14.9166669845581 -29.9166679382324, 11.283332824707 -29.9166679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations of hake freezer trawlers 2015 as recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake freezer trawlers 2015",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.9166679382324 11.283332824707 -17.5 14.9166669845581"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_freezer_catch_location_2015"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-aa68474e-6d47-11ec-895b-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-aa68474e-6d47-11ec-895b-0242ac1c0006.json
index 6a0b637bf..c60619b39 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-aa68474e-6d47-11ec-895b-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-aa68474e-6d47-11ec-895b-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-aa68474e-6d47-11ec-895b-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-aa68474e-6d47-11ec-895b-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12.4449996948242 -23.9883346557617, 12.4449996948242 -19.5433330535889, 14.171667098999 -19.5433330535889, 14.171667098999 -23.9883346557617, 12.4449996948242 -23.9883346557617))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of sardine purse seiners 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.9883346557617 12.4449996948242 -19.5433330535889 14.171667098999"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_sardine_catch_location_2016"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-aba88002-5f0e-11ec-8d07-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-aba88002-5f0e-11ec-8d07-0242ac1c0006.json
index 7c65152a0..884ce2864 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-aba88002-5f0e-11ec-8d07-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-aba88002-5f0e-11ec-8d07-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-aba88002-5f0e-11ec-8d07-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-aba88002-5f0e-11ec-8d07-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.2924194335938 -28.5292701721191, 14.2924194335938 -22.1173191070557, 16.4248313903809 -22.1173191070557, 16.4248313903809 -28.5292701721191, 14.2924194335938 -28.5292701721191))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Towns along the coast of Namibia.\nThe position and names of towns were collected from Atlas of Namibia + colour orthophotos.\nReference: De Cauwer, V. 2007. Mapping of the BCLME shoreline, shallow water and marine habitats. Final report for the BCLME project BEP/BAC/03/02",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Coastal Towns",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.5292701721191 14.2924194335938 -22.1173191070557 16.4248313903809"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_coastal_settlements"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-abac83dc-6ed1-11ec-bdb9-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-abac83dc-6ed1-11ec-bdb9-0242ac1c0006.json
index 4a868b1f1..df6e2e59b 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-abac83dc-6ed1-11ec-bdb9-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-abac83dc-6ed1-11ec-bdb9-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-abac83dc-6ed1-11ec-bdb9-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-abac83dc-6ed1-11ec-bdb9-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.1799993515015 -26.9000015258789, 13.1799993515015 -20.6799983978271, 14.9200000762939 -20.6799983978271, 14.9200000762939 -26.9000015258789, 13.1799993515015 -26.9000015258789))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of snoek 2011",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.9000015258789 13.1799993515015 -20.6799983978271 14.9200000762939"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2011"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-aec194f2-13ec-11ed-b0b5-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-aec194f2-13ec-11ed-b0b5-0242ac1c0005.json
index 9ae8232c0..6e975038b 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-aec194f2-13ec-11ed-b0b5-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-aec194f2-13ec-11ed-b0b5-0242ac1c0005.json
@@ -1,26 +1,22 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-aec194f2-13ec-11ed-b0b5-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-aec194f2-13ec-11ed-b0b5-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,8435592651367 -15,8058271408081, 11,8435592651367 -5,68875885009766, 13,586841583252 -5,68875885009766, 13,586841583252 -15,8058271408081, 11,8435592651367 -15,8058271408081))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Unidades Militares. Método-Digitalização das informações passadas pelo Ministério da Defesa.",
"keywords": [
"Pontos_de_Unidades_militares",
"features",
- "Global"
+ "Angola"
],
- "name": "Pontos_de_Unidades_militares",
+ "name": "AGO Pontos de Unidades militares 2022",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-15.8058271408081 11.8435592651367 -5.68875885009766 13.586841583252"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:Pontos_de_Unidades_militares"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-aee0f246-6ec6-11ec-9210-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-aee0f246-6ec6-11ec-9210-0242ac1c0006.json
index c96a2a04a..193ce4b34 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-aee0f246-6ec6-11ec-9210-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-aee0f246-6ec6-11ec-9210-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-aee0f246-6ec6-11ec-9210-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-aee0f246-6ec6-11ec-9210-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.41666603088379 -30.3833351135254, 8.41666603088379 -17.7666664123535, 15.1666669845581 -17.7666664123535, 15.1666669845581 -30.3833351135254, 8.41666603088379 -30.3833351135254))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of short fin mako 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3833351135254 8.41666603088379 -17.7666664123535 15.1666669845581"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2014"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-af226d38-6ecc-11ec-a6a0-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-af226d38-6ecc-11ec-a6a0-0242ac1c0006.json
index f320a56a3..c2f199c78 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-af226d38-6ecc-11ec-a6a0-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-af226d38-6ecc-11ec-a6a0-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-af226d38-6ecc-11ec-a6a0-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-af226d38-6ecc-11ec-a6a0-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.73333263397217 -30.3666667938232, 8.73333263397217 -17.3999996185303, 15.3500003814697 -17.3999996185303, 15.3500003814697 -30.3666667938232, 8.73333263397217 -30.3666667938232))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Catch positions of other sharks (fins) 2010",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3666667938232 8.73333263397217 -17.3999996185303 15.3500003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shark_fin_catch_locations_2010"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-afbd620c-6ec2-11ec-a7b2-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-afbd620c-6ec2-11ec-a7b2-0242ac1c0006.json
index 4211751ad..497a001e1 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-afbd620c-6ec2-11ec-a7b2-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-afbd620c-6ec2-11ec-a7b2-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-afbd620c-6ec2-11ec-a7b2-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-afbd620c-6ec2-11ec-a7b2-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.41666603088379 -30.3833351135254, 8.41666603088379 -17.8499984741211, 14.3833341598511 -17.8499984741211, 14.3833341598511 -30.3833351135254, 8.41666603088379 -30.3833351135254))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of swordfish 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3833351135254 8.41666603088379 -17.8499984741211 14.3833341598511"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_swordfish_catch_location_2014"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-b0ceed42-1407-11ed-9d24-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-b0ceed42-1407-11ed-9d24-0242ac1c0005.json
index 4003e5ceb..591006c5b 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-b0ceed42-1407-11ed-9d24-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-b0ceed42-1407-11ed-9d24-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-b0ceed42-1407-11ed-9d24-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-b0ceed42-1407-11ed-9d24-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,5041561126709 -17,2662487030029, 11,5041561126709 -6,15692758560181, 13,848316192627 -6,15692758560181, 13,848316192627 -17,2662487030029, 11,5041561126709 -17,2662487030029))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Espécies Aquáticas. Vectorização das Informações Contida no Relatório da Noruega",
"keywords": [
- "AGO_OEM_NOR_DAT_SARDINELAS",
- "features",
- "Global"
+ "Sardinelas",
+ "Angola"
],
- "name": "AGO_OEM_NOR_DAT_SARDINELAS",
+ "name": "AGO Sardinelas 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-17.2662487030029 11.5041561126709 -6.15692758560181 13.848316192627"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_NOR_DAT_SARDINELAS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-b1a21d4c-63f5-11ec-948e-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-b1a21d4c-63f5-11ec-948e-0242ac1c0006.json
index 240613b94..e50b3ebd3 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-b1a21d4c-63f5-11ec-948e-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-b1a21d4c-63f5-11ec-948e-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-b1a21d4c-63f5-11ec-948e-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-b1a21d4c-63f5-11ec-948e-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9.04669952392578 -28.8634185791016, 9.04669952392578 -17.3660888671875, 15.7177753448486 -17.3660888671875, 15.7177753448486 -28.8634185791016, 9.04669952392578 -28.8634185791016))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Drill well positions within the Namibian ocean space",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Wellheads",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.8634185791016 9.04669952392578 -17.3660888671875 15.7177753448486"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_wells_eez"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-b40e0920-6ed0-11ec-af5d-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-b40e0920-6ed0-11ec-af5d-0242ac1c0006.json
index 4943e956a..2a4774fa2 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-b40e0920-6ed0-11ec-af5d-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-b40e0920-6ed0-11ec-af5d-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-b40e0920-6ed0-11ec-af5d-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-b40e0920-6ed0-11ec-af5d-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((13.0699996948242 -26.1000003814697, 13.0699996948242 -20.6499996185303, 14.7700004577637 -20.6499996185303, 14.7700004577637 -26.1000003814697, 13.0699996948242 -26.1000003814697))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of snoek 2010",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.1000003814697 13.0699996948242 -20.6499996185303 14.7700004577637"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2010"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-b49bfda0-6ec8-11ec-8a26-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-b49bfda0-6ec8-11ec-8a26-0242ac1c0006.json
index 95f911195..66113ff1e 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-b49bfda0-6ec8-11ec-8a26-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-b49bfda0-6ec8-11ec-8a26-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-b49bfda0-6ec8-11ec-8a26-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-b49bfda0-6ec8-11ec-8a26-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.73333263397217 -30.3666667938232, 8.73333263397217 -17.3999996185303, 15.3500003814697 -17.3999996185303, 15.3500003814697 -30.3666667938232, 8.73333263397217 -30.3666667938232))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of blue sharks 2010",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.3666667938232 8.73333263397217 -17.3999996185303 15.3500003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2010"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-b50114d4-0468-11ed-b05f-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-b50114d4-0468-11ed-b05f-0242ac1c0005.json
index 427756339..44876345b 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-b50114d4-0468-11ed-b05f-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-b50114d4-0468-11ed-b05f-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-b50114d4-0468-11ed-b05f-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-b50114d4-0468-11ed-b05f-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8,96749114990234 -13,5556106567383, 8,96749114990234 -7,80633878707886, 13,4952220916748 -7,80633878707886, 13,4952220916748 -13,5556106567383, 8,96749114990234 -13,5556106567383))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Ordenamento do Espaço Marinho.Método-Digitalização da Cordenação.",
"keywords": [
- "AGO_OEM_BASE_OEM",
- "features",
- "Global"
+ "OEM",
+ "Angola"
],
- "name": "AGO_OEM_BASE_OEM",
+ "name": "AGO Ordenamento do Espaço Marinho 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-13.5556106567383 8.96749114990234 -7.80633878707886 13.4952220916748"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_OEM"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-b7d0cb0a-2934-11ed-af34-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-b7d0cb0a-2934-11ed-af34-0242ac1c0005.json
new file mode 100644
index 000000000..49f32d285
--- /dev/null
+++ b/collection/tempHosting/data-benguelacc/benguelacc-b7d0cb0a-2934-11ed-af34-0242ac1c0005.json
@@ -0,0 +1,21 @@
+{
+ "@context": {
+ "@vocab": "https://schema.org/"
+ },
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-b7d0cb0a-2934-11ed-af34-0242ac1c0005.json",
+ "@type": "Dataset",
+ "description": "Instalações Petrolíferas. Método-Georreferenciação do Mapa e posterior vectorização dos dados importantes.",
+ "keywords": [
+ "Petroleo",
+ "Angola"
+ ],
+ "name": "AGO Instalacoes 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-90.0 -180.0 90.0 180.0"
+ }
+ },
+ "url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PET_INSTALACOES0"
+}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-b8cbaea6-f511-11eb-a910-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-b8cbaea6-f511-11eb-a910-0242ac1c0006.json
index 9f7ace298..a84ba52fb 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-b8cbaea6-f511-11eb-a910-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-b8cbaea6-f511-11eb-a910-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-b8cbaea6-f511-11eb-a910-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-b8cbaea6-f511-11eb-a910-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((-8.43387508392334 -49.5210418701172, -8.43387508392334 -8.73772144317627, 56.9033470153809 -8.73772144317627, 56.9033470153809 -49.5210418701172, -8.43387508392334 -49.5210418701172))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "The original boundaries of EBSAs in Angola, Namibia and South Africa, from the CBD website: https://www.cbd.int/ebsa/",
"keywords": [
"Biodiversity",
@@ -26,5 +15,12 @@
"Angola"
],
"name": "REG EBSA Original 2014",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-49.5210418701172 -8.43387508392334 -8.73772144317627 56.9033470153809"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:EBSAs_CBD_2014"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-b9beca5c-13ea-11ed-b0b5-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-b9beca5c-13ea-11ed-b0b5-0242ac1c0005.json
index 3e0d2b687..6e1ac4873 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-b9beca5c-13ea-11ed-b0b5-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-b9beca5c-13ea-11ed-b0b5-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-b9beca5c-13ea-11ed-b0b5-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-b9beca5c-13ea-11ed-b0b5-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((9,81557273864746 -23,1362800598145, 9,81557273864746 -9,49592781066895, 12,1430702209473 -9,49592781066895, 12,1430702209473 -23,1362800598145, 9,81557273864746 -23,1362800598145))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Cabos e Ductos Submarinos.Método –Transformou-se as coordenadas para graus decimais e a posterior tratou-se os mesmos no Qgis.",
"keywords": [
- "AGO_OEM_INFR_WACS2",
- "features",
- "Global"
+ "Cabos",
+ "Angola"
],
- "name": "AGO_OEM_INFR_WACS2",
+ "name": "AGO Cabos Submarinos Wacs2 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.1362800598145 9.81557273864746 -9.49592781066895 12.1430702209473"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_INFR_WACS2"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-ba38d8ce-6d3c-11ec-873a-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-ba38d8ce-6d3c-11ec-873a-0242ac1c0006.json
index 391b508f7..dcc9bca96 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-ba38d8ce-6d3c-11ec-873a-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-ba38d8ce-6d3c-11ec-873a-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-ba38d8ce-6d3c-11ec-873a-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-ba38d8ce-6d3c-11ec-873a-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.3499994277954 -29.2333335876465, 11.3499994277954 -18.0833320617676, 14.8500003814697 -18.0833320617676, 14.8500003814697 -29.2333335876465, 11.3499994277954 -29.2333335876465))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of monk trawlers 2013",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.2333335876465 11.3499994277954 -18.0833320617676 14.8500003814697"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_monk_catch_location_2013"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-bba62ed4-1406-11ed-92e7-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-bba62ed4-1406-11ed-92e7-0242ac1c0005.json
index 3e2b2de1d..fe0162029 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-bba62ed4-1406-11ed-92e7-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-bba62ed4-1406-11ed-92e7-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-bba62ed4-1406-11ed-92e7-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-bba62ed4-1406-11ed-92e7-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11,6345224380493 -12,3662576675415, 11,6345224380493 -6,10887145996094, 13,6927051544189 -6,10887145996094, 13,6927051544189 -12,3662576675415, 11,6345224380493 -12,3662576675415))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Espécies Aquáticas.Método- Vectorização das Informações Contida no Relatório.",
"keywords": [
- "AGO_OEM_NOR_DAT_DENTEX_ANGOLENSIS",
- "features",
- "Global"
+ "Peixe",
+ "Angola"
],
- "name": "AGO_OEM_NOR_DAT_DENTEX_ANGOLENSIS",
+ "name": "AGO Dentex Angolensis 2016",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-12.3662576675415 11.6345224380493 -6.10887145996094 13.6927051544189"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_NOR_DAT_DENTEX_ANGOLENSIS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-bd00bdbc-5f39-11ec-8d16-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-bd00bdbc-5f39-11ec-8d16-0242ac1c0006.json
index c490632b3..f9dad3c9a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-bd00bdbc-5f39-11ec-8d16-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-bd00bdbc-5f39-11ec-8d16-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-bd00bdbc-5f39-11ec-8d16-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-bd00bdbc-5f39-11ec-8d16-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.24328708648682 -30.6581401824951, 8.24328708648682 -17.2499980926514, 13.9209156036377 -17.2499980926514, 13.9209156036377 -30.6581401824951, 8.24328708648682 -30.6581401824951))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Bathometry features found in Namibian sea, prominent by Walvis Ridge,few canyons and seamounts.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology\nof the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at http://www.gebco.net/\ndata_and_poducts/gridded_bathymetry_data/.\nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Abyssal Classification",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6581401824951 8.24328708648682 -17.2499980926514 13.9209156036377"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_abyssal_classification"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-bd590b9a-f524-11eb-9c7f-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-bd590b9a-f524-11eb-9c7f-0242ac1c0006.json
index 91cd73537..41b5b4740 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-bd590b9a-f524-11eb-9c7f-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-bd590b9a-f524-11eb-9c7f-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-bd590b9a-f524-11eb-9c7f-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-bd590b9a-f524-11eb-9c7f-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Summary of colonies where fur seals bulls and pups are harvested.",
"keywords": [
"pressures",
"Namibia"
],
"name": "NAM EBSA Seal harvesting",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Seal_Harvest"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-be600354-f9a2-11eb-81c3-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-be600354-f9a2-11eb-81c3-0242ac1c0006.json
index 444323961..0291f6a8c 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-be600354-f9a2-11eb-81c3-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-be600354-f9a2-11eb-81c3-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-be600354-f9a2-11eb-81c3-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-be600354-f9a2-11eb-81c3-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "This layer includes mariculture (e.g., mussel and oyster production) and similar industries (e.g., guano production platforms).",
"keywords": [
"pressures",
"Namibia"
],
"name": "NAM EBSA Mariculture and Guano production",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-30.6666679382324 8.16666603088379 -17.25 16.5"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Mariculture_Guano"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-bf102f5c-6c9f-11ec-9422-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-bf102f5c-6c9f-11ec-9422-0242ac1c0006.json
index 8640d1afa..b544c0834 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-bf102f5c-6c9f-11ec-9422-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-bf102f5c-6c9f-11ec-9422-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-bf102f5c-6c9f-11ec-9422-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-bf102f5c-6c9f-11ec-9422-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.3666658401489 -29.75, 11.3666658401489 -18.9333324432373, 14.8166675567627 -18.9333324432373, 14.8166675567627 -29.75, 11.3666658401489 -29.75))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Catch locations of hake freezer trawler 2011 as recorded on log sheets by captains of the fishing vessels and submitted to MFMR.",
"keywords": [
"Current Status Report",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Catch positions of hake freezer trawlers 2011",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.75 11.3666658401489 -18.9333324432373 14.8166675567627"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_freezer_catch_location_2011"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-c34ee79a-5f41-11ec-8ee9-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-c34ee79a-5f41-11ec-8ee9-0242ac1c0006.json
index 915d652d9..a3c3e6635 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-c34ee79a-5f41-11ec-8ee9-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-c34ee79a-5f41-11ec-8ee9-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-c34ee79a-5f41-11ec-8ee9-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-c34ee79a-5f41-11ec-8ee9-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.6743478775024 -29.3678894042969, 11.6743478775024 -18.7169437408447, 15.2750682830811 -18.7169437408447, 15.2750682830811 -29.3678894042969, 11.6743478775024 -29.3678894042969))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Shelf valleys found in the Namibian sea.\nDATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/. \nGeomorphology map from www.bluehabitats.org\nMETHODS: Slight manual revision of the Blue Habitats / Harris 2014 global geomorphology\nmap.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Shelf Valleys",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-29.3678894042969 11.6743478775024 -18.7169437408447 15.2750682830811"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_shelf_valleys"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-c4896686-67ce-11ec-957d-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-c4896686-67ce-11ec-957d-0242ac1c0006.json
index a2d19f187..4ff9c64fd 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-c4896686-67ce-11ec-957d-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-c4896686-67ce-11ec-957d-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-c4896686-67ce-11ec-957d-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-c4896686-67ce-11ec-957d-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((14.4741802215576 -22.8550300598145, 14.4741802215576 -22.8311653137207, 14.4999322891235 -22.8311653137207, 14.4999322891235 -22.8550300598145, 14.4741802215576 -22.8550300598145))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Area delineated as fairway in the Walvis Bay port.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Fairway",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-22.8550300598145 14.4741802215576 -22.8311653137207 14.4999322891235"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_fairway_WVB"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-c5235cc8-f370-11eb-9aa6-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-c5235cc8-f370-11eb-9aa6-0242ac1c0006.json
index 5d60b17a9..07b27615a 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-c5235cc8-f370-11eb-9aa6-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-c5235cc8-f370-11eb-9aa6-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-c5235cc8-f370-11eb-9aa6-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-c5235cc8-f370-11eb-9aa6-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((8.65106201171875 -37.8018264770508, 8.65106201171875 -5.15656185150146, 33.7448616027832 -5.15656185150146, 33.7448616027832 -37.8018264770508, 8.65106201171875 -37.8018264770508))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Revised boundaries of the Ecologically or Biologically Significant Marine Areas in Angola, Namibia and South Africa (updated in 2020). This shapefile presents the revised EBSA boundaries without their proposed zonation.",
"keywords": [
"Biodiversity",
@@ -25,5 +14,12 @@
"Angola"
],
"name": "REG EBSA Revised 2020",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-37.8018264770508 8.65106201171875 -5.15656185150146 33.7448616027832"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:REG_EBSA_nozone_20200224_dd"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-c66b1a0c-6888-11ec-b345-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-c66b1a0c-6888-11ec-b345-0242ac1c0006.json
index eec87bc4c..52a21ddf4 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-c66b1a0c-6888-11ec-b345-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-c66b1a0c-6888-11ec-b345-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-c66b1a0c-6888-11ec-b345-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-c66b1a0c-6888-11ec-b345-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((15.1549777984619 -26.6417236328125, 15.1549777984619 -26.6167182922363, 15.1663703918457 -26.6167182922363, 15.1663703918457 -26.6417236328125, 15.1549777984619 -26.6417236328125))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "The DAWF regularly conducts water quality and quantity monitoring throughout the Namibian coastline to ascertain the quality of effluent being discharged into the Atlantic Ocean. Parameters monitored include ammonia, nitrate, dissolved oxygen and dissolved solids.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Industrial effluent discharge points (south)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-26.6417236328125 15.1549777984619 -26.6167182922363 15.1663703918457"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_WA_effluent_discharge_south_DWA_2020"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-c7560a3a-63d8-11ec-95e2-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-c7560a3a-63d8-11ec-95e2-0242ac1c0006.json
index 1193e4eb2..59161c8e8 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-c7560a3a-63d8-11ec-95e2-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-c7560a3a-63d8-11ec-95e2-0242ac1c0006.json
@@ -1,20 +1,9 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-c7560a3a-63d8-11ec-95e2-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-c7560a3a-63d8-11ec-95e2-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.7537536621094 -23.5503921508789, 11.7537536621094 -17.236385345459, 14.5334968566895 -17.236385345459, 14.5334968566895 -23.5503921508789, 11.7537536621094 -23.5503921508789))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Ramsar wetlands are wetlands of international importance listed under the Convention on Wetlands. The aim of the convention is to halt the worldwide loss of wetlands and to conserve those that remain.",
"keywords": [
"Biodiversity",
@@ -22,5 +11,12 @@
"Namibia"
],
"name": "NAM CSR Wetland of international importance (RAMSAR site)",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-23.5503921508789 11.7537536621094 -17.236385345459 14.5334968566895"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_Ramsar_areas"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-c84b69fc-67e9-11ec-84c5-0242ac1c0006.json b/collection/tempHosting/data-benguelacc/benguelacc-c84b69fc-67e9-11ec-84c5-0242ac1c0006.json
index 77575a6fe..2bbf91c09 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-c84b69fc-67e9-11ec-84c5-0242ac1c0006.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-c84b69fc-67e9-11ec-84c5-0242ac1c0006.json
@@ -1,25 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-c84b69fc-67e9-11ec-84c5-0242ac1c0006.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-c84b69fc-67e9-11ec-84c5-0242ac1c0006.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((11.7582998275757 -28.9656867980957, 11.7582998275757 -16.9659080505371, 25.2628898620605 -16.9659080505371, 25.2628898620605 -28.9656867980957, 11.7582998275757 -28.9656867980957))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
"description": "Locations of rivers in Namibia\nDATA SOURCE: Directorate of Hydrology, Ministry of Agriculture, Water & Forestry, available via NSDI.\nMETHODS: The shapefile was obtained from the HYMNAM project and amended to fit the\ncountry borders used in the Atlas of Namibia. Main rivers were separated from minor\nrivers based on the original Geological Survey river data set. One addition was made i.e. omuramba owambo. One exclusion was made i.e. Sechomib.",
"keywords": [
"Current Status Report",
"Namibia"
],
"name": "NAM CSR Rivers",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-28.9656867980957 11.7582998275757 -16.9659080505371 25.2628898620605"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_rivers"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-cacbe832-1400-11ed-96bf-0242ac1c0005.json b/collection/tempHosting/data-benguelacc/benguelacc-cacbe832-1400-11ed-96bf-0242ac1c0005.json
index 60f700fad..ff202849f 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-cacbe832-1400-11ed-96bf-0242ac1c0005.json
+++ b/collection/tempHosting/data-benguelacc/benguelacc-cacbe832-1400-11ed-96bf-0242ac1c0005.json
@@ -1,26 +1,21 @@
{
"@context": {
- "@vocab": "https://schema.org/",
- "geosparql": "http://www.opengis.net/ont/geosparql#"
+ "@vocab": "https://schema.org/"
},
- "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/schema-dev-jm/code/notebooks/Exploration/data-benguelacc/benguelacc-cacbe832-1400-11ed-96bf-0242ac1c0005.json",
+ "@id": "https://raw.githubusercontent.com/iodepo/odis-arch/master/collection/tempHosting/data-benguelacc/benguelacc-cacbe832-1400-11ed-96bf-0242ac1c0005.json",
"@type": "Dataset",
- "geosparql:hasGeometry": {
- "@type": "http://www.opengis.net/ont/sf#Polygon",
- "geosparql:asWKT": {
- "@type": "geosparql:wktLiteral",
- "@value": "POLYGON((12,1763153076172 -14,7569446563721, 12,1763153076172 -5,56345891952515, 13,4592666625977 -5,56345891952515, 13,4592666625977 -14,7569446563721, 12,1763153076172 -14,7569446563721))"
- },
- "geosparql:crs": {
- "@id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
- }
- },
- "description": "No abstract provided",
+ "description": "Praias. Método-Digitalização dos Dados levantados em Campo.",
"keywords": [
- "AGO_OEM_AMB_PRAIAS",
- "features",
- "Global"
+ "Praia",
+ "Angola"
],
- "name": "AGO_OEM_AMB_PRAIAS",
+ "name": "AGO Praia 2021",
+ "spatialCoverage": {
+ "@type": "Place",
+ "geo": {
+ "@type": "GeoShape",
+ "box": "-14.7569446563721 12.1763153076172 -5.56345891952515 13.4592666625977"
+ }
+ },
"url": "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_AMB_PRAIAS"
}
\ No newline at end of file
diff --git a/collection/tempHosting/data-benguelacc/benguelacc-catalogue.rdf b/collection/tempHosting/data-benguelacc/benguelacc-catalogue.rdf
index e431a479c..d38e879e4 100644
--- a/collection/tempHosting/data-benguelacc/benguelacc-catalogue.rdf
+++ b/collection/tempHosting/data-benguelacc/benguelacc-catalogue.rdf
@@ -1,11 +1,7 @@
@base .
@prefix : .
-@prefix geosparql: .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((10.0565643310547 -29.9711952209473, 10.0565643310547 -18.7997817993164, 14.9446954727173 -18.7997817993164, 14.9446954727173 -29.9711952209473, 10.0565643310547 -29.9711952209473))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """Terraces found in Namibian sea.
DATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/.
Geomorphology map from www.bluehabitats.org
@@ -14,12 +10,12 @@ map.""" ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Terraces" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-29.9711952209473 10.0565643310547 -18.7997817993164 14.9446954727173" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_terraces" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.231640522 -30.658138482, 8.231640522 -17.246196504, 17.073816534 -17.246196504, 17.073816534 -30.658138482, 8.231640522 -30.658138482))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """DESCRIPTION: Shipping is an important use of marine areas in Namibia. Associated
impacts from shipping are underwater noise pollution, oil spillage and other pollutants,
propeller and wake damage in shallow areas, dumping of waste (especially plastic) into
@@ -28,155 +24,151 @@ infrastructure (ports and anchorages).""" ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Shipping intensity" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.658138482 8.231640522 -17.246196504 17.073816534" ] ] ;
:url "https://geodata.benguelacc.org/layers/NAM_CSR_MTP_shipping_intensity:geonode:NAM_CSR_MTP_shipping_intensity" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((14.4294900894165 -22.9716682434082, 14.4294900894165 -22.7771892547607, 14.5439987182617 -22.7771892547607, 14.5439987182617 -22.9716682434082, 14.4294900894165 -22.9716682434082))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Areas delineated for inshore traffic in the Walvis Bay port channel." ;
:keywords "Current Status Report",
"Namibia",
"Port" ;
:name "NAM CSR Inshore traffic zone" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-22.9716682434082 14.4294900894165 -22.7771892547607 14.5439987182617" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_inshore_traffic_zone" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.6833324432373 -23.0, 11.6833324432373 -18.0, 14.0500001907349 -18.0, 14.0500001907349 -23.0, 11.6833324432373 -23.0))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Oceanographic moorings deployed by the Baltic Sea Research Institute in collaboration with MFMR. Moorings collect data on temperature, salinity, oxygen and ocean currents." ;
:keywords "Current Status Report",
"Namibia",
"Research" ;
:name "NAM CSR Moorings" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-23.0 11.6833324432373 -18.0 14.0500001907349" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_RES_Moorings" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((13,0036296844482 -9,33810043334961, 13,0036296844482 -9,3244743347168, 13,1185398101807 -9,3244743347168, 13,1185398101807 -9,33810043334961, 13,0036296844482 -9,33810043334961))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_INFR_WACS",
- "Global",
- "features" ;
- :name "AGO_OEM_INFR_WACS" ;
+ a :Dataset ;
+ :description "Cabos e Ductos Submarinos. Método –Transformou-se as coordenadas para graus decimais e a posterior tratou-se os mesmos no Qgis." ;
+ :keywords "Angola",
+ "Cabos" ;
+ :name "AGO Cabos Submarinos WACS 2021" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-9.33810043334961 13.0036296844482 -9.3244743347168 13.1185398101807" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_INFR_WACS" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11,766676902771 -17,4416732788086, 11,766676902771 -4,83762121200562, 17,6371536254883 -4,83762121200562, 17,6371536254883 -17,4416732788086, 11,766676902771 -17,4416732788086))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_BASE_RIOS",
- "Global",
- "features" ;
- :name "AGO_OEM_BASE_RIOS" ;
+ a :Dataset ;
+ :description "Rios. Método-Shapefile Baixada." ;
+ :keywords "Angola",
+ "Rios" ;
+ :name "AGO Rios 2021" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-17.4416732788086 11.766676902771 -4.83762121200562 17.6371536254883" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_RIOS" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((14.5083322525024 -22.9295749664307, 14.5083322525024 -22.9133644104004, 14.5284357070923 -22.9133644104004, 14.5284357070923 -22.9295749664307, 14.5083322525024 -22.9295749664307))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Areas of interest or reserved for naval defence, including military training areas, ammunition dumping area and naval infrastructure area" ;
:keywords "Current Status Report",
"Military",
"Namibia" ;
:name "NAM CSR Military restricted area III" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-22.9295749664307 14.5083322525024 -22.9133644104004 14.5284357070923" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_DEF_naval_infrastructure_area4" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.087270538239027 -17.29562017624149, 8.087270538239027 -5.884547598165719, 10.153178390369302 -5.884547598165719, 10.153178390369302 -17.29562017624149, 8.087270538239027 -17.29562017624149))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_BASE_200MN",
- "Global",
- "features" ;
- :name "AGO_OEM_BASE_200MN" ;
+ a :Dataset ;
+ :description "Descrição-Milhas Náuticas.Método - Digitalização das Informações com Base na Lei." ;
+ :keywords "Angola",
+ "Nauticas" ;
+ :name "AGO 200MN 2021" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-17.29562017624149 8.087270538239027 -5.884547598165719 10.153178390369302" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_200MN" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((14.4336624145508 -26.708080291748, 14.4336624145508 -22.5122909545898, 16.4223480224609 -22.5122909545898, 16.4223480224609 -26.708080291748, 14.4336624145508 -26.708080291748))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """Namib Naukluft National Park.
DATA SOURCE: Mendelsohn J, Jarvis A, Roberts C and Robertson T. 2002. Atlas of Namibia: A portrait of the land and its people. David Philip Publishers, Cape Town, South Africa. http://www.the-eis.com/""" ;
:keywords "Current Status Report",
"Namibia",
"National Park" ;
:name "NAM CSR Namib Naukluft Park" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-26.708080291748 14.4336624145508 -22.5122909545898 16.4223480224609" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_national_park_Namib_Naukluft_Park" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11,6695585250854 -17,2732696533203, 11,6695585250854 -4,99951696395874, 13,8655052185059 -4,99951696395874, 13,8655052185059 -17,2732696533203, 11,6695585250854 -17,2732696533203))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "Global",
- "Linha_de_costa",
- "features" ;
- :name "Linha_de_costa_" ;
+ a :Dataset ;
+ :description "A linha de costa tem uma extensão de 1.650 Km, é representada por 7 províncias (Cabinda, Zaire, Bengo, Luanda, Cuanza Sul, Benguela e Namibe). Existem 8 grandes cidades (Cabinda, Soyo, Luanda, Sumbe, Lobito, Benguela, Namibe e Tômbwa).Método-Imagens aéreas da costa Angolana do Google Earth 2011 foram salvas como uma série de imagens georreferenciadas usando o plug-in Shape2Earth para o programa de código aberto MapWindow GIS (disponível em: http://shape2earth.com). As imagens foram capturadas em uma escala consistente (barra de escala do Google Earth a 900 m), embora algumas exceções fossem necessárias devido à qualidade e resolução variadas das imagens do Google Earth. As imagens capturadas foram importadas para ArcMap 10 (ESRI), e serviram como a linha de base em que os shapefiles de habitat costeiro foram digitalizados. A digitalização foi geralmente realizada em uma escala de 1: 8000, embora, como acima, a resolução variada das imagens ocasionalmente necessitasse de um zoom de mais ou menos a partir desta escala de base. A projeção WGS84 (Universal Transverse Mercator) foi usada para todos os shapefiles." ;
+ :keywords "Angola",
+ "Costa" ;
+ :name "AGO Linha de Costa 2011" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-17.2732696533203 11.6695585250854 -4.99951696395874 13.8655052185059" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:Linha_de_costa" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((14.4846172332764 -22.9544448852539, 14.4846172332764 -22.8528575897217, 14.5290250778198 -22.8528575897217, 14.5290250778198 -22.9544448852539, 14.4846172332764 -22.9544448852539))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Areas delineated for channels in the Walvis Bay port." ;
:keywords "Current Status Report",
"Namibia",
"Port" ;
:name "NAM CSR channels Walvis Bay port" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-22.9544448852539 14.4846172332764 -22.8528575897217 14.5290250778198" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MTP_channels_WVB" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((10.0169439315796 -29.6502780914307, 10.0169439315796 -17.2502765655518, 14.7502784729004 -17.2502765655518, 14.7502784729004 -29.6502780914307, 10.0169439315796 -29.6502780914307))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of horse mackerel trawlers 2013" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-29.6502780914307 10.0169439315796 -17.2502765655518 14.7502784729004" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_horsemackerel_catch_location_2010" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.96666622161865 -30.1500015258789, 8.96666622161865 -17.2666664123535, 14.5333337783813 -17.2666664123535, 14.5333337783813 -30.1500015258789, 8.96666622161865 -30.1500015258789))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of blue sharks 2013" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.1500015258789 8.96666622161865 -17.2666664123535 14.5333337783813" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2013" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((14.4435367584229 -22.8847522735596, 14.4435367584229 -22.879430770874, 14.4476613998413 -22.879430770874, 14.4476613998413 -22.8847522735596, 14.4435367584229 -22.8847522735596))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Important area for kayak tours" ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Kayak tours" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-22.8847522735596 14.4435367584229 -22.879430770874 14.4476613998413" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_TOUR_kayak_tours" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((10.270791053772 -28.9087295532227, 10.270791053772 -16.8774013519287, 16.6627883911133 -16.8774013519287, 16.6627883911133 -28.9087295532227, 10.270791053772 -28.9087295532227))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """Mineable deposit of phosphate as they are spatially located at the ocean
floor within the Namibian marine environment mostly found at the mouth of Kunene river and the area between Swakopmund and Lüderitz.""" ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Mineable deposit of phosphate" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-28.9087295532227 10.270791053772 -16.8774013519287 16.6627883911133" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_phosphorite" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((13.9971132278442 -28.6291255950928, 13.9971132278442 -21.8108005523682, 16.4478759765625 -21.8108005523682, 16.4478759765625 -28.6291255950928, 13.9971132278442 -28.6291255950928))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """Important bird areas along the Namibian coast. IBAs are selected according to a set of criteria (standards) determined by BirdLife International (www.birdlife.org).
DATA SOURCE: BirdLife International, 2020. Important Bird and Biodiversity Area (IBA)
digital boundaries: September 2020 version. BirdLife International, Cambridge, UK.
@@ -185,23 +177,23 @@ METHODS: Shapefile created along the coastline of Namibia where IBAs are adjacen
"Current Status Report",
"Namibia" ;
:name "NAM CSR Important bird areas" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-28.6291255950928 13.9971132278442 -21.8108005523682 16.4478759765625" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_Marine_Imp_Bird_Areas_coast" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((10.3166666030884 -27.8000011444092, 10.3166666030884 -17.9333324432373, 14.3833341598511 -17.9333324432373, 14.3833341598511 -27.8000011444092, 10.3166666030884 -27.8000011444092))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of short fin mako 2011" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-27.8000011444092 10.3166666030884 -17.9333324432373 14.3833341598511" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2011" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.74575328826904 -20.8536739349365, 8.74575328826904 -19.3415470123291, 9.92459964752197 -19.3415470123291, 9.92459964752197 -20.8536739349365, 8.74575328826904 -20.8536739349365))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """Ridges found in Namibian sea.
DATA SOURCE: Harris, P.T., Macmillan-Lawler, M., Rupp, J., Baker, E.K. 2014. Geomorphology of the oceans. Marine Geology, 352: 4-24. GEBCO (General Bathymetric Chart of the Oceans) Available at: http://www.gebco.net/data_and_poducts/gridded_bathymetry_data/.
Geomorphology map from www.bluehabitats.org
@@ -210,264 +202,248 @@ map.""" ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Ridges" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-20.8536739349365 8.74575328826904 -19.3415470123291 9.92459964752197" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_ridges0" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.666657666806568 -16.74679706300943, 11.666657666806568 -16.508102374820844, 11.755216397069958 -16.508102374820844, 11.755216397069958 -16.74679706300943, 11.666657666806568 -16.74679706300943))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_TUR_BAIA_TIGRES",
- "Global",
- "features" ;
- :name "AGO_OEM_TUR_BAIA_TIGRES" ;
+ a :Dataset ;
+ :description "Baia dos Tigres." ;
+ :keywords "Angola",
+ "Baia" ;
+ :name "AGO Baia dos Tigres 2022" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-16.74679706300943 11.666657666806568 -16.508102374820844 11.755216397069958" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_TUR_BAIA_TIGRES" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11,7410373687744 -16,6001720428467, 11,7410373687744 -8,76489543914795, 13,5482864379883 -8,76489543914795, 13,5482864379883 -16,6001720428467, 11,7410373687744 -16,6001720428467))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_PES_MARICULTURA",
- "Global",
- "features" ;
- :name "AGO_OEM_PES_MARICULTURA" ;
+ a :Dataset ;
+ :description "Áreas Favoráveis para Maricultura .Método- Digitalização das Informações com Base na Lei." ;
+ :keywords "Angola",
+ "Maricultura" ;
+ :name "AGO Maricultura 2021" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-16.6001720428467 11.7410373687744 -8.76489543914795 13.5482864379883" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PES_MARICULTURA" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.24328708648682 -30.6581401824951, 8.24328708648682 -17.2429466247559, 16.4548759460449 -17.2429466247559, 16.4548759460449 -30.6581401824951, 8.24328708648682 -30.6581401824951))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "The Namibian Marine Spatial Planning Areas" ;
:keywords "Current Status Report",
"Namibia",
"boundaries" ;
:name "NAM CSR MSP Areas" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.6581401824951 8.24328708648682 -17.2429466247559 16.4548759460449" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_planning_areas0" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11,8175563812256 -15,8014841079712, 11,8175563812256 -5,3972020149231, 13,4552631378174 -5,3972020149231, 13,4552631378174 -15,8014841079712, 11,8175563812256 -15,8014841079712))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_INFR_ANCORADOUROS",
- "Global",
- "features" ;
- :name "AGO_OEM_INFR_ANCORADOUROS" ;
+ a :Dataset ;
+ :description "Ancoradouros .Método- Digitalização dos Dados com Base na Lei." ;
+ :keywords "Ancoras",
+ "Angola" ;
+ :name "AGO Ancoradouros 2022" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-15.8014841079712 11.8175563812256 -5.3972020149231 13.4552631378174" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_INFR_ANCORADOUROS" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((-180,0 -90,0, -180,0 90,0, 180,0 90,0, 180,0 -90,0, -180,0 -90,0))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_PET_POCOS",
- "Global",
- "features" ;
- :name "AGO_OEM_PET_POCOS" ;
- :url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PET_POCOS" .
-
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((16.4060573577881 -28.6270942687988, 16.4060573577881 -28.5342922210693, 16.5021381378174 -28.5342922210693, 16.5021381378174 -28.6270942687988, 16.4060573577881 -28.6270942687988))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Townlands of Oranjemund. Data supplied by NamDeb." ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Townlands Oranjemund" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-28.6270942687988 16.4060573577881 -28.5342922210693 16.5021381378174" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_townlands_Oranjemund" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.0833330154419 -29.7333335876465, 11.0833330154419 -17.283332824707, 14.8166675567627 -17.283332824707, 14.8166675567627 -29.7333335876465, 11.0833330154419 -29.7333335876465))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations of hake freezer trawlers 2014 as recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of hake freezer tawlers 2014" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-29.7333335876465 11.0833330154419 -17.283332824707 14.8166675567627" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_freezer_catch_location_2014" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((14.4066858291626 -23.5574855804443, 14.4066858291626 -22.574462890625, 14.7291564941406 -22.574462890625, 14.7291564941406 -23.5574855804443, 14.4066858291626 -23.5574855804443))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Important areas for bird watching" ;
:keywords "Biodiversity",
"Current Status Report",
"Namibia" ;
:name "NAM CSR Birding areas" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-23.5574855804443 14.4066858291626 -22.574462890625 14.7291564941406" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_TOUR_birding_areas" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((13.2166662216187 -23.6916675567627, 13.2166662216187 -21.5566654205322, 13.9533338546753 -21.5566654205322, 13.9533338546753 -23.6916675567627, 13.2166662216187 -23.6916675567627))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of sardine purse seiners 2017" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-23.6916675567627 13.2166662216187 -21.5566654205322 13.9533338546753" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_sardine_catch_location_2017" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((5.54784643411301 -17.531729700887247, 5.54784643411301 -7.552288756854756, 7.357628462263919 -7.552288756854756, 7.357628462263919 -17.531729700887247, 5.54784643411301 -17.531729700887247))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_BASE_350MN",
- "Global",
- "features" ;
- :name "AGO_OEM_BASE_350MN" ;
+ a :Dataset ;
+ :description "Descrição-Milhas Náuticas.Método - Digitalização das Informações com Base na Lei." ;
+ :keywords "Angola",
+ "Nauticas" ;
+ :name "AGO 350MN 2021" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-17.531729700887247 5.54784643411301 -7.552288756854756 7.357628462263919" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_350MN" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((3.0 -20.0, 3.0 -2.0, 13.4973001480103 -2.0, 13.4973001480103 -20.0, 3.0 -20.0))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Descrição-Em geral a batimetria da costa angolana é caracterizada pela plataforma continental que varia em profundidade. O declive da plataforma ocorre a cerca de 30 a 40km da costa, partir destas profundidades. O acidente mais notável na batimetria ao largo da costa angolana é pronunciado pelo canhão existente na foz do rio congo." ;
:keywords "AGO_OEM_BASE_BAT",
"Global",
"features" ;
:name "AGO_OEM_BASE_BAT" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-20.0 3.0 -2.0 13.4973001480103" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_BAT" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((12.7299995422363 -26.9200000762939, 12.7299995422363 -19.6799983978271, 14.9800004959106 -19.6799983978271, 14.9800004959106 -26.9200000762939, 12.7299995422363 -26.9200000762939))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of snoek 2015" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-26.9200000762939 12.7299995422363 -19.6799983978271 14.9800004959106" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2015" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8,19983768463135 -17,2501811981201, 8,19983768463135 -5,88454723358154, 11,75648021698 -5,88454723358154, 11,75648021698 -17,2501811981201, 8,19983768463135 -17,2501811981201))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_BASE_ZEE",
- "Global",
- "features" ;
- :name "AGO_OEM_BASE_ZEE" ;
+ a :Dataset ;
+ :description """Descrição Zona Econômica Exclusiva (ZEE) é uma distância de 200 milhas náuticas (cerca de 370 quilômetros) a partir da costa, que vai além das águas territoriais, distante 12 milhas ou 22 quilômetros da costa. Nesta faixa cada país costeiro tem prioridade para a utilização e proteção dos recursos naturais do mar. Além da exploração e gestão dos recursos naturais, o país costeiro exercerá nesta zona a jurisdição no que concerne ao estabelecimento e utilização de ilhas artificiais, instalações e estruturas e investigação científica marinha.
+Angola detém uma Zona Econômica Exclusiva com extensão de 518.433 Km².Método- Shapefile fornecido""" ;
+ :keywords "Angola",
+ "ZEE" ;
+ :name "AGO Zona Economica Exclusiva 2022" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-17.2501811981201 8.19983768463135 -5.88454723358154 11.75648021698" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_ZEE" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.3853330612183 -25.0000267028809, 11.3853330612183 -17.2429466247559, 14.839168548584 -17.2429466247559, 14.839168548584 -25.0000267028809, 11.3853330612183 -25.0000267028809))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Generalised spawning areas of pelagic fish - sardine, horse mackerel, anchovy." ;
:keywords "Current Status Report",
"Namibia",
"Spawning" ;
:name "NAM CSR Spawning areas of pelagic fish" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-25.0000267028809 11.3853330612183 -17.2429466247559 14.839168548584" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_pelagic_spawning_area1" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.3666658401489 -29.716667175293, 11.3666658401489 -17.8833332061768, 14.8500003814697 -17.8833332061768, 14.8500003814697 -29.716667175293, 11.3666658401489 -29.716667175293))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR" ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of monk trawlers 2012" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-29.716667175293 11.3666658401489 -17.8833332061768 14.8500003814697" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_monk_catch_location_2012" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((9.38333320617676 -27.8000011444092, 9.38333320617676 -17.5666656494141, 14.6166667938232 -17.5666656494141, 14.6166667938232 -27.8000011444092, 9.38333320617676 -27.8000011444092))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of blue sharks 2011" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-27.8000011444092 9.38333320617676 -17.5666656494141 14.6166667938232" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2011" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11,336573600769 -17,2373352050781, 11,336573600769 -16,5233535766602, 11,6770877838135 -16,5233535766602, 11,6770877838135 -17,2373352050781, 11,336573600769 -17,2373352050781))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_NOR_DAT_MERLUCCIUS_CAPENSIS",
- "Global",
- "features" ;
- :name "AGO_OEM_NOR_DAT_MERLUCCIUS_CAPENSIS" ;
+ a :Dataset ;
+ :description "Espécies Aquáticas. Método- Vectorização das Informações Contida no Relatório." ;
+ :keywords "Angola",
+ "Peixe" ;
+ :name "AGO Mercuccius Capensis 2016" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-17.2373352050781 11.336573600769 -16.5233535766602 11.6770877838135" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_NOR_DAT_MERLUCCIUS_CAPENSIS" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.73333263397217 -30.3666667938232, 8.73333263397217 -17.6666660308838, 14.7000007629395 -17.6666660308838, 14.7000007629395 -30.3666667938232, 8.73333263397217 -30.3666667938232))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of swordfish 2010" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.3666667938232 8.73333263397217 -17.6666660308838 14.7000007629395" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_swordfish_catch_location_2010" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.39999961853027 -30.3333339691162, 8.39999961853027 -17.2666664123535, 14.4833335876465 -17.2666664123535, 14.4833335876465 -30.3333339691162, 8.39999961853027 -30.3333339691162))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of short fin mako 2016" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.3333339691162 8.39999961853027 -17.2666664123535 14.4833335876465" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2016" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.9666662216187 -29.7833347320557, 11.9666662216187 -19.9166660308838, 14.9833335876465 -19.9166660308838, 14.9833335876465 -29.7833347320557, 11.9666662216187 -29.7833347320557))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of hake long line vessels 2014" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-29.7833347320557 11.9666662216187 -19.9166660308838 14.9833335876465" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_hake_LL_catch_location_2014" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.39999961853027 -30.3333339691162, 8.39999961853027 -17.2666664123535, 14.9000005722046 -17.2666664123535, 14.9000005722046 -30.3333339691162, 8.39999961853027 -30.3333339691162))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of other sharks (fins) 2016" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.3333339691162 8.39999961853027 -17.2666664123535 14.9000005722046" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shark_fin_catch_locations_2016" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.31666660308838 -29.8333339691162, 8.31666660308838 -17.25, 15.1000003814697 -17.25, 15.1000003814697 -29.8333339691162, 8.31666660308838 -29.8333339691162))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of short fin mako 2015" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-29.8333339691162 8.31666660308838 -17.25 15.1000003814697" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2015" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.3333330154419 -29.1500015258789, 11.3333330154419 -17.8999996185303, 14.8500003814697 -17.8999996185303, 14.8500003814697 -29.1500015258789, 11.3333330154419 -29.1500015258789))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of monk trawlers 2014" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-29.1500015258789 11.3333330154419 -17.8999996185303 14.8500003814697" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_monk_catch_location_2014" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.24328708648682 -30.6581401824951, 8.24328708648682 -17.2429466247559, 16.4548759460449 -17.2429466247559, 16.4548759460449 -30.6581401824951, 8.24328708648682 -30.6581401824951))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """The United Nations Convention on Law of the Sea (UNCLOS) indicates that the exclusive economic zone (EEZ) of a coastal state extends 200 nm from the baseline. Within this area, the coastal nation has sole exploitation rights over all natural resources.
Namibia has ratified this convention.
DATA SOURCE: Flanders Marine Institute (2019). Maritime Boundaries Geodatabase: Maritime Boundaries and Exclusive Economic Zones (200NM), version 11. available online at http://www.marineregions.org/. https://doi.org/10.14284/38""" ;
@@ -475,184 +451,183 @@ DATA SOURCE: Flanders Marine Institute (2019). Maritime Boundaries Geodatabase:
"Namibia",
"boundaries" ;
:name "NAM CSR EEZ" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.6581401824951 8.24328708648682 -17.2429466247559 16.4548759460449" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_EEZ_area" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Recreational shore-based fishery sector targeting kob, steenbras, galjoen and blacktail." ;
:keywords "Fishing",
"Namibia",
"pressures" ;
:name "NAM EBSA Linefish fishery" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.6666679382324 8.16666603088379 -17.25 16.5" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Linefish" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((10.4137411117554 -8.5845947265625, 10.4137411117554 -5.02650260925293, 13.3964872360229 -5.02650260925293, 13.3964872360229 -8.5845947265625, 10.4137411117554 -8.5845947265625))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "bla bla" ;
+ a :Dataset ;
+ :description "Blocos Petrolíferos. Georreferenciação do Mapa e posterior vectorização dos dados importantes." ;
:keywords "Angola",
- "petroleum" ;
- :name "AGO OEM PET BLOCOS INSTALACOES 2022" ;
+ "Petroleo" ;
+ :name "AGO Blocos Com Instalacoes Petroliferas 2021" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-8.5845947265625 10.4137411117554 -5.02650260925293 13.3964872360229" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_PET_BLOCOS_INSTALACOES0" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.38333320617676 -30.3333339691162, 8.38333320617676 -17.2666664123535, 14.9000005722046 -17.2666664123535, 14.9000005722046 -30.3333339691162, 8.38333320617676 -30.3333339691162))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of blue sharks 2016" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.3333339691162 8.38333320617676 -17.2666664123535 14.9000005722046" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_blue_shark_catch_location_2016" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((7.95583963394165 -30.1668968200684, 7.95583963394165 -16.9515724182129, 25.2544174194336 -16.9515724182129, 25.2544174194336 -30.1668968200684, 7.95583963394165 -30.1668968200684))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """Geophysical and geoscientific research have been done in the area like the shelf edges and transects from east to west of Namibian ocean space to create knowledge, discoveries and development of mineral resources and to understand the
earth system and geology within Namibian EEZ.""" ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Geology" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.1668968200684 7.95583963394165 -16.9515724182129 25.2544174194336" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_geology" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((13.0199995040894 -26.980001449585, 13.0199995040894 -20.5, 14.9700002670288 -20.5, 14.9700002670288 -26.980001449585, 13.0199995040894 -26.980001449585))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of snoek 2013" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-26.980001449585 13.0199995040894 -20.5 14.9700002670288" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2013" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.641861996291713 -18.105003314512683, 11.641861996291713 -4.293597438621827, 24.362327600695224 -4.293597438621827, 24.362327600695224 -18.105003314512683, 11.641861996291713 -18.105003314512683))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
- :description "No abstract provided" ;
- :keywords "AGO_OEM_BASE_PROV",
- "Global",
- "features" ;
- :name "AGO_OEM_BASE_PROV0" ;
+ a :Dataset ;
+ :description "Divisão Político-Administrativa (DPA).Método- Shapefile baixada" ;
+ :keywords "Angola",
+ "Provincia" ;
+ :name "AGO Provincias 2020" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-18.105003314512683 11.641861996291713 -4.293597438621827 24.362327600695224" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_PROV0" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.459552140912974 -28.952906539610662, 11.459552140912974 -17.255033839593825, 18.772535270585788 -17.255033839593825, 18.772535270585788 -28.952906539610662, 11.459552140912974 -28.952906539610662))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Spatial allocation of mining licences within the Namibian ocean space." ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Active mining licences (Sept 2020)" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-28.952906539610662 11.459552140912974 -17.255033839593825 18.772535270585788" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_GREE_mining_licence_Sept2020" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((12.7699995040894 -26.980001449585, 12.7699995040894 -19.8299999237061, 14.9700002670288 -19.8299999237061, 14.9700002670288 -26.980001449585, 12.7699995040894 -26.980001449585))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of snoek 2012" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-26.980001449585 12.7699995040894 -19.8299999237061 14.9700002670288" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_snoek_catch_locations_2012" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.7364120483398 -21.1936912536621, 11.7364120483398 -17.1512336730957, 13.959716796875 -17.1512336730957, 13.959716796875 -21.1936912536621, 11.7364120483398 -21.1936912536621))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Skeleton Coast National Park. DATA SOURCE: Mendelsohn J, Jarvis A, Roberts C and Robertson T. 2002. Atlas of Namibia: A portrait of the land and its people. David Philip Publishers, Cape Town, South Africa. http://www.the-eis.com/" ;
:keywords "Current Status Report",
"Namibia",
"National Park" ;
:name "NAM CSR Skeleton Coast Park" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-21.1936912536621 11.7364120483398 -17.1512336730957 13.959716796875" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_ENV_national_park_Skeleton_Coast_Park" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((14.4133920669556 -22.9411106109619, 14.4133920669556 -22.8431720733643, 14.5383968353271 -22.8431720733643, 14.5383968353271 -22.9411106109619, 14.4133920669556 -22.9411106109619))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Popular surf spots in the area of Walvis Bay and Swakopmund" ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Surf spots" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-22.9411106109619 14.4133920669556 -22.8431720733643 14.5383968353271" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_TOUR_surf_spots" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((12.196665763855 -23.7200012207031, 12.196665763855 -18.9266662597656, 13.9000005722046 -18.9266662597656, 13.9000005722046 -23.7200012207031, 12.196665763855 -23.7200012207031))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of sardine purse seiners 2015" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-23.7200012207031 12.196665763855 -18.9266662597656 13.9000005722046" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_sardine_catch_location_2015" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((9.51666641235352 -30.1500015258789, 9.51666641235352 -17.2999992370605, 14.5333337783813 -17.2999992370605, 14.5333337783813 -30.1500015258789, 9.51666641235352 -30.1500015258789))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of short fin mako 2013" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.1500015258789 9.51666641235352 -17.2999992370605 14.5333337783813" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shortfinmako_catch_location_2013" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((10.3166666030884 -27.8000011444092, 10.3166666030884 -17.9333324432373, 14.6166667938232 -17.9333324432373, 14.6166667938232 -27.8000011444092, 10.3166666030884 -27.8000011444092))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Catch locations are recorded on log sheets by captains of the fishing vessels and submitted to MFMR." ;
:keywords "Current Status Report",
"Fishing",
"Namibia" ;
:name "NAM CSR Catch positions of other sharks (fins) 2011" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-27.8000011444092 10.3166666030884 -17.9333324432373 14.6166667938232" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_shark_fin_catch_locations_2011" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Commercial industry targeting horse mackerel using mid-water trawl." ;
:keywords "Fishing",
"Namibia",
"pressures" ;
:name "NAM EBSA Horse Mackerel fishery" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.6666679382324 8.16666603088379 -17.25 16.5" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Horse_Mackerel" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((13.8247537612915 -28.7086925506592, 13.8247537612915 -17.3897972106934, 24.3216743469238 -17.3897972106934, 24.3216743469238 -28.7086925506592, 13.8247537612915 -28.7086925506592))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Townland areas" ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Townlands" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-28.7086925506592 13.8247537612915 -17.3897972106934 24.3216743469238" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_BASE_townlands" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11.6666994094849 -28.6667003631592, 11.6666994094849 -17.3299999237061, 16.2000102996826 -17.3299999237061, 16.2000102996826 -28.6667003631592, 11.6666994094849 -28.6667003631592))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Oceanographic monitoring stations sampled during hake and monk biomass surveys. Parameters samples include temperature, salinity and oxygen." ;
:keywords "Current Status Report",
"Namibia",
"Research" ;
:name "NAM CSR Additional monitoring stations" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-28.6667003631592 11.6666994094849 -17.3299999237061 16.2000102996826" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_RES_additional_monitoring_stations" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((7.677234554696233 -29.97835405565207, 7.677234554696233 -16.5192511983747, 15.512244252128317 -16.5192511983747, 15.512244252128317 -29.97835405565207, 7.677234554696233 -29.97835405565207))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """Fishing intensity of midwater trawlers from vessel monitoring systems.
METHODS:
· VMS point location data for all vessels in each of the nine fisheries were collated for the period 2014 – 2017. The data were cleaned, including removal of clear errors (e.g. points on land) and clipped to the study area.
@@ -667,23 +642,22 @@ intensity use.
"Fishing",
"Namibia" ;
:name "NAM CSR Fishing intensity of midwater trawlers" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-29.97835405565207 7.677234554696233 -16.5192511983747 15.512244252128317" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_intensity_midwater0" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((11,1544990539551 -28,6421127319336, 11,1544990539551 -3,94752788543701, 16,4741401672363 -3,94752788543701, 16,4741401672363 -28,6421127319336, 11,1544990539551 -28,6421127319336))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Fonte-Harris, LR 2012. Mapeamento da linha costeira do Grande Ecossistema Marinho da Corrente de Benguela 2011: Empreendido para o projeto da Comissão da Corrente de Benguela (BCC) “Avaliação da Biodiversidade Espacial (BCC-SBA) e Gestão Espacial, incluindo Áreas Marinhas Protegidas”. Universidade Metropolitana Nelson Mandela, Port Elizabeth, África do Sul." ;
- :keywords "AGO_OEM_BASE_coastline_missing_pieces",
- "Global",
- "features" ;
- :name "AGO_OEM_BASE_coastline_missing_pieces" ;
+ :keywords "Angola",
+ "Linha de Costa" ;
+ :name "AGO coastline missing pieces 2022" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-28.6421127319336 11.1544990539551 -3.94752788543701 16.4741401672363" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:AGO_OEM_BASE_coastline_missing_pieces" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((13.7344369888306 -24.5075435638428, 13.7344369888306 -21.3312187194824, 14.6161508560181 -21.3312187194824, 14.6161508560181 -24.5075435638428, 13.7344369888306 -24.5075435638428))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description """Kob spawning areas along the Namibian coast.
DATA SOURCE: Mendelsohn J, Jarvis A, Roberts C and Robertson T. 2002. Atlas of Namibia: A portrait of the land and its people. David Philip Publishers, Cape Town, South Africa.
METHODS: Adapted from a map provided by the Geological Survey of Namibia for the Atlas of Namibia. http://www.the-eis.com/""" ;
@@ -691,66 +665,66 @@ METHODS: Adapted from a map provided by the Geological Survey of Namibia for the
"Namibia",
"Spawning" ;
:name "NAM CSR Kob spawning areas" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-24.5075435638428 13.7344369888306 -21.3312187194824 14.6161508560181" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_FISH_kob_spawning_area1" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((14.4172496795654 -22.9544429779053, 14.4172496795654 -22.750207901001, 14.4948472976685 -22.750207901001, 14.4948472976685 -22.9544429779053, 14.4172496795654 -22.9544429779053))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Areas delineated for mariculture." ;
:keywords "Current Status Report",
"Namibia" ;
:name "NAM CSR Mariculture areas WB" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-22.9544429779053 14.4172496795654 -22.750207901001 14.4948472976685" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_CSR_MARI_mariculture_areas_WVB" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.16666603088379 -30.6666679382324, 8.16666603088379 -17.25, 16.5 -17.25, 16.5 -30.6666679382324, 8.16666603088379 -30.6666679382324))"^^geosparql:wktLiteral ;
- geosparql:crs ] ;
+ a :Dataset ;
:description "Commercial pole fishery targeting albacore and yellowfin tuna." ;
:keywords "Fishing",
"Namibia",
"pressures" ;
:name "NAM EBSA Large pelagic pole fishery (effort)" ;
+ :spatialCoverage [ a :Place ;
+ :geo [ a :GeoShape ;
+ :box "-30.6666679382324 8.16666603088379 -17.25 16.5" ] ] ;
:url "https://geodata.benguelacc.org/layers/geonode_deploy_data:geonode:NAM_Large_Pelagic_Pole_Effort" .
- a :Dataset ;
- geosparql:hasGeometry [ a ;
- geosparql:asWKT "POLYGON((8.96666622161865 -30.1500015258789, 8.96666622161865 -17.2666664123535, 14.5 -17.2666664123535, 14.5 -30.1500015258789, 8.96666622161865 -30.1500015258789))"^^geosparql:wktLiteral ;
- geosparql:crs