+
+
+
+
+
+
+
+
+
Land
+
+
+
+
About
+
Derived from 10m coastline. Continental polygons broken into smaller, contiguous pieces to avoid having too many points in any one polygon, facilitating faster data processing in certain software applications.
+
(below) Yucatan peninsula, Cuba, and Hispaniola.
+
+
Issues
+
Coastline accuracy is suspect for northern Russia and southern Chile.
+
Some rank 5 land should be reclassified as rank 6.
+
Version History
+
+
+ 5.1.1
+
+
+ 4.1.0
+
+
+ 4.0.0
+
+
+ 3.0.1
+
+
+ 3.0.0
+
+
+ 2.0.0
+
+
+ 1.3.0
+
+
+ 1.1.0
+
+
+ 1.0.0
+
+
+
+
The master changelog is available on Github »
+
+
+
+
+
+ This entry was posted
+ on Monday, November 16th, 2009 at 1:57 am and is filed under 10m-physical-vectors .
+ You can follow any responses to this entry through the RSS 2.0 feed.
+
+ Both comments and pings are currently closed.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/indexer/src/main/resources/land/ne_10m_land.VERSION.txt b/indexer/src/main/resources/land/ne_10m_land.VERSION.txt
new file mode 100644
index 00000000..ac14c3df
--- /dev/null
+++ b/indexer/src/main/resources/land/ne_10m_land.VERSION.txt
@@ -0,0 +1 @@
+5.1.1
diff --git a/indexer/src/main/resources/land/ne_10m_land.cpg b/indexer/src/main/resources/land/ne_10m_land.cpg
new file mode 100644
index 00000000..7edc66b0
--- /dev/null
+++ b/indexer/src/main/resources/land/ne_10m_land.cpg
@@ -0,0 +1 @@
+UTF-8
diff --git a/indexer/src/main/resources/land/ne_10m_land.dbf b/indexer/src/main/resources/land/ne_10m_land.dbf
new file mode 100644
index 00000000..56e8b784
Binary files /dev/null and b/indexer/src/main/resources/land/ne_10m_land.dbf differ
diff --git a/indexer/src/main/resources/land/ne_10m_land.prj b/indexer/src/main/resources/land/ne_10m_land.prj
new file mode 100644
index 00000000..0ae685b4
--- /dev/null
+++ b/indexer/src/main/resources/land/ne_10m_land.prj
@@ -0,0 +1 @@
+GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]
diff --git a/indexer/src/main/resources/land/ne_10m_land.shp b/indexer/src/main/resources/land/ne_10m_land.shp
new file mode 100644
index 00000000..6dd25a1c
Binary files /dev/null and b/indexer/src/main/resources/land/ne_10m_land.shp differ
diff --git a/indexer/src/main/resources/land/ne_10m_land.shx b/indexer/src/main/resources/land/ne_10m_land.shx
new file mode 100644
index 00000000..1e969da0
Binary files /dev/null and b/indexer/src/main/resources/land/ne_10m_land.shx differ
diff --git a/indexer/src/test/java/au/org/aodn/esindexer/service/IndexerServiceTests.java b/indexer/src/test/java/au/org/aodn/esindexer/service/IndexerServiceTests.java
index f0002ff1..1ba2309c 100644
--- a/indexer/src/test/java/au/org/aodn/esindexer/service/IndexerServiceTests.java
+++ b/indexer/src/test/java/au/org/aodn/esindexer/service/IndexerServiceTests.java
@@ -134,7 +134,7 @@ public void verifyGetDocumentByUUID() throws IOException {
String expected = indexerObjectMapper.readTree(expectedData).toPrettyString();
String actual = indexerObjectMapper.readTree(test).toPrettyString();
-
+ logger.info(actual);
JSONAssert.assertEquals(expected, actual, JSONCompareMode.STRICT);
} catch (JSONException e) {
throw new RuntimeException(e);
@@ -165,7 +165,7 @@ public void verifyAssociatedRecordIndexer() throws IOException{
String expected = indexerObjectMapper.readTree(expectedData).toPrettyString();
String actual = indexerObjectMapper.readTree(resultJson).toPrettyString();
-
+ logger.info(actual);
JSONAssert.assertEquals(expected, actual, JSONCompareMode.STRICT);
} catch (JSONException e) {
throw new RuntimeException(e);
@@ -196,7 +196,7 @@ public void verifyLogoLinkAddedOnIndex() throws IOException {
String expected = indexerObjectMapper.readTree(expectedData).toPrettyString();
String actual = indexerObjectMapper.readTree(test).toPrettyString();
-
+ logger.info(actual);
JSONAssert.assertEquals(expected, actual, JSONCompareMode.STRICT);
} catch (JSONException e) {
throw new RuntimeException(e);
@@ -223,7 +223,7 @@ public void verifyThumbnailLinkAddedOnIndex() throws IOException {
String expected = indexerObjectMapper.readTree(expectedData).toPrettyString();
String actual = indexerObjectMapper.readTree(test).toPrettyString();
-
+ logger.info(actual);
JSONAssert.assertEquals(expected, actual, JSONCompareMode.STRICT);
} catch (JSONException e) {
throw new RuntimeException(e);
@@ -237,7 +237,7 @@ public void verifyThumbnailLinkAddedOnIndex() throws IOException {
* @throws IOException
*/
@Test
- public void verifyThumbnailLinkNullAddedOnIndex() throws IOException {
+ public void verifyThumbnailLinkNullAdbbdedOnIndex() throws IOException {
String uuid = "5905b3eb-aad0-4f9c-a03e-a02fb3488082";
try {
String expectedData = readResourceFile("classpath:canned/sample7_stac.json");
@@ -248,8 +248,6 @@ public void verifyThumbnailLinkNullAddedOnIndex() throws IOException {
Hit
objectNodeHit = indexerService.getDocumentByUUID(uuid);
String test = String.valueOf(Objects.requireNonNull(objectNodeHit.source()));
- logger.info(test);
-
String expected = indexerObjectMapper.readTree(expectedData).toPrettyString();
String actual = indexerObjectMapper.readTree(test).toPrettyString();
diff --git a/indexer/src/test/java/au/org/aodn/esindexer/service/StacCollectionMapperServiceTests.java b/indexer/src/test/java/au/org/aodn/esindexer/service/StacCollectionMapperServiceTests.java
index 4b6fb024..55d93188 100644
--- a/indexer/src/test/java/au/org/aodn/esindexer/service/StacCollectionMapperServiceTests.java
+++ b/indexer/src/test/java/au/org/aodn/esindexer/service/StacCollectionMapperServiceTests.java
@@ -154,7 +154,7 @@ public void createIndexerService() throws IOException {
}
@Test
- public void verifyPointOfContactCorrect() throws IOException, JAXBException, JSONException {
+ public void verifyPointOfContactCorrect() throws IOException, JSONException {
// We only index one record, the
String xml = readResourceFile("classpath:canned/sample8.xml");
String expected = readResourceFile("classpath:canned/sample8_stac.json");
@@ -207,8 +207,6 @@ public void verifyLicenseCorrect() throws IOException, JSONException {
String xml3 = readResourceFile("classpath:canned/sample7.xml");
String expected3 = readResourceFile("classpath:canned/sample7_stac_no_es.json");
indexerService.indexMetadata(xml3);
- var b = lastRequest.get().document();
- var a = lastRequest.get().document().toString();
Map,?> content3 = objectMapper.readValue(lastRequest.get().document().toString(), Map.class);
String out3 = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(content3);
JSONAssert.assertEquals(
@@ -228,6 +226,7 @@ public void verifySummaryGeoCorrect1() throws IOException, JAXBException, JSONEx
// and now we can use it to compare expected result.
Map,?> content = objectMapper.readValue(lastRequest.get().document().toString(), Map.class);
String out = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(content);
+ log.info(out);
JSONAssert.assertEquals(objectMapper.readTree(expected).toPrettyString(),
objectMapper.readTree(out.strip()).toPrettyString(),
JSONCompareMode.STRICT);
@@ -288,6 +287,7 @@ public void verifyMultipleTemporalExtentsNull() throws IOException, JSONExceptio
Map,?> content = objectMapper.readValue(lastRequest.get().document().toString(), Map.class);
String out = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(content);
+ log.info(out);
JSONAssert.assertEquals(
objectMapper.readTree(expected).toPrettyString(),
objectMapper.readTree(out.strip()).toPrettyString(),
@@ -335,6 +335,7 @@ public void verifyAbstractCIParty1() throws IOException, JSONException {
Map,?> content = objectMapper.readValue(lastRequest.get().document().toString(), Map.class);
String out = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(content);
+ log.info(out);
JSONAssert.assertEquals(
objectMapper.readTree(expected).toPrettyString(),
objectMapper.readTree(out.strip()).toPrettyString(),
@@ -350,6 +351,7 @@ public void verifyAbstractResponsibilityNullWorks() throws IOException, JSONExce
Map,?> content = objectMapper.readValue(lastRequest.get().document().toString(), Map.class);
String out = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(content);
+ log.info(out);
JSONAssert.assertEquals(
objectMapper.readTree(expected).toPrettyString(),
objectMapper.readTree(out.strip()).toPrettyString(),
@@ -404,6 +406,7 @@ public void verifyHandleProjectionGeometry() throws IOException, JSONException {
Map,?> content = objectMapper.readValue(lastRequest.get().document().toString(), Map.class);
String out = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(content);
+ log.info(out);
JSONAssert.assertEquals(
objectMapper.readTree(expected).toPrettyString(),
objectMapper.readTree(out.strip()).toPrettyString(),
@@ -423,6 +426,7 @@ public void verifyAbstractCitationNullWorks() throws IOException, JSONException
Map,?> content = objectMapper.readValue(lastRequest.get().document().toString(), Map.class);
String out = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(content);
+ log.info(out);
JSONAssert.assertEquals(
objectMapper.readTree(expected).toPrettyString(),
objectMapper.readTree(out.strip()).toPrettyString(),
diff --git a/indexer/src/test/java/au/org/aodn/esindexer/utils/GeometryUtilsTest.java b/indexer/src/test/java/au/org/aodn/esindexer/utils/GeometryUtilsTest.java
new file mode 100644
index 00000000..94c38875
--- /dev/null
+++ b/indexer/src/test/java/au/org/aodn/esindexer/utils/GeometryUtilsTest.java
@@ -0,0 +1,132 @@
+package au.org.aodn.esindexer.utils;
+
+import au.org.aodn.metadata.iso19115_3_2018.MDMetadataType;
+import jakarta.xml.bind.JAXBException;
+import org.geotools.feature.FeatureCollection;
+import org.geotools.feature.FeatureIterator;
+import org.geotools.geojson.feature.FeatureJSON;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+import org.locationtech.jts.geom.*;
+import org.opengis.feature.simple.SimpleFeature;
+import org.opengis.feature.simple.SimpleFeatureType;
+import org.opengis.feature.type.FeatureType;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.IOException;
+import java.io.StringReader;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+
+import static au.org.aodn.esindexer.BaseTestClass.readResourceFile;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class GeometryUtilsTest {
+ protected Logger logger = LoggerFactory.getLogger(GeometryUtilsTest.class);
+ protected JaxbUtils jaxb;
+
+ public GeometryUtilsTest() throws JAXBException {
+ jaxb = new JaxbUtils<>(MDMetadataType .class);
+ }
+
+ @Test
+ public void verifyLandStrippedFromSpatialExtents() throws IOException, JAXBException {
+ String xml = readResourceFile("classpath:canned/sample_complex_area.xml");
+ MDMetadataType source = jaxb.unmarshal(xml);
+ // Whole spatial extends
+ List> withLand = GeometryUtils.createGeometryItems(
+ source,
+ (rawInput) -> GeometryBase.findPolygonsFrom(GeometryBase.COORDINATE_SYSTEM_CRS84, rawInput)
+ );
+
+ List> l = Objects.requireNonNull(withLand);
+
+ assertEquals(l.size(),1, "Land have 1 polygon array");
+ assertEquals(l.get(0).size(),8, "Size 8 with land");
+
+ Geometry le = l.get(0).get(0);
+ Coordinate[] coors = le.getCoordinates();
+
+ assertEquals(118.0, coors[0].getX(), 0.001);
+ assertEquals(-36.0, coors[0].getY(), 0.001);
+
+ assertEquals(118.0, coors[1].getX(), 0.001);
+ assertEquals(-34.0, coors[1].getY(), 0.001);
+
+ assertEquals(122.0, coors[2].getX(), 0.001);
+ assertEquals(-34.0, coors[2].getY(), 0.001);
+
+ assertEquals(122.0, coors[3].getX(), 0.001);
+ assertEquals(-32.0, coors[3].getY(), 0.001);
+ // Strip the land away.
+ List> noLand = GeometryUtils.createGeometryItems(
+ source,
+ GeometryUtils::createGeometryWithoutLand
+ );
+
+ List> nl = Objects.requireNonNull(noLand);
+
+ assertEquals(nl.size(),1, "No Land have 1 polygon array");
+ assertEquals(11, nl.get(0).size(), "Size 11 with land");
+
+ Geometry nle = nl.get(0).get(0).getEnvelope();
+ Coordinate[] ncoors = nle.getCoordinates();
+
+ // The envelope of the two polygon should match given one is the original and the other just strip the land
+ assertEquals(118.0, ncoors[0].getX(), 0.01);
+ assertEquals(-35.9999, ncoors[0].getY(), 0.01);
+
+ assertEquals(118.0, ncoors[1].getX(), 0.01);
+ assertEquals(-32.2787, ncoors[1].getY(), 0.01);
+
+ assertEquals(126, ncoors[2].getX(), 0.01);
+ assertEquals(-32.2787, ncoors[2].getY(), 0.01);
+
+ assertEquals(126.0, ncoors[3].getX(), 0.01);
+ assertEquals(-35.9999, ncoors[3].getY(), 0.01);
+ }
+ /**
+ * Given a irregular geojson, with hole the centroid point is still inside the polygon
+ * @throws IOException
+ */
+ @Test
+ public void verifyCentroidCorrect() throws IOException {
+ // You can paste the geojson on geojson.io to see what it looks like
+ String geojson = readResourceFile("classpath:canned/irregular.geojson");
+ FeatureJSON json = new FeatureJSON();
+
+ // Read the GeoJSON file
+ StringReader reader = new StringReader(geojson);
+ FeatureCollection feature = json.readFeatureCollection(reader);
+
+ List point = GeometryUtils.calculateCollectionCentroid(convertToGeometryCollection(feature));
+ assertEquals(1, point.size(), "One item");
+ assertEquals(2.805438932281021, point.get(0).getX(),"X");
+ assertEquals( 2.0556251797475227, point.get(0).getY(), "Y");
+ }
+
+ protected GeometryCollection convertToGeometryCollection(
+ FeatureCollection featureCollection) {
+ // Create a GeometryFactory
+ GeometryFactory geometryFactory = new GeometryFactory();
+
+ // List to hold the geometries extracted from the FeatureCollection
+ List geometries = new ArrayList<>();
+
+ // Iterate through the FeatureCollection and extract geometries
+ try(FeatureIterator features = featureCollection.features()) {
+ while(features.hasNext()) {
+ Geometry geometry = (Geometry)(features.next()).getDefaultGeometry();
+ geometries.add(geometry);
+ }
+ }
+
+ // Convert the list of geometries to an array
+ Geometry[] geometryArray = geometries.toArray(new Geometry[0]);
+
+ // Create and return a GeometryCollection from the array of geometries
+ return geometryFactory.createGeometryCollection(geometryArray);
+ }
+}
diff --git a/indexer/src/test/resources/application-test.yaml b/indexer/src/test/resources/application-test.yaml
index ec51454c..1e81b699 100644
--- a/indexer/src/test/resources/application-test.yaml
+++ b/indexer/src/test/resources/application-test.yaml
@@ -2,6 +2,10 @@
# diff core / max value should not impact the run, this is just to verify this is correct
app:
initialiseVocabsIndex: true
+ geometry:
+ # This value will affect the size of grid to divide a spatial extents which is used to calculate the
+ # centroid point in the summaries, test case needs to change if you change this value
+ gridLandSize: 10.0
indexing:
pool:
core: 2
diff --git a/indexer/src/test/resources/canned/abstract_resposibilty_null_stac.json b/indexer/src/test/resources/canned/abstract_resposibilty_null_stac.json
index 210ff69e..9ebb2451 100644
--- a/indexer/src/test/resources/canned/abstract_resposibilty_null_stac.json
+++ b/indexer/src/test/resources/canned/abstract_resposibilty_null_stac.json
@@ -73,6 +73,12 @@
"start": null,
"end": null
}
+ ],
+ "centroid": [
+ [
+ 117.416,
+ -18.869
+ ]
]
},
"contacts": [
diff --git a/indexer/src/test/resources/canned/associated/self.json b/indexer/src/test/resources/canned/associated/self.json
index 11e9669d..c0a76b9e 100644
--- a/indexer/src/test/resources/canned/associated/self.json
+++ b/indexer/src/test/resources/canned/associated/self.json
@@ -1,231 +1,1034 @@
{
- "title" : "IMOS - Animal Tracking Facility Satellite Relay Tagging Program",
- "description" : "The Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) is a coordinated marine animal tagging project. Satellite Relay Data Loggers (SRDL) (most with CTDs, and some also with fluorometers) are used to explore how marine mammal behaviour relates to their oceanic environment. Loggers developed at the University of St Andrews Sea Mammal Research Unit transmit data in near real time via the Argo satellite system. The Satellite Relay Data Loggers are deployed on marine mammals, including Elephant Seals, Weddell Seals, Australian Fur Seals, Australian Sea Lions, New Zealand Fur Seals. Data parameters measured by the instruments include time, conductivity (salinity), temperature, speed, fluorescence (available in the future) and depth. Data is being collected in the Southern Ocean, the Great Australian Bight, and off the South-East Coast of Australia.",
- "extent" : {
- "bbox" : [ [ -180.0, -80.0, 180.0, -30.0 ], [ 40.0, -80.0, 180.0, -30.0 ], [ -180.0, -80.0, -130.0, -30.0 ] ],
- "temporal" : [ [ "2007-04-03T06:00:00Z", null ], [ "2007-04-03T06:00:00Z", null ] ]
+ "title": "IMOS - Animal Tracking Facility Satellite Relay Tagging Program",
+ "description": "The Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) is a coordinated marine animal tagging project. Satellite Relay Data Loggers (SRDL) (most with CTDs, and some also with fluorometers) are used to explore how marine mammal behaviour relates to their oceanic environment. Loggers developed at the University of St Andrews Sea Mammal Research Unit transmit data in near real time via the Argo satellite system. The Satellite Relay Data Loggers are deployed on marine mammals, including Elephant Seals, Weddell Seals, Australian Fur Seals, Australian Sea Lions, New Zealand Fur Seals. Data parameters measured by the instruments include time, conductivity (salinity), temperature, speed, fluorescence (available in the future) and depth. Data is being collected in the Southern Ocean, the Great Australian Bight, and off the South-East Coast of Australia.",
+ "extent": {
+ "bbox": [
+ [
+ -180.0,
+ -80.0,
+ 180.0,
+ -30.0
+ ],
+ [
+ 40.0,
+ -80.0,
+ 180.0,
+ -30.0
+ ],
+ [
+ -180.0,
+ -80.0,
+ -130.0,
+ -30.0
+ ]
+ ],
+ "temporal": [
+ [
+ "2007-04-03T06:00:00Z",
+ null
+ ],
+ [
+ "2007-04-03T06:00:00Z",
+ null
+ ]
+ ]
},
- "summaries" : {
- "score" : 79,
- "status" : "onGoing",
- "credits" : [ "Australia’s Integrated Marine Observing System (IMOS) is enabled by the National Collaborative Research Infrastructure Strategy (NCRIS). It is operated by a consortium of institutions as an unincorporated joint venture, with the University of Tasmania as Lead Agent.", "Sydney Institute of Marine Science (SIMS)", "French National Center for Scientific Research (CNRS)", "Macquarie University", "University of Tasmania (UTAS)", "Australian Antarctic Division (AAD)", "National Institute of Water and Atmosphere (NIWA)", "CSIRO Oceans and Atmosphere", "Stockholm University (SU)", "Shanghai Ocean University", "Hokkaido University" ],
- "scope" : {
- "code" : "series",
- "name" : "IMOS Sub-Facility Level record"
+ "summaries": {
+ "score": 79,
+ "status": "onGoing",
+ "credits": [
+ "Australia’s Integrated Marine Observing System (IMOS) is enabled by the National Collaborative Research Infrastructure Strategy (NCRIS). It is operated by a consortium of institutions as an unincorporated joint venture, with the University of Tasmania as Lead Agent.",
+ "Sydney Institute of Marine Science (SIMS)",
+ "French National Center for Scientific Research (CNRS)",
+ "Macquarie University",
+ "University of Tasmania (UTAS)",
+ "Australian Antarctic Division (AAD)",
+ "National Institute of Water and Atmosphere (NIWA)",
+ "CSIRO Oceans and Atmosphere",
+ "Stockholm University (SU)",
+ "Shanghai Ocean University",
+ "Hokkaido University"
+ ],
+ "scope": {
+ "code": "series",
+ "name": "IMOS Sub-Facility Level record"
},
- "statement" : "The Animal Tracking Facility Satellite Relay Tag data has been supplied to the Australian Ocean Data Network (AODN) by participants, via the St Andrews University Sea Mammal Research Unit. Tags used on species: Australian Fur Seal, Australian Sea Lion, New Zealand Fur Seal and Southern Elephant Seal - CTD Satellite Relay Data Loggers (SRDL). Collect conductivity, temperature and depth information. On some Australian Sea Lions - CTD/Fluorometer Satellite Relay Data Loggers (SRDL). Collects conductivity, temperature, fluorescence and depth information. Weddell Seals - Satellite Relay Data Loggers (SRDL). Collect temperature, speed and depth information.",
- "creation" : "2020-06-26T11:46:35",
- "revision" : "2022-05-13T04:48:51",
- "dataset_group" : "sample",
- "dataset_provider" : "IMOS",
- "update_frequency" : "real-time",
- "proj:geometry" : {
- "geometries" : [ {
- "type" : "Polygon",
- "coordinates" : [ [ [ 40, -80 ], [ 180, -80 ], [ 180, -30 ], [ 40, -30 ], [ 40, -80 ] ] ]
- }, {
- "type" : "Polygon",
- "coordinates" : [ [ [ -180, -80 ], [ -130, -80 ], [ -130, -30 ], [ -180, -30 ], [ -180, -80 ] ] ]
- } ],
- "type" : "GeometryCollection"
+ "statement": "The Animal Tracking Facility Satellite Relay Tag data has been supplied to the Australian Ocean Data Network (AODN) by participants, via the St Andrews University Sea Mammal Research Unit. Tags used on species: Australian Fur Seal, Australian Sea Lion, New Zealand Fur Seal and Southern Elephant Seal - CTD Satellite Relay Data Loggers (SRDL). Collect conductivity, temperature and depth information. On some Australian Sea Lions - CTD/Fluorometer Satellite Relay Data Loggers (SRDL). Collects conductivity, temperature, fluorescence and depth information. Weddell Seals - Satellite Relay Data Loggers (SRDL). Collect temperature, speed and depth information.",
+ "creation": "2020-06-26T11:46:35",
+ "revision": "2022-05-13T04:48:51",
+ "dataset_group": "sample",
+ "dataset_provider": "IMOS",
+ "update_frequency": "real-time",
+ "proj:geometry": {
+ "geometries": [
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 40,
+ -80
+ ],
+ [
+ 180,
+ -80
+ ],
+ [
+ 180,
+ -30
+ ],
+ [
+ 40,
+ -30
+ ],
+ [
+ 40,
+ -80
+ ]
+ ]
+ ]
+ },
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -180,
+ -80
+ ],
+ [
+ -130,
+ -80
+ ],
+ [
+ -130,
+ -30
+ ],
+ [
+ -180,
+ -30
+ ],
+ [
+ -180,
+ -80
+ ]
+ ]
+ ]
+ }
+ ],
+ "type": "GeometryCollection"
},
- "temporal" : [ {
- "start" : "2007-04-03T06:00:00Z"
- } ]
+ "temporal": [
+ {
+ "start": "2007-04-03T06:00:00Z"
+ }
+ ],
+ "centroid": [
+ [
+ 44.823,
+ -63.959
+ ],
+ [
+ 45.0,
+ -55.0
+ ],
+ [
+ 45.0,
+ -45.0
+ ],
+ [
+ 45.0,
+ -35.0
+ ],
+ [
+ 55.172,
+ -63.281
+ ],
+ [
+ 55.0,
+ -55.0
+ ],
+ [
+ 55.001,
+ -45.0
+ ],
+ [
+ 55.0,
+ -35.0
+ ],
+ [
+ 68.639,
+ -71.598
+ ],
+ [
+ 65.12,
+ -63.919
+ ],
+ [
+ 65.0,
+ -55.0
+ ],
+ [
+ 64.972,
+ -44.972
+ ],
+ [
+ 65.0,
+ -35.0
+ ],
+ [
+ 70.99,
+ -70.798
+ ],
+ [
+ 74.824,
+ -64.756
+ ],
+ [
+ 75.001,
+ -55.001
+ ],
+ [
+ 75.008,
+ -44.992
+ ],
+ [
+ 75.0,
+ -35.0
+ ],
+ [
+ 84.846,
+ -63.635
+ ],
+ [
+ 85.0,
+ -55.0
+ ],
+ [
+ 85.0,
+ -45.0
+ ],
+ [
+ 85.0,
+ -35.0
+ ],
+ [
+ 94.99,
+ -63.296
+ ],
+ [
+ 95.0,
+ -55.0
+ ],
+ [
+ 95.0,
+ -45.0
+ ],
+ [
+ 95.0,
+ -35.0
+ ],
+ [
+ 105.136,
+ -63.161
+ ],
+ [
+ 105.0,
+ -55.0
+ ],
+ [
+ 105.0,
+ -45.0
+ ],
+ [
+ 105.0,
+ -35.0
+ ],
+ [
+ 115.194,
+ -63.351
+ ],
+ [
+ 115.0,
+ -55.0
+ ],
+ [
+ 115.0,
+ -45.0
+ ],
+ [
+ 114.266,
+ -35.733
+ ],
+ [
+ 124.973,
+ -63.42
+ ],
+ [
+ 125.0,
+ -55.0
+ ],
+ [
+ 125.0,
+ -45.0
+ ],
+ [
+ 125.341,
+ -36.398
+ ],
+ [
+ 135.059,
+ -63.165
+ ],
+ [
+ 135.0,
+ -55.0
+ ],
+ [
+ 135.0,
+ -45.0
+ ],
+ [
+ 134.344,
+ -36.533
+ ],
+ [
+ 145.243,
+ -63.822
+ ],
+ [
+ 145.0,
+ -55.0
+ ],
+ [
+ 144.874,
+ -45.235
+ ],
+ [
+ 145.166,
+ -39.074
+ ],
+ [
+ 159.797,
+ -79.855
+ ],
+ [
+ 155.102,
+ -64.476
+ ],
+ [
+ 155.0,
+ -55.0
+ ],
+ [
+ 155.0,
+ -45.0
+ ],
+ [
+ 155.477,
+ -35.363
+ ],
+ [
+ 166.366,
+ -75.94
+ ],
+ [
+ 165.004,
+ -64.995
+ ],
+ [
+ 164.999,
+ -55.003
+ ],
+ [
+ 164.714,
+ -44.975
+ ],
+ [
+ 165.0,
+ -35.0
+ ],
+ [
+ 175.018,
+ -75.012
+ ],
+ [
+ 175.0,
+ -65.0
+ ],
+ [
+ 175.0,
+ -55.0
+ ],
+ [
+ 175.333,
+ -45.312
+ ],
+ [
+ 174.92,
+ -34.653
+ ],
+ [
+ -175.0,
+ -75.0
+ ],
+ [
+ -175.0,
+ -65.0
+ ],
+ [
+ -175.0,
+ -55.0
+ ],
+ [
+ -174.998,
+ -45.001
+ ],
+ [
+ -175.0,
+ -35.0
+ ],
+ [
+ -165.093,
+ -74.863
+ ],
+ [
+ -165.0,
+ -65.0
+ ],
+ [
+ -165.0,
+ -55.0
+ ],
+ [
+ -165.0,
+ -45.0
+ ],
+ [
+ -165.0,
+ -35.0
+ ],
+ [
+ -155.194,
+ -74.5
+ ],
+ [
+ -155.0,
+ -65.0
+ ],
+ [
+ -155.0,
+ -55.0
+ ],
+ [
+ -155.0,
+ -45.0
+ ],
+ [
+ -155.0,
+ -35.0
+ ],
+ [
+ -145.346,
+ -73.252
+ ],
+ [
+ -145.0,
+ -65.0
+ ],
+ [
+ -145.0,
+ -55.0
+ ],
+ [
+ -145.0,
+ -45.0
+ ],
+ [
+ -145.0,
+ -35.0
+ ],
+ [
+ -135.084,
+ -72.442
+ ],
+ [
+ -135.0,
+ -65.0
+ ],
+ [
+ -135.0,
+ -55.0
+ ],
+ [
+ -135.0,
+ -45.0
+ ],
+ [
+ -135.0,
+ -35.0
+ ]
+ ]
},
- "contacts" : [ {
- "roles" : [ "pointOfContact", "about" ],
- "organization" : "Integrated Marine Observing System (IMOS)",
- "name" : "",
- "position" : "Data Officer",
- "emails" : [ "info@aodn.org.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "University of Tasmania", "Private Bag 110" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "61 3 6226 7488"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "61 3 6226 2107"
- } ],
- "links" : [ {
- "href" : "http://imos.org.au/aodn.html",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "Website of the Australian Ocean Data Network (AODN)"
- } ]
- }, {
- "roles" : [ "principalInvestigator", "about" ],
- "organization" : "Department of Biological Sciences, Macquarie University",
- "name" : "Harcourt, Rob",
- "position" : "Animal Tracking Facility Leader",
- "emails" : [ "robert.harcourt@mq.edu.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "Marine Predator Research Group", "Department of Biological Sciences, Macquarie University", "North Ryde" ],
- "city" : "Sydney",
- "country" : "Australia",
- "postalCode" : "2109",
- "administrativeArea" : "New South Wales"
- } ],
- "phones" : [ ],
- "links" : [ {
- "href" : "http://web.science.mq.edu.au/directory/listing/person.htm?id=rharcour",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "Maquarie University staff profile for Rob Harcourt"
- } ]
- }, {
- "roles" : [ "distributor", "metadata" ],
- "organization" : "Integrated Marine Observing System (IMOS)",
- "name" : "",
- "position" : "Data Officer",
- "emails" : [ "info@aodn.org.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "University of Tasmania", "Private Bag 110" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "61 3 6226 7488"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "61 3 6226 2107"
- } ],
- "links" : [ {
- "href" : "http://imos.org.au/aodn.html",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "Website of the Australian Ocean Data Network (AODN)"
- } ]
- }, {
- "roles" : [ "resourceProvider", "citation" ],
- "organization" : "Integrated Marine Observing System (IMOS)",
- "emails" : [ "imos@imos.org.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "Private Bag 110" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "61 3 6226 7549"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "61 3 6226 2107"
- } ],
- "links" : [ {
- "href" : "http://www.imos.org.au/html",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "Website for the Integrated Marine Observing System"
- } ]
- } ],
- "languages" : [ {
- "code" : "eng",
- "name" : "English"
- } ],
- "links" : [ {
- "href" : "https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/4637bd9b-8fba-4a10-bf23-26a511e17042/attachments/seal_tag_pic_s.png",
- "rel" : "preview",
- "type" : "image"
- }, {
- "href" : "https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/4637bd9b-8fba-4a10-bf23-26a511e17042",
- "rel" : "describedby",
- "type" : "text/html",
- "title" : "Full metadata link"
- }, {
- "href" : "https://licensebuttons.net/l/by/4.0/88x31.png",
- "rel" : "license",
- "type" : "image/png"
- }, {
- "href" : "http://creativecommons.org/licenses/by/4.0/",
- "rel" : "license",
- "type" : "text/html"
- }, {
- "href" : "uuid:a35d02d7-3bd2-40f8-b982-a0e30b64dc40",
- "rel" : "parent",
- "type" : "application/json",
- "title" : "{\"title\":\"IMOS - Animal Tracking Facility\",\"recordAbstract\":\"The IMOS Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) represents the higher biological monitoring of the marine environment for the IMOS program. Currently the facility uses acoustic technology, CTD satellite trackers and bio loggers to monitor coastal and oceanic movements of marine animals from the Australian mainland to the sub-Antarctic islands and as far south as the Antarctic continent. Acoustic monitoring is a powerful tool for observing tagged marine animals with networks or cross shelf arrays (curtains) of receivers, allowing animals to be monitored over scales of hundreds of metres to thousands of kilometres. An array or network consists of a series of acoustic receivers that are strategically deployed on the sea floor for 1 to 10 years (depending on receiver type and battery life) with the ability to download data from the receivers as often as required. NCRIS and partner investments will target areas identified by regional nodes. VR2's deployed in conjunction with other moorings will provide information on long range movement of a variety of species including endangered and protected species (i.e. White Sharks and Grey Nurse Sharks), and valuable commercial species (i.e. Tuna) Curtains are mobile and can be deployed in different configurations for specific IMOS projects. The continued coordination of acoustic tag codes between researchers means that acoustic array around Australia will provide the combined infrastructure to monitor movement of highly migratory marine species between all jurisdictions. CTD satellite trackers and bio loggers currently deployed on a large range of animals are collecting a wide range of data. This includes behavioural and physical data such as the depth, temperature, salinity and movement effort of individual marine animals. The Animal Tracking Facility is set up to collect data over a long period of time. This sustained approach will enable researchers to assess the effects of climate change, ocean acidification and other physical changes that affect animals within the marine environment.\"}"
- }, {
- "href" : "uuid:0ede6b3d-8635-472f-b91c-56a758b4e091",
- "rel" : "sibling",
- "type" : "application/json",
- "title" : "{\"title\":\"IMOS - Animal Tracking Facility - Acoustic Tracking - Quality Controlled Detections (2007 - 2017) (SUPERSEDED BY ONGOING COLLECTION)\",\"recordAbstract\":\"In its first decade, the Integrated Marine Observing System's Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) established a permanent array of acoustic receivers around Australia to detect the movements of tagged marine animals in coastal waters. Simultaneously, the Animal Tracking Facility developed a centralised national database (https://animaltracking.aodn.org.au/) to encourage collaborative research across the Australian research community and provide unprecedented opportunities to quantify individual behaviour across a broad range of taxa. This static dataset presents the first 10 years (2007 - 2017) of quality-controlled animal detections collated via the IMOS Australian Animal Acoustic Telemetry Database. The dataset comprises 48.5 million valid detections collected at 1891 receiving stations around Australia, and consists of detection data for 3523 tags deployed on 117 species (fish, sharks, rays, reptiles, and mammals), with distances travelled ranging from a few to thousands of kilometres. To access subsequent additions in a dynamic database, please refer to the following metadata record: https://catalogue-imos.aodn.org.au/geonetwork/srv/api/records/541d4f15-122a-443d-ab4e-2b5feb08d6a0\"}"
- }, {
- "href" : "uuid:06b09398-d3d0-47dc-a54a-a745319fbece",
- "rel" : "child",
- "type" : "application/json",
- "title" : "{\"title\":\"IMOS - Animal Tracking Facility - Satellite Relay Tagging Program - Delayed mode data\",\"recordAbstract\":\"The Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) is a coordinated marine animal tagging project. Satellite Relay Data Loggers (SRDL) (most with CTDs, and some also with fluorometers) are used to explore how marine mammal behaviour relates to their oceanic environment. Loggers developed at the University of St Andrews Sea Mammal Research Unit transmit data in near real time via the Argo satellite system. The Satellite Relay Data Loggers are deployed on marine mammals, including Elephant Seals, Weddell Seals, Australian Fur Seals, Australian Sea Lions, New Zealand Fur Seals. Data is being collected in the Southern Ocean, the Great Australian Bight, and off the South-East Coast of Australia. This metadata record, represents several different datasets listed hereafter, which can all be accessed through a multi-WFS service. The data represented by this record are presented in delayed mode. CTD - parameters measured by the instruments include time, conductivity (salinity), temperature, speed, fluorescence (available in the future) and depth. Diving - parameters measured by the instruments include start and end time and longitude/latitude of each individual dive, post-dive surface duration, dive duration, maximum dive depth, intermediate dive depths and times. Haulout - a haulout begins when the SRDL has been continuously dry for a specified length of time (usually 10 minutes). It ends when continuously wet for another interval (usually 40 seconds). Haulout data parameters measured by the instruments include haulout start and end dates and longitude/latitude, and haulout number. Argos locations - location data parameters measured by the instruments include time, longitude, latitude, location quality, along with other diagnostic information provided by Argos (http://www.argos-system.org/). Summary Statistics - as well as sending records of individual events such as dives and haulouts, the SRDL also calculates summary statistics of those events over a specified time period (usually 3, 4 or 6 hours). Summary statistics computed by the instruments include the proportion of time spent diving, at the surface and hauled-out, the number of dives, and the average, standard deviation and maximum dive duration and dive depth during each summary period. These statistics are based on all the data recorded by the SRDL and so are not prone to distortion by variations in the efficiency of transmission via Argos. ** For data after October 2018, please consult IMOS - Animal Tracking Facility - Satellite Relay Tagging Program - Delayed mode data with quality-controlled locations (https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/70f148b1-7040-4fad-944a-456413c95472), to access data with improved satellite locations. In the near future all historical delayed mode data will be reprocessed with the new quality control (QC) process, to improve the accuracy of the satellite location data, and this dataset will be replaced by the new QC’d one. **\"}"
- } ],
- "license" : "Creative Commons Attribution 4.0 International License",
- "providers" : [ {
- "name" : "Integrated Marine Observing System (IMOS)",
- "roles" : [ "distributor" ],
- "url" : "http://imos.org.au/aodn.html"
- } ],
- "themes" : [ {
- "concepts" : [ {
- "id" : "Oceans | Ocean Temperature | Water Temperature"
- }, {
- "id" : "Oceans | Salinity/density | Conductivity"
- }, {
- "id" : "Oceans | Marine Biology | Marine Mammals"
- }, {
- "id" : "Oceans | Marine Biology | Marine Birds"
- } ],
- "scheme" : "",
- "description" : "GCMD",
- "title" : "NASA/Global Change Master Directory Earth Science Keywords Version 5.3.8"
- }, {
- "concepts" : [ {
- "id" : "Satellite Tag"
- }, {
- "id" : "CTD Satellite Relay Data Logger"
- }, {
- "id" : "Agency | SMRU | Sea Mammal Research Unit"
- } ],
- "scheme" : "",
- "description" : "IMOS",
- "title" : "IMOS Keywords Thesaurus"
- }, {
- "concepts" : [ {
- "id" : "Tags and Tracking Devices"
- } ],
- "scheme" : "theme",
- "description" : "",
- "title" : "Marine Community Profile of ISO19115 v1.4 Collection Methods Vocabulary (Annex C.1.3)"
- }, {
- "concepts" : [ {
- "id" : "device_wmo_ref"
- }, {
- "id" : "depth"
- }, {
- "id" : "sea_water_temperature"
- }, {
- "id" : "sea_water_pressure"
- }, {
- "id" : "sea_water_salinity"
- }, {
- "id" : "latitude"
- }, {
- "id" : "longitude"
- } ],
- "scheme" : "",
- "description" : "",
- "title" : "Keywords (Theme)"
- } ],
- "id" : "4637bd9b-8fba-4a10-bf23-26a511e17042",
- "search_suggestions" : {
- "abstract_phrases" : [ "satellite relay data", "mammals including elephant", "andrews", "via", "how marine", "monitoring system", "satellite relay data loggers", "mammal research", "oceanic", "zealand", "near", "oceanic environment", "south east", "australian sea lions new", "great australian", "australian fur seals", "australia", "monitoring", "time via", "south east coast", "argo satellite system", "coordinated marine animal", "temperature speed fluorescence", "marine mammal behaviour relates", "near real time", "how marine mammal", "animal tagging project", "zealand fur seals data", "speed fluorescence available", "relay data loggers", "fur seals australian sea", "fluorometers", "animal", "fluorescence available", "southern", "data loggers srdl most", "how marine mammal behaviour", "sea lions", "mammal research unit transmit", "seals australian", "marine", "sea", "how", "speed fluorescence", "include time conductivity", "australian animal tracking", "andrews sea", "temperature", "monitoring system aatams", "marine mammal behaviour", "australian fur", "tracking facility", "st", "southern ocean", "instruments include time conductivity", "andrews sea mammal", "marine animal tagging project", "near real", "time conductivity salinity temperature", "salinity temperature speed", "conductivity salinity temperature", "data parameters", "parameters measured", "australian sea lions", "coordinated", "loggers", "mammals including", "loggers srdl most", "available", "project", "facility formerly", "developed", "research", "weddell seals", "elephant seals weddell", "seals", "project satellite relay", "project satellite relay data", "argo satellite", "elephant seals", "sea lions new", "conductivity salinity", "new zealand fur", "data parameters measured", "ocean", "including elephant seals weddell", "tracking facility formerly", "seals australian sea", "elephant", "parameters", "some", "some also", "relates", "seals weddell seals", "fur seals australian", "animal tracking facility", "speed", "explore how", "mammal", "lions new zealand fur", "instruments include", "include time", "satellite", "marine mammal", "andrews sea mammal research", "relay", "marine mammals", "transmit", "including elephant seals", "seals data", "salinity temperature", "ctds", "tagging project", "sea mammal", "environment", "conductivity salinity temperature speed", "argo", "great australian bight", "environment loggers", "time", "tagging", "measured", "zealand fur", "mammal behaviour", "mammal behaviour relates", "collected", "tracking facility formerly known", "tracking", "seals data parameters measured", "seals australian sea lions", "australian sea", "east coast", "srdl", "instruments", "depth data", "weddell", "weddell seals australian", "environment loggers developed", "st andrews sea", "marine mammals including", "st andrews", "being", "including elephant", "being collected", "coast", "system", "research unit transmit", "mammals", "time conductivity", "elephant seals weddell seals", "explore how marine mammal", "research unit", "unit transmit data", "sea mammal research unit", "seals australian fur seals", "south", "seals australian fur", "australian", "new zealand fur seals", "known", "coordinated marine animal tagging", "time conductivity salinity", "include", "explore", "salinity temperature speed fluorescence", "fur seals data parameters", "instruments include time", "great", "off", "animal tagging project satellite", "depth", "future", "behaviour", "facility", "explore how marine", "sea lions new zealand", "include time conductivity salinity", "relay data", "fur", "data", "coordinated marine", "seals weddell", "seals data parameters", "loggers srdl", "seals weddell seals australian", "used", "behaviour relates", "marine animal tagging", "st andrews sea mammal", "satellite system", "conductivity", "australian bight", "system aatams", "fluorescence", "relay data loggers srdl", "bight", "near real time via", "data loggers", "temperature speed", "oceanic environment loggers developed", "new", "mammal research unit", "including", "fur seals data", "tagging project satellite relay", "project satellite", "marine mammals including elephant", "australian fur seals australian", "real", "most", "animal tagging", "sea mammal research", "unit", "transmit data", "formerly known", "marine animal", "data loggers srdl", "university", "deployed", "real time via", "animal tracking facility formerly", "new zealand", "east", "research unit transmit data", "facility formerly known", "zealand fur seals", "weddell seals australian fur", "real time", "oceanic environment loggers", "aatams", "salinity", "animal tracking", "srdl most", "tagging project satellite", "satellite relay", "also", "loggers developed", "mammals including elephant seals", "fur seals", "lions new", "lions", "lions new zealand", "australian animal", "temperature speed fluorescence available", "formerly", "unit transmit" ]
+ "contacts": [
+ {
+ "roles": [
+ "pointOfContact",
+ "about"
+ ],
+ "organization": "Integrated Marine Observing System (IMOS)",
+ "name": "",
+ "position": "Data Officer",
+ "emails": [
+ "info@aodn.org.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "University of Tasmania",
+ "Private Bag 110"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "61 3 6226 7488"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "61 3 6226 2107"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://imos.org.au/aodn.html",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "Website of the Australian Ocean Data Network (AODN)"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "principalInvestigator",
+ "about"
+ ],
+ "organization": "Department of Biological Sciences, Macquarie University",
+ "name": "Harcourt, Rob",
+ "position": "Animal Tracking Facility Leader",
+ "emails": [
+ "robert.harcourt@mq.edu.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "Marine Predator Research Group",
+ "Department of Biological Sciences, Macquarie University",
+ "North Ryde"
+ ],
+ "city": "Sydney",
+ "country": "Australia",
+ "postalCode": "2109",
+ "administrativeArea": "New South Wales"
+ }
+ ],
+ "phones": [],
+ "links": [
+ {
+ "href": "http://web.science.mq.edu.au/directory/listing/person.htm?id=rharcour",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "Maquarie University staff profile for Rob Harcourt"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "distributor",
+ "metadata"
+ ],
+ "organization": "Integrated Marine Observing System (IMOS)",
+ "name": "",
+ "position": "Data Officer",
+ "emails": [
+ "info@aodn.org.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "University of Tasmania",
+ "Private Bag 110"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "61 3 6226 7488"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "61 3 6226 2107"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://imos.org.au/aodn.html",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "Website of the Australian Ocean Data Network (AODN)"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "resourceProvider",
+ "citation"
+ ],
+ "organization": "Integrated Marine Observing System (IMOS)",
+ "emails": [
+ "imos@imos.org.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "Private Bag 110"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "61 3 6226 7549"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "61 3 6226 2107"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://www.imos.org.au/html",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "Website for the Integrated Marine Observing System"
+ }
+ ]
+ }
+ ],
+ "languages": [
+ {
+ "code": "eng",
+ "name": "English"
+ }
+ ],
+ "links": [
+ {
+ "href": "https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/4637bd9b-8fba-4a10-bf23-26a511e17042/attachments/seal_tag_pic_s.png",
+ "rel": "preview",
+ "type": "image"
+ },
+ {
+ "href": "https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/4637bd9b-8fba-4a10-bf23-26a511e17042",
+ "rel": "describedby",
+ "type": "text/html",
+ "title": "Full metadata link"
+ },
+ {
+ "href": "https://licensebuttons.net/l/by/4.0/88x31.png",
+ "rel": "license",
+ "type": "image/png"
+ },
+ {
+ "href": "http://creativecommons.org/licenses/by/4.0/",
+ "rel": "license",
+ "type": "text/html"
+ },
+ {
+ "href": "uuid:a35d02d7-3bd2-40f8-b982-a0e30b64dc40",
+ "rel": "parent",
+ "type": "application/json",
+ "title": "{\"title\":\"IMOS - Animal Tracking Facility\",\"recordAbstract\":\"The IMOS Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) represents the higher biological monitoring of the marine environment for the IMOS program. Currently the facility uses acoustic technology, CTD satellite trackers and bio loggers to monitor coastal and oceanic movements of marine animals from the Australian mainland to the sub-Antarctic islands and as far south as the Antarctic continent. Acoustic monitoring is a powerful tool for observing tagged marine animals with networks or cross shelf arrays (curtains) of receivers, allowing animals to be monitored over scales of hundreds of metres to thousands of kilometres. An array or network consists of a series of acoustic receivers that are strategically deployed on the sea floor for 1 to 10 years (depending on receiver type and battery life) with the ability to download data from the receivers as often as required. NCRIS and partner investments will target areas identified by regional nodes. VR2's deployed in conjunction with other moorings will provide information on long range movement of a variety of species including endangered and protected species (i.e. White Sharks and Grey Nurse Sharks), and valuable commercial species (i.e. Tuna) Curtains are mobile and can be deployed in different configurations for specific IMOS projects. The continued coordination of acoustic tag codes between researchers means that acoustic array around Australia will provide the combined infrastructure to monitor movement of highly migratory marine species between all jurisdictions. CTD satellite trackers and bio loggers currently deployed on a large range of animals are collecting a wide range of data. This includes behavioural and physical data such as the depth, temperature, salinity and movement effort of individual marine animals. The Animal Tracking Facility is set up to collect data over a long period of time. This sustained approach will enable researchers to assess the effects of climate change, ocean acidification and other physical changes that affect animals within the marine environment.\"}"
+ },
+ {
+ "href": "uuid:0ede6b3d-8635-472f-b91c-56a758b4e091",
+ "rel": "sibling",
+ "type": "application/json",
+ "title": "{\"title\":\"IMOS - Animal Tracking Facility - Acoustic Tracking - Quality Controlled Detections (2007 - 2017) (SUPERSEDED BY ONGOING COLLECTION)\",\"recordAbstract\":\"In its first decade, the Integrated Marine Observing System's Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) established a permanent array of acoustic receivers around Australia to detect the movements of tagged marine animals in coastal waters. Simultaneously, the Animal Tracking Facility developed a centralised national database (https://animaltracking.aodn.org.au/) to encourage collaborative research across the Australian research community and provide unprecedented opportunities to quantify individual behaviour across a broad range of taxa. This static dataset presents the first 10 years (2007 - 2017) of quality-controlled animal detections collated via the IMOS Australian Animal Acoustic Telemetry Database. The dataset comprises 48.5 million valid detections collected at 1891 receiving stations around Australia, and consists of detection data for 3523 tags deployed on 117 species (fish, sharks, rays, reptiles, and mammals), with distances travelled ranging from a few to thousands of kilometres. To access subsequent additions in a dynamic database, please refer to the following metadata record: https://catalogue-imos.aodn.org.au/geonetwork/srv/api/records/541d4f15-122a-443d-ab4e-2b5feb08d6a0\"}"
+ },
+ {
+ "href": "uuid:06b09398-d3d0-47dc-a54a-a745319fbece",
+ "rel": "child",
+ "type": "application/json",
+ "title": "{\"title\":\"IMOS - Animal Tracking Facility - Satellite Relay Tagging Program - Delayed mode data\",\"recordAbstract\":\"The Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) is a coordinated marine animal tagging project. Satellite Relay Data Loggers (SRDL) (most with CTDs, and some also with fluorometers) are used to explore how marine mammal behaviour relates to their oceanic environment. Loggers developed at the University of St Andrews Sea Mammal Research Unit transmit data in near real time via the Argo satellite system. The Satellite Relay Data Loggers are deployed on marine mammals, including Elephant Seals, Weddell Seals, Australian Fur Seals, Australian Sea Lions, New Zealand Fur Seals. Data is being collected in the Southern Ocean, the Great Australian Bight, and off the South-East Coast of Australia. This metadata record, represents several different datasets listed hereafter, which can all be accessed through a multi-WFS service. The data represented by this record are presented in delayed mode. CTD - parameters measured by the instruments include time, conductivity (salinity), temperature, speed, fluorescence (available in the future) and depth. Diving - parameters measured by the instruments include start and end time and longitude/latitude of each individual dive, post-dive surface duration, dive duration, maximum dive depth, intermediate dive depths and times. Haulout - a haulout begins when the SRDL has been continuously dry for a specified length of time (usually 10 minutes). It ends when continuously wet for another interval (usually 40 seconds). Haulout data parameters measured by the instruments include haulout start and end dates and longitude/latitude, and haulout number. Argos locations - location data parameters measured by the instruments include time, longitude, latitude, location quality, along with other diagnostic information provided by Argos (http://www.argos-system.org/). Summary Statistics - as well as sending records of individual events such as dives and haulouts, the SRDL also calculates summary statistics of those events over a specified time period (usually 3, 4 or 6 hours). Summary statistics computed by the instruments include the proportion of time spent diving, at the surface and hauled-out, the number of dives, and the average, standard deviation and maximum dive duration and dive depth during each summary period. These statistics are based on all the data recorded by the SRDL and so are not prone to distortion by variations in the efficiency of transmission via Argos. ** For data after October 2018, please consult IMOS - Animal Tracking Facility - Satellite Relay Tagging Program - Delayed mode data with quality-controlled locations (https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/70f148b1-7040-4fad-944a-456413c95472), to access data with improved satellite locations. In the near future all historical delayed mode data will be reprocessed with the new quality control (QC) process, to improve the accuracy of the satellite location data, and this dataset will be replaced by the new QC’d one. **\"}"
+ }
+ ],
+ "license": "Creative Commons Attribution 4.0 International License",
+ "providers": [
+ {
+ "name": "Integrated Marine Observing System (IMOS)",
+ "roles": [
+ "distributor"
+ ],
+ "url": "http://imos.org.au/aodn.html"
+ }
+ ],
+ "themes": [
+ {
+ "concepts": [
+ {
+ "id": "Oceans | Ocean Temperature | Water Temperature"
+ },
+ {
+ "id": "Oceans | Salinity/density | Conductivity"
+ },
+ {
+ "id": "Oceans | Marine Biology | Marine Mammals"
+ },
+ {
+ "id": "Oceans | Marine Biology | Marine Birds"
+ }
+ ],
+ "scheme": "",
+ "description": "GCMD",
+ "title": "NASA/Global Change Master Directory Earth Science Keywords Version 5.3.8"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Satellite Tag"
+ },
+ {
+ "id": "CTD Satellite Relay Data Logger"
+ },
+ {
+ "id": "Agency | SMRU | Sea Mammal Research Unit"
+ }
+ ],
+ "scheme": "",
+ "description": "IMOS",
+ "title": "IMOS Keywords Thesaurus"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Tags and Tracking Devices"
+ }
+ ],
+ "scheme": "theme",
+ "description": "",
+ "title": "Marine Community Profile of ISO19115 v1.4 Collection Methods Vocabulary (Annex C.1.3)"
+ },
+ {
+ "concepts": [
+ {
+ "id": "device_wmo_ref"
+ },
+ {
+ "id": "depth"
+ },
+ {
+ "id": "sea_water_temperature"
+ },
+ {
+ "id": "sea_water_pressure"
+ },
+ {
+ "id": "sea_water_salinity"
+ },
+ {
+ "id": "latitude"
+ },
+ {
+ "id": "longitude"
+ }
+ ],
+ "scheme": "",
+ "description": "",
+ "title": "Keywords (Theme)"
+ }
+ ],
+ "id": "4637bd9b-8fba-4a10-bf23-26a511e17042",
+ "search_suggestions": {
+ "abstract_phrases": [
+ "satellite relay data",
+ "mammals including elephant",
+ "andrews",
+ "via",
+ "how marine",
+ "monitoring system",
+ "satellite relay data loggers",
+ "mammal research",
+ "oceanic",
+ "zealand",
+ "near",
+ "oceanic environment",
+ "south east",
+ "australian sea lions new",
+ "great australian",
+ "australian fur seals",
+ "australia",
+ "monitoring",
+ "time via",
+ "south east coast",
+ "argo satellite system",
+ "coordinated marine animal",
+ "temperature speed fluorescence",
+ "marine mammal behaviour relates",
+ "near real time",
+ "how marine mammal",
+ "animal tagging project",
+ "zealand fur seals data",
+ "speed fluorescence available",
+ "relay data loggers",
+ "fur seals australian sea",
+ "fluorometers",
+ "animal",
+ "fluorescence available",
+ "southern",
+ "data loggers srdl most",
+ "how marine mammal behaviour",
+ "sea lions",
+ "mammal research unit transmit",
+ "seals australian",
+ "marine",
+ "sea",
+ "how",
+ "speed fluorescence",
+ "include time conductivity",
+ "australian animal tracking",
+ "andrews sea",
+ "temperature",
+ "monitoring system aatams",
+ "marine mammal behaviour",
+ "australian fur",
+ "tracking facility",
+ "st",
+ "southern ocean",
+ "instruments include time conductivity",
+ "andrews sea mammal",
+ "marine animal tagging project",
+ "near real",
+ "time conductivity salinity temperature",
+ "salinity temperature speed",
+ "conductivity salinity temperature",
+ "data parameters",
+ "parameters measured",
+ "australian sea lions",
+ "coordinated",
+ "loggers",
+ "mammals including",
+ "loggers srdl most",
+ "available",
+ "project",
+ "facility formerly",
+ "developed",
+ "research",
+ "weddell seals",
+ "elephant seals weddell",
+ "seals",
+ "project satellite relay",
+ "project satellite relay data",
+ "argo satellite",
+ "elephant seals",
+ "sea lions new",
+ "conductivity salinity",
+ "new zealand fur",
+ "data parameters measured",
+ "ocean",
+ "including elephant seals weddell",
+ "tracking facility formerly",
+ "seals australian sea",
+ "elephant",
+ "parameters",
+ "some",
+ "some also",
+ "relates",
+ "seals weddell seals",
+ "fur seals australian",
+ "animal tracking facility",
+ "speed",
+ "explore how",
+ "mammal",
+ "lions new zealand fur",
+ "instruments include",
+ "include time",
+ "satellite",
+ "marine mammal",
+ "andrews sea mammal research",
+ "relay",
+ "marine mammals",
+ "transmit",
+ "including elephant seals",
+ "seals data",
+ "salinity temperature",
+ "ctds",
+ "tagging project",
+ "sea mammal",
+ "environment",
+ "conductivity salinity temperature speed",
+ "argo",
+ "great australian bight",
+ "environment loggers",
+ "time",
+ "tagging",
+ "measured",
+ "zealand fur",
+ "mammal behaviour",
+ "mammal behaviour relates",
+ "collected",
+ "tracking facility formerly known",
+ "tracking",
+ "seals data parameters measured",
+ "seals australian sea lions",
+ "australian sea",
+ "east coast",
+ "srdl",
+ "instruments",
+ "depth data",
+ "weddell",
+ "weddell seals australian",
+ "environment loggers developed",
+ "st andrews sea",
+ "marine mammals including",
+ "st andrews",
+ "being",
+ "including elephant",
+ "being collected",
+ "coast",
+ "system",
+ "research unit transmit",
+ "mammals",
+ "time conductivity",
+ "elephant seals weddell seals",
+ "explore how marine mammal",
+ "research unit",
+ "unit transmit data",
+ "sea mammal research unit",
+ "seals australian fur seals",
+ "south",
+ "seals australian fur",
+ "australian",
+ "new zealand fur seals",
+ "known",
+ "coordinated marine animal tagging",
+ "time conductivity salinity",
+ "include",
+ "explore",
+ "salinity temperature speed fluorescence",
+ "fur seals data parameters",
+ "instruments include time",
+ "great",
+ "off",
+ "animal tagging project satellite",
+ "depth",
+ "future",
+ "behaviour",
+ "facility",
+ "explore how marine",
+ "sea lions new zealand",
+ "include time conductivity salinity",
+ "relay data",
+ "fur",
+ "data",
+ "coordinated marine",
+ "seals weddell",
+ "seals data parameters",
+ "loggers srdl",
+ "seals weddell seals australian",
+ "used",
+ "behaviour relates",
+ "marine animal tagging",
+ "st andrews sea mammal",
+ "satellite system",
+ "conductivity",
+ "australian bight",
+ "system aatams",
+ "fluorescence",
+ "relay data loggers srdl",
+ "bight",
+ "near real time via",
+ "data loggers",
+ "temperature speed",
+ "oceanic environment loggers developed",
+ "new",
+ "mammal research unit",
+ "including",
+ "fur seals data",
+ "tagging project satellite relay",
+ "project satellite",
+ "marine mammals including elephant",
+ "australian fur seals australian",
+ "real",
+ "most",
+ "animal tagging",
+ "sea mammal research",
+ "unit",
+ "transmit data",
+ "formerly known",
+ "marine animal",
+ "data loggers srdl",
+ "university",
+ "deployed",
+ "real time via",
+ "animal tracking facility formerly",
+ "new zealand",
+ "east",
+ "research unit transmit data",
+ "facility formerly known",
+ "zealand fur seals",
+ "weddell seals australian fur",
+ "real time",
+ "oceanic environment loggers",
+ "aatams",
+ "salinity",
+ "animal tracking",
+ "srdl most",
+ "tagging project satellite",
+ "satellite relay",
+ "also",
+ "loggers developed",
+ "mammals including elephant seals",
+ "fur seals",
+ "lions new",
+ "lions",
+ "lions new zealand",
+ "australian animal",
+ "temperature speed fluorescence available",
+ "formerly",
+ "unit transmit"
+ ]
},
- "sci:citation" : "{\"suggestedCitation\":\"The citation in a list of references is: \\\"IMOS [year-of-data-download], [Title], [data-access-URL], accessed [date-of-access].\\\"\",\"useLimitations\":[\"Data, products and services from IMOS are provided \\\"as is\\\" without any warranty as to fitness for a particular purpose.\"],\"otherConstraints\":[\"Any users of IMOS data are required to clearly acknowledge the source of the material derived from IMOS in the format: \\\"Data was sourced from Australia’s Integrated Marine Observing System (IMOS) – IMOS is enabled by the National Collaborative Research Infrastructure strategy (NCRIS).\\\" If relevant, also credit other organisations involved in collection of this particular datastream (as listed in 'credit' in the metadata record).\"]}",
- "type" : "Collection",
- "stac_version" : "1.0.0",
- "stac_extensions" : [ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", "https://stac-extensions.github.io/contacts/v0.1.1/schema.json", "https://stac-extensions.github.io/projection/v1.1.0/schema.json", "https://stac-extensions.github.io/language/v1.0.0/schema.json", "https://stac-extensions.github.io/themes/v1.0.0/schema.json", "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" ]
+ "sci:citation": "{\"suggestedCitation\":\"The citation in a list of references is: \\\"IMOS [year-of-data-download], [Title], [data-access-URL], accessed [date-of-access].\\\"\",\"useLimitations\":[\"Data, products and services from IMOS are provided \\\"as is\\\" without any warranty as to fitness for a particular purpose.\"],\"otherConstraints\":[\"Any users of IMOS data are required to clearly acknowledge the source of the material derived from IMOS in the format: \\\"Data was sourced from Australia’s Integrated Marine Observing System (IMOS) – IMOS is enabled by the National Collaborative Research Infrastructure strategy (NCRIS).\\\" If relevant, also credit other organisations involved in collection of this particular datastream (as listed in 'credit' in the metadata record).\"]}",
+ "type": "Collection",
+ "stac_version": "1.0.0",
+ "stac_extensions": [
+ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/contacts/v0.1.1/schema.json",
+ "https://stac-extensions.github.io/projection/v1.1.0/schema.json",
+ "https://stac-extensions.github.io/language/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/themes/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
+ ]
}
diff --git a/indexer/src/test/resources/canned/irregular.geojson b/indexer/src/test/resources/canned/irregular.geojson
new file mode 100644
index 00000000..33f1885b
--- /dev/null
+++ b/indexer/src/test/resources/canned/irregular.geojson
@@ -0,0 +1,131 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "coordinates": [
+ [
+ 0.2337242356863385,
+ 4.518654452684871
+ ],
+ [
+ 1.0757323470082554,
+ 4.063032694138045
+ ],
+ [
+ 2.0156483782505745,
+ 4.772378565429946
+ ],
+ [
+ 2.6096230924383406,
+ 4.082564826969502
+ ],
+ [
+ 4.378492845680455,
+ 3.906758793933477
+ ],
+ [
+ 2.896819657540817,
+ 3.0532809551275335
+ ],
+ [
+ 1.3237657441414399,
+ 3.3595784740430616
+ ],
+ [
+ 0.4425944648511688,
+ 2.55781029552125
+ ],
+ [
+ 1.3498745227876725,
+ 1.8533999697946513
+ ],
+ [
+ 2.805438932281021,
+ 2.0556251797475227
+ ],
+ [
+ 3.9933883606575193,
+ 2.042579138064241
+ ],
+ [
+ 4.469873570940251,
+ 1.2661726935846218
+ ],
+ [
+ 4.221840173806072,
+ 0.8615572254442299
+ ],
+ [
+ 4.750542941380246,
+ 0.16317964593562806
+ ],
+ [
+ 3.647447043602,
+ 0.32635796829360686
+ ],
+ [
+ 3.3863592571466654,
+ 1.2335444854399356
+ ],
+ [
+ 2.361589695305099,
+ 0.46342576793742296
+ ],
+ [
+ 0.5861927474024355,
+ 0.3851015854472166
+ ],
+ [
+ -0.7061917955559807,
+ 1.1617610340611009
+ ],
+ [
+ -0.7779909368311166,
+ 2.616495167329873
+ ],
+ [
+ 0.2337242356863385,
+ 4.518654452684871
+ ]
+ ],
+ "type": "LineString"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "coordinates": [
+ [
+ 1.2323850884183116,
+ 3.8220980913438325
+ ],
+ [
+ 1.89815894388218,
+ 4.258332255701447
+ ],
+ [
+ 2.4464432954400195,
+ 3.7895340894263114
+ ],
+ [
+ 3.379832132021761,
+ 3.724402418269719
+ ],
+ [
+ 2.59656877265283,
+ 3.424735946359405
+ ],
+ [
+ 1.2323850884183116,
+ 3.8220980913438325
+ ]
+ ],
+ "type": "LineString"
+ }
+ }
+ ]
+}
diff --git a/indexer/src/test/resources/canned/keywords_null_stac.json b/indexer/src/test/resources/canned/keywords_null_stac.json
index f462ec59..03b23a22 100644
--- a/indexer/src/test/resources/canned/keywords_null_stac.json
+++ b/indexer/src/test/resources/canned/keywords_null_stac.json
@@ -69,12 +69,11 @@
],
"type": "GeometryCollection"
},
- "temporal": [
- {
- "start": "2018-09-13T14:00:00Z",
- "end": null
- }
- ]
+ "temporal" : [ {
+ "start" : "2018-09-13T14:00:00Z",
+ "end" : null
+ } ],
+ "centroid" : [ [ 128.494, -11.35 ] ]
},
"contacts": [
{
diff --git a/indexer/src/test/resources/canned/sample10_stac.json b/indexer/src/test/resources/canned/sample10_stac.json
index 1931ac05..0d1853c0 100644
--- a/indexer/src/test/resources/canned/sample10_stac.json
+++ b/indexer/src/test/resources/canned/sample10_stac.json
@@ -4,148 +4,148 @@
"extent": {
"bbox": [
[
- 113,
- -43,
- 154,
- -9
+ 113.0,
+ -43.0,
+ 154.0,
+ -9.0
],
[
- 115,
- -21,
- 117,
- -19
+ 115.0,
+ -21.0,
+ 117.0,
+ -19.0
],
[
- 114,
- -21,
- 115,
- -20
+ 114.0,
+ -21.0,
+ 115.0,
+ -20.0
],
[
- 152,
- -22,
- 153,
- -21
+ 152.0,
+ -22.0,
+ 153.0,
+ -21.0
],
[
- 113,
- -22,
- 114,
- -21
+ 113.0,
+ -22.0,
+ 114.0,
+ -21.0
],
[
- 151,
- -24,
- 153,
- -22
+ 151.0,
+ -24.0,
+ 153.0,
+ -22.0
],
[
- 130,
- -10,
- 131,
- -9
+ 130.0,
+ -10.0,
+ 131.0,
+ -9.0
],
[
- 121,
- -17,
- 122,
- -15
+ 121.0,
+ -17.0,
+ 122.0,
+ -15.0
],
[
- 130,
- -13,
- 131,
- -12
+ 130.0,
+ -13.0,
+ 131.0,
+ -12.0
],
[
- 127,
- -14,
- 129,
- -9
+ 127.0,
+ -14.0,
+ 129.0,
+ -9.0
],
[
- 145,
- -15,
- 146,
- -14
+ 145.0,
+ -15.0,
+ 146.0,
+ -14.0
],
[
- 123,
- -15,
- 124,
- -14
+ 123.0,
+ -15.0,
+ 124.0,
+ -14.0
],
[
- 119,
- -18,
- 120,
- -17
+ 119.0,
+ -18.0,
+ 120.0,
+ -17.0
],
[
- 147,
- -20,
- 148,
- -18
+ 147.0,
+ -20.0,
+ 148.0,
+ -18.0
],
[
- 153,
- -28,
- 154,
- -27
+ 153.0,
+ -28.0,
+ 154.0,
+ -27.0
],
[
- 153,
- -31,
- 154,
- -30
+ 153.0,
+ -31.0,
+ 154.0,
+ -30.0
],
[
- 137,
- -34,
- 138,
- -33
+ 137.0,
+ -34.0,
+ 138.0,
+ -33.0
],
[
- 114,
- -33,
- 116,
- -31
+ 114.0,
+ -33.0,
+ 116.0,
+ -31.0
],
[
- 121,
- -34,
- 122,
- -33
+ 121.0,
+ -34.0,
+ 122.0,
+ -33.0
],
[
- 151,
- -35,
- 152,
- -33
+ 151.0,
+ -35.0,
+ 152.0,
+ -33.0
],
[
- 150,
- -37,
- 151,
- -36
+ 150.0,
+ -37.0,
+ 151.0,
+ -36.0
],
[
- 134,
- -37,
- 137,
- -34
+ 134.0,
+ -37.0,
+ 137.0,
+ -34.0
],
[
- 141,
- -39,
- 142,
- -38
+ 141.0,
+ -39.0,
+ 142.0,
+ -38.0
],
[
- 148,
- -43,
- 149,
- -42
+ 148.0,
+ -43.0,
+ 149.0,
+ -42.0
]
],
"temporal": [
@@ -878,6 +878,108 @@
"start": "2007-09-08T14:00:00Z",
"end": null
}
+ ],
+ "centroid": [
+ [
+ 116.128,
+ -19.752
+ ],
+ [
+ 114.5,
+ -20.5
+ ],
+ [
+ 152.5,
+ -21.5
+ ],
+ [
+ 113.498,
+ -21.498
+ ],
+ [
+ 151.867,
+ -23.137
+ ],
+ [
+ 130.5,
+ -9.5
+ ],
+ [
+ 121.5,
+ -16.0
+ ],
+ [
+ 130.409,
+ -12.374
+ ],
+ [
+ 128.071,
+ -11.357
+ ],
+ [
+ 145.519,
+ -14.478
+ ],
+ [
+ 123.5,
+ -14.5
+ ],
+ [
+ 119.5,
+ -17.5
+ ],
+ [
+ 147.537,
+ -18.798
+ ],
+ [
+ 153.625,
+ -27.458
+ ],
+ [
+ 153.538,
+ -30.518
+ ],
+ [
+ 137.527,
+ -33.539
+ ],
+ [
+ 114.962,
+ -31.82
+ ],
+ [
+ 121.496,
+ -33.923
+ ],
+ [
+ 151.579,
+ -34.168
+ ],
+ [
+ 150.533,
+ -36.517
+ ],
+ [
+ 135.631,
+ -35.613
+ ],
+ [
+ 135.939,
+ -34.684
+ ],
+ [
+ 135.99,
+ -34.872
+ ],
+ [
+ 141.478,
+ -38.629
+ ],
+ [
+ 148.523,
+ -42.517
+ ]
]
},
"contacts": [
diff --git a/indexer/src/test/resources/canned/sample11_stac.json b/indexer/src/test/resources/canned/sample11_stac.json
index f4dc6375..13265b02 100644
--- a/indexer/src/test/resources/canned/sample11_stac.json
+++ b/indexer/src/test/resources/canned/sample11_stac.json
@@ -339,6 +339,44 @@
"start": "2008-09-28T14:00:00Z",
"end": null
}
+ ],
+ "centroid": [
+ [
+ 115.328,
+ -32.073
+ ],
+ [
+ 130.409,
+ -12.374
+ ],
+ [
+ 147.602,
+ -19.324
+ ],
+ [
+ 113.498,
+ -21.498
+ ],
+ [
+ 153.625,
+ -27.458
+ ],
+ [
+ 136.446,
+ -35.46
+ ],
+ [
+ 121.496,
+ -33.923
+ ],
+ [
+ 151.512,
+ -34.512
+ ],
+ [
+ 148.523,
+ -42.517
+ ]
]
},
"contacts": [
diff --git a/indexer/src/test/resources/canned/sample12_stac.json b/indexer/src/test/resources/canned/sample12_stac.json
index 19c80cde..81e8de2f 100644
--- a/indexer/src/test/resources/canned/sample12_stac.json
+++ b/indexer/src/test/resources/canned/sample12_stac.json
@@ -4,15 +4,15 @@
"extent": {
"bbox": [
[
- 147,
- -54,
- 159,
+ 147.0,
+ -54.0,
+ 159.0,
-42.4
],
[
- 147,
- -54,
- 159,
+ 147.0,
+ -54.0,
+ 159.0,
-42.4
]
],
@@ -75,6 +75,24 @@
"start": "2012-04-15T14:00:00Z",
"end": "2012-04-30T13:59:59Z"
}
+ ],
+ "centroid": [
+ [
+ 152.0,
+ -49.0
+ ],
+ [
+ 152.203,
+ -43.218
+ ],
+ [
+ 158.0,
+ -49.0
+ ],
+ [
+ 158.0,
+ -43.2
+ ]
]
},
"contacts": [
diff --git a/indexer/src/test/resources/canned/sample13_stac.json b/indexer/src/test/resources/canned/sample13_stac.json
index a619b047..799c1161 100644
--- a/indexer/src/test/resources/canned/sample13_stac.json
+++ b/indexer/src/test/resources/canned/sample13_stac.json
@@ -71,6 +71,20 @@
"start": "2016-11-17T13:00:00Z",
"end": "2016-11-20T12:59:59Z"
}
+ ],
+ "centroid": [
+ [
+ 151.19,
+ -33.986
+ ],
+ [
+ 152.36,
+ -33.159
+ ],
+ [
+ 152.996,
+ -30.741
+ ]
]
},
"contacts": [
diff --git a/indexer/src/test/resources/canned/sample14_stac.json b/indexer/src/test/resources/canned/sample14_stac.json
index 5507ded9..ea193afd 100644
--- a/indexer/src/test/resources/canned/sample14_stac.json
+++ b/indexer/src/test/resources/canned/sample14_stac.json
@@ -75,12 +75,11 @@
],
"type": "GeometryCollection"
},
- "temporal": [
- {
- "start": "2010-09-20T15:14:00Z",
- "end": "2010-10-13T07:59:00Z"
- }
- ]
+ "temporal" : [ {
+ "start" : "2010-09-20T15:14:00Z",
+ "end" : "2010-10-13T07:59:00Z"
+ } ],
+ "centroid" : [ [ 152.197, -33.076 ] ]
},
"contacts": [
{
diff --git a/indexer/src/test/resources/canned/sample15_stac.json b/indexer/src/test/resources/canned/sample15_stac.json
index 9cc73e42..e8789dd2 100644
--- a/indexer/src/test/resources/canned/sample15_stac.json
+++ b/indexer/src/test/resources/canned/sample15_stac.json
@@ -112,6 +112,20 @@
"start": "1984-10-31T13:00:00Z",
"end": "2014-12-30T13:00:00Z"
}
+ ],
+ "centroid": [
+ [
+ 149.085,
+ -19.658
+ ],
+ [
+ 143.941,
+ -12.18
+ ],
+ [
+ 152.855,
+ -22.579
+ ]
]
},
"contacts": [
diff --git a/indexer/src/test/resources/canned/sample4_stac.json b/indexer/src/test/resources/canned/sample4_stac.json
index a5127ab0..83f51c25 100644
--- a/indexer/src/test/resources/canned/sample4_stac.json
+++ b/indexer/src/test/resources/canned/sample4_stac.json
@@ -1,390 +1,883 @@
{
- "title" : "Ocean acidification historical reconstruction",
- "description" : "This dataset contains the reconstructed time series of monthly mean aragonite, calcite and pH together with distribution of dissolved inorganic carbon (DIC), total alkalinity (ALK), sea surface temperature and salinity in the Australian region at a 1 degree resolution over the period 1870-2013.",
- "extent" : {
- "bbox" : [ [ 95.5, -44.5, 169.5, -0.5 ], [ 95.5, -44.5, 169.5, -0.5 ] ],
- "temporal" : [ [ "1870-07-16T14:10:44Z", "2013-06-17T13:59:59Z" ], [ "1870-07-16T14:10:44Z", "2013-06-17T13:59:59Z" ] ]
+ "title": "Ocean acidification historical reconstruction",
+ "description": "This dataset contains the reconstructed time series of monthly mean aragonite, calcite and pH together with distribution of dissolved inorganic carbon (DIC), total alkalinity (ALK), sea surface temperature and salinity in the Australian region at a 1 degree resolution over the period 1870-2013.",
+ "extent": {
+ "bbox": [
+ [
+ 95.5,
+ -44.5,
+ 169.5,
+ -0.5
+ ],
+ [
+ 95.5,
+ -44.5,
+ 169.5,
+ -0.5
+ ]
+ ],
+ "temporal": [
+ [
+ "1870-07-16T14:10:44Z",
+ "2013-06-17T13:59:59Z"
+ ],
+ [
+ "1870-07-16T14:10:44Z",
+ "2013-06-17T13:59:59Z"
+ ]
+ ]
},
- "summaries" : {
- "score" : 72,
- "status" : "completed",
- "credits" : [ "Australian Climate Change Science Program", "CSIRO carbon cluster", "JSPS KAKENHI Grant no. 26220102", "Integrated Marine Observing System (IMOS) for providing data from their Australian National Reference Stations (NRS)", "Kate Berry and Kristina Patterson for their analysis of the observed carbon data" ],
- "scope" : {
- "code" : "dataset",
- "name" : ""
+ "summaries": {
+ "score": 72,
+ "status": "completed",
+ "credits": [
+ "Australian Climate Change Science Program",
+ "CSIRO carbon cluster",
+ "JSPS KAKENHI Grant no. 26220102",
+ "Integrated Marine Observing System (IMOS) for providing data from their Australian National Reference Stations (NRS)",
+ "Kate Berry and Kristina Patterson for their analysis of the observed carbon data"
+ ],
+ "scope": {
+ "code": "dataset",
+ "name": ""
},
- "statement" : "This dataset was created using both observed and modelled data.\n\n A full description of the dataset is available from: \"Historical reconstruction of ocean acidification in the Australian region. Lenton et al. 2016, Biogeosciences 13, 1753-1765,http://www.biogeosciences.net/13/1753/2016",
- "creation" : "2019-01-08T15:59:50",
- "revision" : "2019-01-08T15:59:50",
- "dataset_group" : "sample",
- "dataset_provider" : "IMOS",
- "update_frequency" : "completed",
- "proj:geometry" : {
- "geometries" : [ {
- "type" : "Polygon",
- "coordinates" : [ [ [ 95.5, -44.5 ], [ 169.5, -44.5 ], [ 169.5, -0.5 ], [ 95.5, -0.5 ], [ 95.5, -44.5 ] ] ]
- } ],
- "type" : "GeometryCollection"
+ "statement": "This dataset was created using both observed and modelled data.\n\n A full description of the dataset is available from: \"Historical reconstruction of ocean acidification in the Australian region. Lenton et al. 2016, Biogeosciences 13, 1753-1765,http://www.biogeosciences.net/13/1753/2016",
+ "creation": "2019-01-08T15:59:50",
+ "revision": "2019-01-08T15:59:50",
+ "dataset_group": "sample",
+ "dataset_provider": "IMOS",
+ "update_frequency": "completed",
+ "proj:geometry": {
+ "geometries": [
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 95.5,
+ -44.5
+ ],
+ [
+ 169.5,
+ -44.5
+ ],
+ [
+ 169.5,
+ -0.5
+ ],
+ [
+ 95.5,
+ -0.5
+ ],
+ [
+ 95.5,
+ -44.5
+ ]
+ ]
+ ]
+ }
+ ],
+ "type": "GeometryCollection"
},
- "temporal" : [ {
- "start" : "1870-07-16T14:10:44Z",
- "end" : "2013-06-17T13:59:59Z"
- } ],
- "parameter_vocabs" : [ "salinity", "chemical", "carbon", "temperature", "ph (total scale) of the water body", "alkalinity" ]
+ "temporal": [
+ {
+ "start": "1870-07-16T14:10:44Z",
+ "end": "2013-06-17T13:59:59Z"
+ }
+ ],
+ "parameter_vocabs": [
+ "salinity",
+ "chemical",
+ "carbon",
+ "temperature",
+ "ph (total scale) of the water body",
+ "alkalinity"
+ ],
+ "centroid": [
+ [
+ 100.5,
+ -39.5
+ ],
+ [
+ 100.5,
+ -29.5
+ ],
+ [
+ 100.5,
+ -19.5
+ ],
+ [
+ 100.412,
+ -9.597
+ ],
+ [
+ 98.984,
+ -2.549
+ ],
+ [
+ 110.5,
+ -39.5
+ ],
+ [
+ 110.114,
+ -29.7
+ ],
+ [
+ 110.293,
+ -19.312
+ ],
+ [
+ 110.555,
+ -9.797
+ ],
+ [
+ 109.206,
+ -2.893
+ ],
+ [
+ 120.543,
+ -39.564
+ ],
+ [
+ 124.762,
+ -33.362
+ ],
+ [
+ 119.243,
+ -17.126
+ ],
+ [
+ 120.454,
+ -9.621
+ ],
+ [
+ 123.708,
+ -2.44
+ ],
+ [
+ 130.498,
+ -39.502
+ ],
+ [
+ 130.163,
+ -33.253
+ ],
+ [
+ 129.032,
+ -14.746
+ ],
+ [
+ 130.18,
+ -8.863
+ ],
+ [
+ 129.932,
+ -2.533
+ ],
+ [
+ 139.865,
+ -40.525
+ ],
+ [
+ 137.233,
+ -33.893
+ ],
+ [
+ 139.313,
+ -15.657
+ ],
+ [
+ 139.907,
+ -10.503
+ ],
+ [
+ 141.4,
+ -1.78
+ ],
+ [
+ 151.43,
+ -40.022
+ ],
+ [
+ 154.037,
+ -29.994
+ ],
+ [
+ 151.38,
+ -18.697
+ ],
+ [
+ 153.171,
+ -9.502
+ ],
+ [
+ 150.483,
+ -2.477
+ ],
+ [
+ 160.5,
+ -39.5
+ ],
+ [
+ 160.5,
+ -29.5
+ ],
+ [
+ 160.466,
+ -19.489
+ ],
+ [
+ 160.534,
+ -9.521
+ ],
+ [
+ 160.5,
+ -2.5
+ ],
+ [
+ 167.471,
+ -39.402
+ ],
+ [
+ 167.5,
+ -29.5
+ ],
+ [
+ 167.519,
+ -19.527
+ ],
+ [
+ 167.502,
+ -9.492
+ ],
+ [
+ 167.5,
+ -2.5
+ ],
+ [
+ 117.459,
+ -0.508
+ ],
+ [
+ 142.388,
+ -8.248
+ ]
+ ]
},
- "contacts" : [ {
- "roles" : [ "principalInvestigator", "about" ],
- "organization" : "CSIRO Oceans and Atmosphere - Hobart",
- "name" : "Lenton, Andrew",
- "position" : "",
- "emails" : [ "Andrew.Lenton@csiro.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "GPO Box 1538" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7000",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ ],
- "links" : [ ]
- }, {
- "roles" : [ "pointOfContact", "about" ],
- "organization" : "Integrated Marine Observing System (IMOS)",
- "name" : "",
- "position" : "Data Officer",
- "emails" : [ "info@aodn.org.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "University of Tasmania", "Private Bag 110" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "61 3 6226 7488"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "61 3 6226 2701"
- } ],
- "links" : [ {
- "href" : "http://imos.org.au/aodn.html",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "Website of the Australian Ocean Data Network (AODN)"
- } ]
- }, {
- "roles" : [ "distributor", "metadata" ],
- "organization" : "Integrated Marine Observing System (IMOS)",
- "name" : "",
- "position" : "Data Officer",
- "emails" : [ "info@aodn.org.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "University of Tasmania", "Private Bag 110" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "61 3 6226 7488"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "61 3 6226 2701"
- } ],
- "links" : [ {
- "href" : "http://imos.org.au/aodn.html",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "Website of the Australian Ocean Data Network (AODN)"
- } ]
- }, {
- "roles" : [ "principalInvestigator", "citation" ],
- "organization" : "CSIRO Oceans and Atmosphere - Hobart",
- "name" : "Lenton, Andrew",
- "position" : "",
- "emails" : [ "Andrew.Lenton@csiro.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "GPO Box 1538" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7000",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ ],
- "links" : [ {
- "href" : "http://www.csiro.au/en/Research/OandA",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "CSIRO Oceans & Atmosphere website"
- } ]
- }, {
- "roles" : [ "collaborator", "citation" ],
- "organization" : "CSIRO Oceans and Atmosphere - Hobart",
- "name" : "Tilbrook, Bronte",
- "position" : "",
- "emails" : [ "Bronte.Tilbrook@csiro.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "GPO Box 1538" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7000",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ ],
- "links" : [ {
- "href" : "http://www.csiro.au/en/Research/OandA",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "CSIRO Oceans & Atmosphere website"
- } ]
- }, {
- "roles" : [ "collaborator", "citation" ],
- "organization" : "CSIRO Oceans and Atmosphere - Hobart",
- "name" : "Matear, Richard",
- "position" : "",
- "emails" : [ "Richard.Matear@csiro.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "GPO Box 1538" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7000",
- "administrativeArea" : "Tasmania"
- } ],
- "phones" : [ ],
- "links" : [ {
- "href" : "http://www.csiro.au/en/Research/OandA",
- "type" : "WWW:LINK-1.0-http--link",
- "title" : "CSIRO Oceans & Atmosphere website"
- } ]
- }, {
- "roles" : [ "collaborator", "citation" ],
- "organization" : "Climate Change Research Centre (CCRC), The University of New South Wales (UNSW)",
- "name" : "Sasse, Tristan",
- "position" : "",
- "emails" : [ "t.sasse@unsw.edu.au" ],
- "addresses" : [ {
- "deliveryPoint" : [ "Level 4, Mathews Building", "University of New South Wales" ],
- "city" : "Sydney",
- "country" : "Australia",
- "postalCode" : "2052",
- "administrativeArea" : "New South Wales"
- } ],
- "phones" : [ ],
- "links" : [ ]
- }, {
- "roles" : [ "collaborator", "citation" ],
- "organization" : "National Institute for Environmental Studies (NIES)",
- "name" : "Nojiri, Yukihiro",
- "position" : "",
- "emails" : [ "nojiri@nies.go.jp" ],
- "addresses" : [ {
- "deliveryPoint" : [ "16-2 Onogawa" ],
- "city" : "Tsukuba",
- "country" : "Japan",
- "postalCode" : "305-0053",
- "administrativeArea" : "Ibaraki Prefecture"
- } ],
- "phones" : [ ],
- "links" : [ ]
- } ],
- "languages" : [ {
- "code" : "eng",
- "name" : "English"
- } ],
- "links" : [ {
- "href" : "http://www.biogeosciences.net/13/1753/2016",
- "rel" : "related",
- "type" : "text/html",
- "title" : "Biogeosciences Journal article"
- }, {
- "href" : "https://portal.aodn.org.au/search?uuid=7709f541-fc0c-4318-b5b9-9053aa474e0e",
- "rel" : "related",
- "type" : "text/html",
- "title" : "View and download data though the AODN Portal"
- }, {
- "href" : "http://thredds.aodn.org.au/thredds/dodsC/CSIRO/Climatology/Ocean_Acidification/OA_Reconstruction.nc.html",
- "rel" : "related",
- "type" : "text/html",
- "title" : "NetCDF files via THREDDS catalog"
- }, {
- "href" : "http://geoserver-123.aodn.org.au/geoserver/ncwms",
- "rel" : "wms",
- "type" : "",
- "title" : "csiro_oa_reconstruction_url/SST"
- }, {
- "href" : "http://geoserver-123.aodn.org.au/geoserver/ncwms",
- "rel" : "wms",
- "type" : "",
- "title" : "csiro_oa_reconstruction_url/SSS"
- }, {
- "href" : "http://geoserver-123.aodn.org.au/geoserver/ncwms",
- "rel" : "wms",
- "type" : "",
- "title" : "csiro_oa_reconstruction_url/ALK"
- }, {
- "href" : "http://geoserver-123.aodn.org.au/geoserver/ncwms",
- "rel" : "wms",
- "type" : "",
- "title" : "csiro_oa_reconstruction_url/DIC"
- }, {
- "href" : "http://geoserver-123.aodn.org.au/geoserver/ncwms",
- "rel" : "wms",
- "type" : "",
- "title" : "csiro_oa_reconstruction_url/OMEGA_A"
- }, {
- "href" : "http://geoserver-123.aodn.org.au/geoserver/ncwms",
- "rel" : "wms",
- "type" : "",
- "title" : "csiro_oa_reconstruction_url/OMEGA_C"
- }, {
- "href" : "http://geoserver-123.aodn.org.au/geoserver/ncwms",
- "rel" : "wms",
- "type" : "",
- "title" : "csiro_oa_reconstruction_url/pH_T"
- }, {
- "href" : "https://processes.aodn.org.au/wps",
- "rel" : "related",
- "type" : "",
- "title" : "csiro_oa_reconstruction_url"
- }, {
- "href" : "https://help.aodn.org.au/web-services/gogoduck-aggregator/",
- "rel" : "related",
- "type" : "text/html",
- "title" : "GoGoDuck help documentation"
- }, {
- "href" : "https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/7709f541-fc0c-4318-b5b9-9053aa474e0e",
- "rel" : "describedby",
- "type" : "text/html",
- "title" : "Full metadata link"
- }, {
- "href" : "https://licensebuttons.net/l/by/4.0/88x31.png",
- "rel" : "license",
- "type" : "image/png"
- }, {
- "href" : "http://creativecommons.org/licenses/by/4.0/",
- "rel" : "license",
- "type" : "text/html"
- } ],
- "license" : "Creative Commons Attribution 4.0 International License",
- "providers" : [ {
- "name" : "Integrated Marine Observing System (IMOS)",
- "roles" : [ "distributor" ],
- "url" : "http://imos.org.au/aodn.html"
- } ],
- "themes" : [ {
- "concepts" : [ {
- "id" : "Oceans | Ocean Temperature | Sea Surface Temperature"
- }, {
- "id" : "Oceans | Salinity/density | Salinity"
- }, {
- "id" : "Oceans | Ocean Chemistry | Carbon Dioxide"
- }, {
- "id" : "Oceans | Ocean Chemistry | Carbonate"
- }, {
- "id" : "Oceans | Ocean Chemistry | pH"
- } ],
- "scheme" : "theme",
- "description" : "GCMD",
- "title" : "NASA/Global Change Master Directory Earth Science Keywords Version 5.3.8"
- }, {
- "concepts" : [ {
- "id" : "Ocean Biogeochemistry"
- }, {
- "id" : "pCO2"
- } ],
- "scheme" : "theme",
- "description" : "IMOS",
- "title" : "IMOS Keywords Thesaurus"
- }, {
- "concepts" : [ {
- "id" : "Global / Oceans | Pacific Ocean"
- }, {
- "id" : "Global / Oceans | Southern Ocean"
- }, {
- "id" : "Global / Oceans | Indian Ocean"
- }, {
- "id" : "Marine Features (Australia) | Great Australian Bight, SA/WA"
- }, {
- "id" : "Marine Features (Australia) | Bass Strait, TAS/VIC"
- }, {
- "id" : "Regional Seas | Coral Sea"
- }, {
- "id" : "Regional Seas | Tasman Sea"
- }, {
- "id" : "Regional Seas | Timor Sea"
- }, {
- "id" : "Regional Seas | Arafura Sea"
- }, {
- "id" : "Regional Seas | Banda Sea"
- }, {
- "id" : "Regional Seas | Java Sea"
- }, {
- "id" : "Regional Seas | Solomon Sea"
- } ],
- "scheme" : "place",
- "description" : "",
- "title" : "AODN Geographic Extents Vocabulary"
- }, {
- "concepts" : [ {
- "id" : "Countries | Australia"
- }, {
- "id" : "Countries | Papua New Guinea"
- }, {
- "id" : "Countries | Indonesia"
- }, {
- "id" : "Countries | Timor-Leste"
- }, {
- "id" : "Countries | New Zealand"
- }, {
- "id" : "States, Territories (Australia) | Western Australia"
- }, {
- "id" : "States, Territories (Australia) | Queensland"
- }, {
- "id" : "States, Territories (Australia) | South Australia"
- }, {
- "id" : "States, Territories (Australia) | Tasmania"
- }, {
- "id" : "States, Territories (Australia) | Victoria"
- }, {
- "id" : "States, Territories (Australia) | New South Wales"
- }, {
- "id" : "States, Territories (Australia) | Northern Territory"
- } ],
- "scheme" : "place",
- "description" : "",
- "title" : "AODN Geographic Extents Vocabulary"
- }, {
- "concepts" : [ {
- "id" : "Temperature of the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/TEMPPR01"
- }, {
- "id" : "Practical salinity of the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/PSLTZZ01"
- }, {
- "id" : "Concentration of carbon (total inorganic) per unit mass of the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/1"
- }, {
- "id" : "Total alkalinity per unit mass of the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/MDMAP014"
- }, {
- "id" : "Saturation state of aragonite in the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/24"
- }, {
- "id" : "Saturation state of calcite in the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/25"
- }, {
- "id" : "pH (total scale) of the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/27"
- } ],
- "scheme" : "theme",
- "description" : "",
- "title" : "AODN Discovery Parameter Vocabulary"
- } ],
- "id" : "7709f541-fc0c-4318-b5b9-9053aa474e0e",
- "search_suggestions" : {
- "abstract_phrases" : [ "dataset contains", "calcite", "resolution", "carbon dic", "sea surface", "alkalinity alk sea", "monthly mean", "aragonite calcite", "carbon", "degree resolution over", "monthly mean aragonite calcite", "dissolved", "total alkalinity alk sea", "total alkalinity alk", "inorganic carbon", "sea surface temperature", "alk", "period", "reconstructed time", "surface", "aragonite", "degree", "time series", "inorganic carbon dic total", "dissolved inorganic", "alkalinity", "inorganic", "dic total alkalinity alk", "contains", "ph together", "alk sea", "monthly", "region", "dissolved inorganic carbon dic", "dic total alkalinity", "mean aragonite calcite", "alk sea surface temperature", "monthly mean aragonite", "australian", "resolution over", "distribution", "sea", "carbon dic total alkalinity", "total", "temperature", "alk sea surface", "together", "alkalinity alk", "dissolved inorganic carbon", "over", "salinity", "reconstructed", "alkalinity alk sea surface", "total alkalinity", "inorganic carbon dic", "carbon dic total", "reconstructed time series", "mean aragonite", "degree resolution", "dic total", "surface temperature", "series", "mean", "ph", "time", "dataset", "dic", "australian region" ],
- "parameter_vocabs_sayt" : [ "ph (total scale) of the water body", "alkalinity", "carbon", "temperature", "salinity" ]
+ "contacts": [
+ {
+ "roles": [
+ "principalInvestigator",
+ "about"
+ ],
+ "organization": "CSIRO Oceans and Atmosphere - Hobart",
+ "name": "Lenton, Andrew",
+ "position": "",
+ "emails": [
+ "Andrew.Lenton@csiro.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "GPO Box 1538"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7000",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [],
+ "links": []
+ },
+ {
+ "roles": [
+ "pointOfContact",
+ "about"
+ ],
+ "organization": "Integrated Marine Observing System (IMOS)",
+ "name": "",
+ "position": "Data Officer",
+ "emails": [
+ "info@aodn.org.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "University of Tasmania",
+ "Private Bag 110"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "61 3 6226 7488"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "61 3 6226 2701"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://imos.org.au/aodn.html",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "Website of the Australian Ocean Data Network (AODN)"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "distributor",
+ "metadata"
+ ],
+ "organization": "Integrated Marine Observing System (IMOS)",
+ "name": "",
+ "position": "Data Officer",
+ "emails": [
+ "info@aodn.org.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "University of Tasmania",
+ "Private Bag 110"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "61 3 6226 7488"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "61 3 6226 2701"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://imos.org.au/aodn.html",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "Website of the Australian Ocean Data Network (AODN)"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "principalInvestigator",
+ "citation"
+ ],
+ "organization": "CSIRO Oceans and Atmosphere - Hobart",
+ "name": "Lenton, Andrew",
+ "position": "",
+ "emails": [
+ "Andrew.Lenton@csiro.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "GPO Box 1538"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7000",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [],
+ "links": [
+ {
+ "href": "http://www.csiro.au/en/Research/OandA",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "CSIRO Oceans & Atmosphere website"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "collaborator",
+ "citation"
+ ],
+ "organization": "CSIRO Oceans and Atmosphere - Hobart",
+ "name": "Tilbrook, Bronte",
+ "position": "",
+ "emails": [
+ "Bronte.Tilbrook@csiro.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "GPO Box 1538"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7000",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [],
+ "links": [
+ {
+ "href": "http://www.csiro.au/en/Research/OandA",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "CSIRO Oceans & Atmosphere website"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "collaborator",
+ "citation"
+ ],
+ "organization": "CSIRO Oceans and Atmosphere - Hobart",
+ "name": "Matear, Richard",
+ "position": "",
+ "emails": [
+ "Richard.Matear@csiro.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "GPO Box 1538"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7000",
+ "administrativeArea": "Tasmania"
+ }
+ ],
+ "phones": [],
+ "links": [
+ {
+ "href": "http://www.csiro.au/en/Research/OandA",
+ "type": "WWW:LINK-1.0-http--link",
+ "title": "CSIRO Oceans & Atmosphere website"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "collaborator",
+ "citation"
+ ],
+ "organization": "Climate Change Research Centre (CCRC), The University of New South Wales (UNSW)",
+ "name": "Sasse, Tristan",
+ "position": "",
+ "emails": [
+ "t.sasse@unsw.edu.au"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "Level 4, Mathews Building",
+ "University of New South Wales"
+ ],
+ "city": "Sydney",
+ "country": "Australia",
+ "postalCode": "2052",
+ "administrativeArea": "New South Wales"
+ }
+ ],
+ "phones": [],
+ "links": []
+ },
+ {
+ "roles": [
+ "collaborator",
+ "citation"
+ ],
+ "organization": "National Institute for Environmental Studies (NIES)",
+ "name": "Nojiri, Yukihiro",
+ "position": "",
+ "emails": [
+ "nojiri@nies.go.jp"
+ ],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "16-2 Onogawa"
+ ],
+ "city": "Tsukuba",
+ "country": "Japan",
+ "postalCode": "305-0053",
+ "administrativeArea": "Ibaraki Prefecture"
+ }
+ ],
+ "phones": [],
+ "links": []
+ }
+ ],
+ "languages": [
+ {
+ "code": "eng",
+ "name": "English"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://www.biogeosciences.net/13/1753/2016",
+ "rel": "related",
+ "type": "text/html",
+ "title": "Biogeosciences Journal article"
+ },
+ {
+ "href": "https://portal.aodn.org.au/search?uuid=7709f541-fc0c-4318-b5b9-9053aa474e0e",
+ "rel": "related",
+ "type": "text/html",
+ "title": "View and download data though the AODN Portal"
+ },
+ {
+ "href": "http://thredds.aodn.org.au/thredds/dodsC/CSIRO/Climatology/Ocean_Acidification/OA_Reconstruction.nc.html",
+ "rel": "related",
+ "type": "text/html",
+ "title": "NetCDF files via THREDDS catalog"
+ },
+ {
+ "href": "http://geoserver-123.aodn.org.au/geoserver/ncwms",
+ "rel": "wms",
+ "type": "",
+ "title": "csiro_oa_reconstruction_url/SST"
+ },
+ {
+ "href": "http://geoserver-123.aodn.org.au/geoserver/ncwms",
+ "rel": "wms",
+ "type": "",
+ "title": "csiro_oa_reconstruction_url/SSS"
+ },
+ {
+ "href": "http://geoserver-123.aodn.org.au/geoserver/ncwms",
+ "rel": "wms",
+ "type": "",
+ "title": "csiro_oa_reconstruction_url/ALK"
+ },
+ {
+ "href": "http://geoserver-123.aodn.org.au/geoserver/ncwms",
+ "rel": "wms",
+ "type": "",
+ "title": "csiro_oa_reconstruction_url/DIC"
+ },
+ {
+ "href": "http://geoserver-123.aodn.org.au/geoserver/ncwms",
+ "rel": "wms",
+ "type": "",
+ "title": "csiro_oa_reconstruction_url/OMEGA_A"
+ },
+ {
+ "href": "http://geoserver-123.aodn.org.au/geoserver/ncwms",
+ "rel": "wms",
+ "type": "",
+ "title": "csiro_oa_reconstruction_url/OMEGA_C"
+ },
+ {
+ "href": "http://geoserver-123.aodn.org.au/geoserver/ncwms",
+ "rel": "wms",
+ "type": "",
+ "title": "csiro_oa_reconstruction_url/pH_T"
+ },
+ {
+ "href": "https://processes.aodn.org.au/wps",
+ "rel": "related",
+ "type": "",
+ "title": "csiro_oa_reconstruction_url"
+ },
+ {
+ "href": "https://help.aodn.org.au/web-services/gogoduck-aggregator/",
+ "rel": "related",
+ "type": "text/html",
+ "title": "GoGoDuck help documentation"
+ },
+ {
+ "href": "https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/7709f541-fc0c-4318-b5b9-9053aa474e0e",
+ "rel": "describedby",
+ "type": "text/html",
+ "title": "Full metadata link"
+ },
+ {
+ "href": "https://licensebuttons.net/l/by/4.0/88x31.png",
+ "rel": "license",
+ "type": "image/png"
+ },
+ {
+ "href": "http://creativecommons.org/licenses/by/4.0/",
+ "rel": "license",
+ "type": "text/html"
+ }
+ ],
+ "license": "Creative Commons Attribution 4.0 International License",
+ "providers": [
+ {
+ "name": "Integrated Marine Observing System (IMOS)",
+ "roles": [
+ "distributor"
+ ],
+ "url": "http://imos.org.au/aodn.html"
+ }
+ ],
+ "themes": [
+ {
+ "concepts": [
+ {
+ "id": "Oceans | Ocean Temperature | Sea Surface Temperature"
+ },
+ {
+ "id": "Oceans | Salinity/density | Salinity"
+ },
+ {
+ "id": "Oceans | Ocean Chemistry | Carbon Dioxide"
+ },
+ {
+ "id": "Oceans | Ocean Chemistry | Carbonate"
+ },
+ {
+ "id": "Oceans | Ocean Chemistry | pH"
+ }
+ ],
+ "scheme": "theme",
+ "description": "GCMD",
+ "title": "NASA/Global Change Master Directory Earth Science Keywords Version 5.3.8"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Ocean Biogeochemistry"
+ },
+ {
+ "id": "pCO2"
+ }
+ ],
+ "scheme": "theme",
+ "description": "IMOS",
+ "title": "IMOS Keywords Thesaurus"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Global / Oceans | Pacific Ocean"
+ },
+ {
+ "id": "Global / Oceans | Southern Ocean"
+ },
+ {
+ "id": "Global / Oceans | Indian Ocean"
+ },
+ {
+ "id": "Marine Features (Australia) | Great Australian Bight, SA/WA"
+ },
+ {
+ "id": "Marine Features (Australia) | Bass Strait, TAS/VIC"
+ },
+ {
+ "id": "Regional Seas | Coral Sea"
+ },
+ {
+ "id": "Regional Seas | Tasman Sea"
+ },
+ {
+ "id": "Regional Seas | Timor Sea"
+ },
+ {
+ "id": "Regional Seas | Arafura Sea"
+ },
+ {
+ "id": "Regional Seas | Banda Sea"
+ },
+ {
+ "id": "Regional Seas | Java Sea"
+ },
+ {
+ "id": "Regional Seas | Solomon Sea"
+ }
+ ],
+ "scheme": "place",
+ "description": "",
+ "title": "AODN Geographic Extents Vocabulary"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Countries | Australia"
+ },
+ {
+ "id": "Countries | Papua New Guinea"
+ },
+ {
+ "id": "Countries | Indonesia"
+ },
+ {
+ "id": "Countries | Timor-Leste"
+ },
+ {
+ "id": "Countries | New Zealand"
+ },
+ {
+ "id": "States, Territories (Australia) | Western Australia"
+ },
+ {
+ "id": "States, Territories (Australia) | Queensland"
+ },
+ {
+ "id": "States, Territories (Australia) | South Australia"
+ },
+ {
+ "id": "States, Territories (Australia) | Tasmania"
+ },
+ {
+ "id": "States, Territories (Australia) | Victoria"
+ },
+ {
+ "id": "States, Territories (Australia) | New South Wales"
+ },
+ {
+ "id": "States, Territories (Australia) | Northern Territory"
+ }
+ ],
+ "scheme": "place",
+ "description": "",
+ "title": "AODN Geographic Extents Vocabulary"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Temperature of the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/TEMPPR01"
+ },
+ {
+ "id": "Practical salinity of the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/PSLTZZ01"
+ },
+ {
+ "id": "Concentration of carbon (total inorganic) per unit mass of the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/1"
+ },
+ {
+ "id": "Total alkalinity per unit mass of the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/MDMAP014"
+ },
+ {
+ "id": "Saturation state of aragonite in the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/24"
+ },
+ {
+ "id": "Saturation state of calcite in the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/25"
+ },
+ {
+ "id": "pH (total scale) of the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/27"
+ }
+ ],
+ "scheme": "theme",
+ "description": "",
+ "title": "AODN Discovery Parameter Vocabulary"
+ }
+ ],
+ "id": "7709f541-fc0c-4318-b5b9-9053aa474e0e",
+ "search_suggestions": {
+ "abstract_phrases": [
+ "dataset contains",
+ "calcite",
+ "resolution",
+ "carbon dic",
+ "sea surface",
+ "alkalinity alk sea",
+ "monthly mean",
+ "aragonite calcite",
+ "carbon",
+ "degree resolution over",
+ "monthly mean aragonite calcite",
+ "dissolved",
+ "total alkalinity alk sea",
+ "total alkalinity alk",
+ "inorganic carbon",
+ "sea surface temperature",
+ "alk",
+ "period",
+ "reconstructed time",
+ "surface",
+ "aragonite",
+ "degree",
+ "time series",
+ "inorganic carbon dic total",
+ "dissolved inorganic",
+ "alkalinity",
+ "inorganic",
+ "dic total alkalinity alk",
+ "contains",
+ "ph together",
+ "alk sea",
+ "monthly",
+ "region",
+ "dissolved inorganic carbon dic",
+ "dic total alkalinity",
+ "mean aragonite calcite",
+ "alk sea surface temperature",
+ "monthly mean aragonite",
+ "australian",
+ "resolution over",
+ "distribution",
+ "sea",
+ "carbon dic total alkalinity",
+ "total",
+ "temperature",
+ "alk sea surface",
+ "together",
+ "alkalinity alk",
+ "dissolved inorganic carbon",
+ "over",
+ "salinity",
+ "reconstructed",
+ "alkalinity alk sea surface",
+ "total alkalinity",
+ "inorganic carbon dic",
+ "carbon dic total",
+ "reconstructed time series",
+ "mean aragonite",
+ "degree resolution",
+ "dic total",
+ "surface temperature",
+ "series",
+ "mean",
+ "ph",
+ "time",
+ "dataset",
+ "dic",
+ "australian region"
+ ],
+ "parameter_vocabs_sayt": [
+ "ph (total scale) of the water body",
+ "alkalinity",
+ "carbon",
+ "temperature",
+ "salinity"
+ ]
},
- "sci:citation" : "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"The citation in a list of references is: citation name/s (year metadata published), metadata title. File identifier and Data accessed at (add http link).\"]}",
- "type" : "Collection",
- "stac_version" : "1.0.0",
- "stac_extensions" : [ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", "https://stac-extensions.github.io/contacts/v0.1.1/schema.json", "https://stac-extensions.github.io/projection/v1.1.0/schema.json", "https://stac-extensions.github.io/language/v1.0.0/schema.json", "https://stac-extensions.github.io/themes/v1.0.0/schema.json", "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" ]
+ "sci:citation": "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"The citation in a list of references is: citation name/s (year metadata published), metadata title. File identifier and Data accessed at (add http link).\"]}",
+ "type": "Collection",
+ "stac_version": "1.0.0",
+ "stac_extensions": [
+ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/contacts/v0.1.1/schema.json",
+ "https://stac-extensions.github.io/projection/v1.1.0/schema.json",
+ "https://stac-extensions.github.io/language/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/themes/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
+ ]
}
diff --git a/indexer/src/test/resources/canned/sample5_stac.json b/indexer/src/test/resources/canned/sample5_stac.json
index d6d12274..c92f8e0a 100644
--- a/indexer/src/test/resources/canned/sample5_stac.json
+++ b/indexer/src/test/resources/canned/sample5_stac.json
@@ -28,7 +28,8 @@
"temporal" : [ {
"start" : "2010-01-21T01:00:00Z",
"end" : "2017-03-27T12:59:59Z"
- } ]
+ } ],
+ "centroid" : [ [ 139.377, -38.308 ] ]
},
"contacts" : [ {
"roles" : [ "pointOfContact", "about" ],
diff --git a/indexer/src/test/resources/canned/sample6_stac.json b/indexer/src/test/resources/canned/sample6_stac.json
index e82b6cc0..f2bd01b2 100644
--- a/indexer/src/test/resources/canned/sample6_stac.json
+++ b/indexer/src/test/resources/canned/sample6_stac.json
@@ -1,548 +1,1865 @@
{
- "title" : "RV Investigator Voyage IN2024_V01 End of Voyage (EOV) Archive",
- "description" : "This record describes the End of Voyage (EOV) data archive from the Marine National Facility (MNF) RV Investigator voyage IN2024_V01, titled \"Multidisciplinary Investigations of the Southern Ocean (MISO): linking physics, biogeochemistry, plankton, aerosols, clouds, and climate.\" The voyage took place between January 02, 2024 and March 05, 2024 (AEST), departing from Hobart and returning to Fremantle.\n\n For further information please refer to the voyage documentation links.\n\n Instruments used and data collected include:\n Regular measurements:\n Lowered ADCP (LADCP), Acoustic Doppler Current Profiler (ADCP; 75, 150 KHz ), Greenhouse Gas Analysers (Picarro), Cloud Condensation Nuclei counter (CCN), Condensation Particle Counters (CPC), Disdrometer, Radon sensor, Scanning Mobility Particle Sizers (SMPS), CTD, Hydrochemistry, Triaxus, Fisheries Echosounder (EK80), Multibeam Echosounder (EM710, EM122), Sub-bottom Profiler (SBP120), GPS Positioning System, Doppler Velocity Log, Thermosalinographs (TSG), Fluorometer, Oxygen Optode, pCO2, Multiangle Absorption Photometer (MAAP), Ozone Sensor, Nephelometer, Atmospheric Temperature, Humidity, Pressure, Wind and Rain sensors, Photosynthetically Active Radiation (PAR) sensor, Precision Infrared Radiometer (PIR), Precision Spectral Pyranometer (PSP), Starboard and Portside Radiometers, Air Sampler, Ultra Short BaseLine Underwater Positioning System (USBL), Weather Radar, Expendable Bathythermographs (XBTs).\n\n Voyage-specific measurements:\n Black Carbon sensor (Aethalometer), Mobility particle size spectrometer (MPSS), Bongo Net, Chemical Ionisation Mass Spectrometer (CIMS), Cloud Radar (BASTA), Fast Repetition Rate Chlorophyll-a Fluorometer (FRRf), Mini Micro-Pulse LIDAR (miniMPL), Micro Rain Radar (MRR), Neutral Cluster Air Ion Spectrometer (NAIS), Proton-Transfer-Reaction Mass Spectrometry (PTR-MS), Radiosondes, Cloud and Aerosol Backscatter Lidar (RMAN), Stabilised Platform, Mercury Analyser (Tekran), Time of Flight Aerosol Chemical Speciation Monitor (ToF-ACSM), Water Vapor Radiometer (WVR), Aerosol mass spectrometer (AMS), Core Argo floats, Biogeochemical (BGC) Argo floats, Near-surface Drifters, In situ pumps (ISPs), Ice Nucleating Particles (INPs), Ozone Sensor, Trace Metal Aerosol Sampling, Trace Metal CTD Rosette and Bottles, Organic Sulfur Sequential Chemical Analysis Robot (OSSCAR), Omics data and various biological data.\n\n The archive for the IN2024_V01 EOV raw data is curated by the CSIRO National Collections and Marine Infrastructure (NCMI) Information and Data Centre (IDC) in Hobart, with a permanent archive at the CSIRO Data Access Portal (https://data.csiro.au/), providing access to voyage participants and processors of the data collected on the voyage.\n\n All voyage documentation is available electronically to MNF support via the local network. Applications to access voyage documentation by non-CSIRO participants can be made via data-requests-hf@csiro.au.\n\n All processed data from this voyage are made publicly available through the MNF Data Trawler (in the related links).",
- "extent" : {
- "bbox" : [ [ 113.2462, -67.0026, 151.4171, -31.9323 ], [ 113.2462, -67.0026, 151.4171, -31.9323 ] ],
- "temporal" : [ [ "2024-01-01T13:00:00Z", "2024-03-05T12:59:59Z" ], [ "2024-01-01T13:00:00Z", "2024-03-05T12:59:59Z" ] ]
+ "title": "RV Investigator Voyage IN2024_V01 End of Voyage (EOV) Archive",
+ "description": "This record describes the End of Voyage (EOV) data archive from the Marine National Facility (MNF) RV Investigator voyage IN2024_V01, titled \"Multidisciplinary Investigations of the Southern Ocean (MISO): linking physics, biogeochemistry, plankton, aerosols, clouds, and climate.\" The voyage took place between January 02, 2024 and March 05, 2024 (AEST), departing from Hobart and returning to Fremantle.\n\n For further information please refer to the voyage documentation links.\n\n Instruments used and data collected include:\n Regular measurements:\n Lowered ADCP (LADCP), Acoustic Doppler Current Profiler (ADCP; 75, 150 KHz ), Greenhouse Gas Analysers (Picarro), Cloud Condensation Nuclei counter (CCN), Condensation Particle Counters (CPC), Disdrometer, Radon sensor, Scanning Mobility Particle Sizers (SMPS), CTD, Hydrochemistry, Triaxus, Fisheries Echosounder (EK80), Multibeam Echosounder (EM710, EM122), Sub-bottom Profiler (SBP120), GPS Positioning System, Doppler Velocity Log, Thermosalinographs (TSG), Fluorometer, Oxygen Optode, pCO2, Multiangle Absorption Photometer (MAAP), Ozone Sensor, Nephelometer, Atmospheric Temperature, Humidity, Pressure, Wind and Rain sensors, Photosynthetically Active Radiation (PAR) sensor, Precision Infrared Radiometer (PIR), Precision Spectral Pyranometer (PSP), Starboard and Portside Radiometers, Air Sampler, Ultra Short BaseLine Underwater Positioning System (USBL), Weather Radar, Expendable Bathythermographs (XBTs).\n\n Voyage-specific measurements:\n Black Carbon sensor (Aethalometer), Mobility particle size spectrometer (MPSS), Bongo Net, Chemical Ionisation Mass Spectrometer (CIMS), Cloud Radar (BASTA), Fast Repetition Rate Chlorophyll-a Fluorometer (FRRf), Mini Micro-Pulse LIDAR (miniMPL), Micro Rain Radar (MRR), Neutral Cluster Air Ion Spectrometer (NAIS), Proton-Transfer-Reaction Mass Spectrometry (PTR-MS), Radiosondes, Cloud and Aerosol Backscatter Lidar (RMAN), Stabilised Platform, Mercury Analyser (Tekran), Time of Flight Aerosol Chemical Speciation Monitor (ToF-ACSM), Water Vapor Radiometer (WVR), Aerosol mass spectrometer (AMS), Core Argo floats, Biogeochemical (BGC) Argo floats, Near-surface Drifters, In situ pumps (ISPs), Ice Nucleating Particles (INPs), Ozone Sensor, Trace Metal Aerosol Sampling, Trace Metal CTD Rosette and Bottles, Organic Sulfur Sequential Chemical Analysis Robot (OSSCAR), Omics data and various biological data.\n\n The archive for the IN2024_V01 EOV raw data is curated by the CSIRO National Collections and Marine Infrastructure (NCMI) Information and Data Centre (IDC) in Hobart, with a permanent archive at the CSIRO Data Access Portal (https://data.csiro.au/), providing access to voyage participants and processors of the data collected on the voyage.\n\n All voyage documentation is available electronically to MNF support via the local network. Applications to access voyage documentation by non-CSIRO participants can be made via data-requests-hf@csiro.au.\n\n All processed data from this voyage are made publicly available through the MNF Data Trawler (in the related links).",
+ "extent": {
+ "bbox": [
+ [
+ 113.2462,
+ -67.0026,
+ 151.4171,
+ -31.9323
+ ],
+ [
+ 113.2462,
+ -67.0026,
+ 151.4171,
+ -31.9323
+ ]
+ ],
+ "temporal": [
+ [
+ "2024-01-01T13:00:00Z",
+ "2024-03-05T12:59:59Z"
+ ],
+ [
+ "2024-01-01T13:00:00Z",
+ "2024-03-05T12:59:59Z"
+ ]
+ ]
},
- "summaries" : {
- "score" : 107,
- "status" : "completed",
- "credits" : [ "Data collected on the Marine National Facility (MNF) RV Investigator voyage IN2024_V01.", "The MNF must be acknowledged in all outputs derived from Data and/or Samples collected by, or with support from, the MNF. Acknowledge the MNF in outputs with the statement:\n\n “We acknowledge the use of the CSIRO Marine National Facility (https://ror.org/01mae9353 ) in undertaking this research.”\n\n Acknowledgment and citations should be in all forms of publication including presentations (where the acknowledgement should be on the closing slide), journals, books, reports and related research outputs." ],
- "scope" : {
- "code" : "dataset",
- "name" : ""
+ "summaries": {
+ "score": 107,
+ "status": "completed",
+ "credits": [
+ "Data collected on the Marine National Facility (MNF) RV Investigator voyage IN2024_V01.",
+ "The MNF must be acknowledged in all outputs derived from Data and/or Samples collected by, or with support from, the MNF. Acknowledge the MNF in outputs with the statement:\n\n “We acknowledge the use of the CSIRO Marine National Facility (https://ror.org/01mae9353 ) in undertaking this research.”\n\n Acknowledgment and citations should be in all forms of publication including presentations (where the acknowledgement should be on the closing slide), journals, books, reports and related research outputs."
+ ],
+ "scope": {
+ "code": "dataset",
+ "name": ""
},
- "statement" : "Original field data. The raw EOV data archive was transferred to the CSIRO NCMI Information and Data Centre in Hobart.\n\n A manifest file for the final archive was generated (IN2024_V01_manifest_1.0_rawVoyage_cs.txt, 26/03/2024). Stored Volume: 5,797 folders, 300,137 files, 4,831,910,814,429 bytes.\n\n Available paper documents are scanned to 400 dpi PDF and stored at the IDC record storage system. ELOG files are generated as csv-formatted files and archived.",
- "creation" : "2024-03-28T05:59:17",
- "revision" : "2024-05-20T00:55:10",
- "dataset_group" : "sample",
- "update_frequency" : "completed",
- "proj:geometry" : {
- "geometries" : [ {
- "type" : "Polygon",
- "coordinates" : [ [ [ 113.2462, -67.0026 ], [ 151.4171, -67.0026 ], [ 151.4171, -31.9323 ], [ 113.2462, -31.9323 ], [ 113.2462, -67.0026 ] ] ]
- } ],
- "type" : "GeometryCollection"
+ "statement": "Original field data. The raw EOV data archive was transferred to the CSIRO NCMI Information and Data Centre in Hobart.\n\n A manifest file for the final archive was generated (IN2024_V01_manifest_1.0_rawVoyage_cs.txt, 26/03/2024). Stored Volume: 5,797 folders, 300,137 files, 4,831,910,814,429 bytes.\n\n Available paper documents are scanned to 400 dpi PDF and stored at the IDC record storage system. ELOG files are generated as csv-formatted files and archived.",
+ "creation": "2024-03-28T05:59:17",
+ "revision": "2024-05-20T00:55:10",
+ "dataset_group": "sample",
+ "update_frequency": "completed",
+ "proj:geometry": {
+ "geometries": [
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.2462,
+ -67.0026
+ ],
+ [
+ 151.4171,
+ -67.0026
+ ],
+ [
+ 151.4171,
+ -31.9323
+ ],
+ [
+ 113.2462,
+ -31.9323
+ ],
+ [
+ 113.2462,
+ -67.0026
+ ]
+ ]
+ ]
+ }
+ ],
+ "type": "GeometryCollection"
},
- "temporal" : [ {
- "start" : "2024-01-01T13:00:00Z",
- "end" : "2024-03-05T12:59:59Z"
- } ],
- "parameter_vocabs" : [ "salinity", "nutrient", "chlorophyll", "air temperature", "precipitation and evaporation", "wave", "air-sea fluxes", "current", "chemical", "air pressure", "carbon", "physical-atmosphere", "bathymetry", "temperature", "wind", "ocean biota", "density", "water pressure" ],
- "platform_vocabs" : [ "research vessel" ]
+ "temporal": [
+ {
+ "start": "2024-01-01T13:00:00Z",
+ "end": "2024-03-05T12:59:59Z"
+ }
+ ],
+ "parameter_vocabs": [
+ "salinity",
+ "nutrient",
+ "chlorophyll",
+ "air temperature",
+ "precipitation and evaporation",
+ "wave",
+ "air-sea fluxes",
+ "current",
+ "chemical",
+ "air pressure",
+ "carbon",
+ "physical-atmosphere",
+ "bathymetry",
+ "temperature",
+ "wind",
+ "ocean biota",
+ "density",
+ "water pressure"
+ ],
+ "platform_vocabs": [
+ "research vessel"
+ ],
+ "centroid": [
+ [
+ 118.307,
+ -61.905
+ ],
+ [
+ 118.246,
+ -52.003
+ ],
+ [
+ 118.246,
+ -42.003
+ ],
+ [
+ 117.809,
+ -35.215
+ ],
+ [
+ 128.198,
+ -61.785
+ ],
+ [
+ 128.246,
+ -52.003
+ ],
+ [
+ 128.246,
+ -42.003
+ ],
+ [
+ 128.511,
+ -34.628
+ ],
+ [
+ 138.322,
+ -61.772
+ ],
+ [
+ 138.246,
+ -52.003
+ ],
+ [
+ 138.095,
+ -42.189
+ ],
+ [
+ 135.86,
+ -35.307
+ ],
+ [
+ 147.335,
+ -61.998
+ ],
+ [
+ 147.332,
+ -52.003
+ ],
+ [
+ 149.863,
+ -42.004
+ ],
+ [
+ 150.874,
+ -35.804
+ ]
+ ]
},
- "contacts" : [ {
- "roles" : [ "custodian", "about" ],
- "organization" : "CSIRO Oceans & Atmosphere - Hobart",
- "name" : "data-requests-hf@csiro.au,",
- "position" : "Data Requests - Information & Data Centre",
- "emails" : [ ],
- "addresses" : [ {
- "deliveryPoint" : [ "GPO Box 1538" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "TAS"
- }, {
- "deliveryPoint" : [ "Castray Esplanade" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7000",
- "administrativeArea" : "TAS"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "+61 3 6232 5222"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "+61 3 6232 5000"
- } ],
- "links" : [ {
- "href" : "http://www.csiro.au/en/Research/OandA",
- "type" : "WWW:LINK-1.0-http--link"
- } ]
- }, {
- "roles" : [ "processor", "metadata" ],
- "organization" : "CSIRO/Oceans and Atmosphere",
- "name" : "Data Officer (AR), Hobart",
- "position" : "",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- }, {
- "roles" : [ "pointOfContact", "metadata" ],
- "organization" : "CSIRO Oceans & Atmosphere - Hobart",
- "name" : "CSIRO O&A, Information & Data Centre",
- "position" : "Data Requests",
- "emails" : [ ],
- "addresses" : [ {
- "deliveryPoint" : [ "GPO Box 1538" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "TAS"
- }, {
- "deliveryPoint" : [ "Castray Esplanade" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7000",
- "administrativeArea" : "TAS"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "+61 3 6232 5222"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "+61 3 6232 5000"
- } ],
- "links" : [ {
- "href" : "http://www.csiro.au/en/Research/OandA",
- "type" : "WWW:LINK-1.0-http--link"
- } ]
- }, {
- "roles" : [ "originator", "metadata" ],
- "organization" : "CSIRO",
- "name" : "Roubicek, Andres",
- "position" : "",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- } ],
- "languages" : [ {
- "code" : "eng",
- "name" : "English"
- } ],
- "links" : [ {
- "href" : "https://www.marine.csiro.au/data/trawler/survey_details.cfm?survey=IN2024_V01",
- "rel" : "related",
- "type" : "",
- "title" : "MNF Data Trawler"
- }, {
- "href" : "https://mnf.csiro.au/",
- "rel" : "related",
- "type" : "text/html",
- "title" : "Marine National Facility"
- }, {
- "href" : "https://doi.org/10.25919/rdrt-bd71",
- "rel" : "related",
- "type" : "",
- "title" : "Data Access Portal (DOI)"
- }, {
- "href" : "http://www.marine.csiro.au/data/underway/?survey=IN2024_V01",
- "rel" : "related",
- "type" : "",
- "title" : "Underway Visualisation Tool"
- }, {
- "href" : "https://www.marine.csiro.au/data/trawler/survey_mapfile.cfm?survey=IN2024_V01&data_type=uwy",
- "rel" : "preview",
- "type" : "image"
- }, {
- "href" : "http://140.79.20.100:8080/geonetwork/srv/eng/catalog.search#/metadata/ff887cf9-18bb-464e-8bad-5dc6e0ad946b",
- "rel" : "describedby",
- "type" : "text/html",
- "title" : "Full metadata link"
- }, {
- "href" : "https://i.creativecommons.org/l/by/4.0/88x31.png",
- "rel" : "license",
- "type" : "image/png"
- }, {
- "href" : "https://creativecommons.org/licenses/by/4.0/",
- "rel" : "license",
- "type" : "text/html"
- } ],
- "license" : "Attribution 4.0",
- "providers" : [ {
- "name" : "CSIRO/Oceans and Atmosphere",
- "roles" : [ "processor" ]
- }, {
- "name" : "CSIRO Oceans & Atmosphere - Hobart",
- "roles" : [ "pointOfContact" ]
- }, {
- "name" : "CSIRO",
- "roles" : [ "originator" ]
- } ],
- "themes" : [ {
- "concepts" : [ {
- "id" : "Earth Science | Atmosphere | Aerosols",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/2e5a401b-1507-4f57-82b8-36557c13b154"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Pressure | Surface Pressure",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b54de5cd-4475-4c7b-acbc-4eb529b9396e"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Radiation",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/4ad0c52d-6449-48ff-8678-adc6b2cebcb7"
- }, {
- "id" : "Earth Science | Atmosphere | Aerosols | Cloud Condensation Nuclei",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/27478148-b4b6-4c89-8829-08d2ee7bfe10"
- }, {
- "id" : "Earth Science | Atmosphere | Precipitation | Rain",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/09a57dc7-3911-4a65-9f12-b819652b8671"
- }, {
- "id" : "Earth Science | Oceans | Ocean Chemistry | Carbon Dioxide",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/26afa886-4866-4536-be3a-6f9db9aacd97"
- }, {
- "id" : "Earth Science | Atmosphere | Aerosols | Particulate Matter",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/548a3f85-bf22-473b-b641-45c32d9c6a0c"
- }, {
- "id" : "Earth Science | Atmosphere | Clouds",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/162e2243-3266-4999-b352-d8a1a9dc82ac"
- }, {
- "id" : "Earth Science | Oceans | Salinity/Density | Salinity",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/7e95b5fc-1d58-431a-af36-948b29fa870d"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Chemistry | Carbon And Hydrocarbon Compounds | Carbon Dioxide",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/c3b81888-8a39-4b3f-8033-4c077797bcba"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Pressure | Atmospheric Pressure Measurements",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/9efbc088-ba8c-4c9c-a458-ad6ad63f4188"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/10685919-bc01-43e7-901a-b62ac44627f3"
- }, {
- "id" : "Earth Science | Oceans | Ocean Temperature | Sea Surface Temperature",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/bd24a9a9-7d52-4c29-b2a0-6cefd216ae78"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds | Wind Speed/Wind Direction",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a92f49f3-e2ee-4ef4-b064-39311ffb95d3"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Chemistry | Trace Elements/Trace Metals",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/2d36c283-2fe3-4a08-aeb3-6a8146e79bb3"
- }, {
- "id" : "Earth Science | Oceans | Aquatic Sciences | Fisheries",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/fa57b0a0-9723-4195-bdd1-4f26aefa0e07"
- }, {
- "id" : "Earth Science | Atmosphere | Aerosols | Aerosol Particle Properties",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/02ea239e-4bca-4fda-ab87-be12c723c30a"
- }, {
- "id" : "Earth Science | Oceans | Ocean Circulation | Ocean Currents",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/510c5f78-e19e-4ce4-b59a-8937aeb84631"
- }, {
- "id" : "Earth Science | Oceans | Ocean Chemistry | Oxygen",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/90aa8838-79bd-4b28-b518-8217e863c385"
- }, {
- "id" : "Earth Science | Oceans | Ocean Chemistry | Nutrients",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/8dd7c9f0-51d0-4037-b1d0-a2517c1770ad"
- }, {
- "id" : "Earth Science | Oceans | Ocean Waves | Sea State",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/11aca777-8a01-42ce-b076-b3059c3d8cae"
- }, {
- "id" : "Earth Science | Oceans | Ocean Chemistry | Chlorophyll",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/7989eae1-8ea3-4039-af0c-9130de145449"
- }, {
- "id" : "Earth Science Services | Data Analysis And Visualization | Global Positioning Systems",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/f082ad51-4ce4-4ffe-be50-6753c4f997ae"
- }, {
- "id" : "Earth Science | Oceans | Ocean Chemistry | Trace Elements",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/6c320188-da7b-4d52-8e99-57d7ac401841"
- }, {
- "id" : "Earth Science | Oceans | Ocean Optics | Photosynthetically Active Radiation",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b7410899-350a-4443-9430-c7fe1fa3a499"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Chemistry | Oxygen Compounds | Ozone",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/dd316647-9043-40c3-9329-f22f9215fefa"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Radiation | Solar Radiation",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a0f3474e-9a54-4a82-97c4-43864b48df4c"
- }, {
- "id" : "Earth Science | Oceans | Bathymetry/Seafloor Topography | Seafloor Topography",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b6b51058-1111-4498-a9ac-e1515270fb27"
- } ],
- "scheme" : "theme",
- "description" : "",
- "title" : "GCMD Keywords"
- }, {
- "concepts" : [ {
- "id" : "Research Voyage: IN2024_V01",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.survey.urn:marlin.csiro.au:surveyregister&id=urn:marlin.csiro.au:surveyregister:concept:2315"
- } ],
- "scheme" : "survey",
- "description" : "",
- "title" : "CSIRO Survey List"
- }, {
- "concepts" : [ {
- "id" : "Ship: Investigator (RV)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.dataSource.urn:marlin.csiro.au:sourceregister&id=urn:marlin.csiro.au:sourceregister:concept:309"
- } ],
- "scheme" : "dataSource",
- "description" : "",
- "title" : "CSIRO Source List"
- }, {
- "concepts" : [ {
- "id" : "Multidisciplinary Investigations of the Southern Ocean (MISO): linking physics, biogeochemistry, plankton, aerosols, clouds, and climate",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.project.urn:marlin.csiro.au:projectregister&id=urn:marlin.csiro.au:projectregister:concept:2609"
- } ],
- "scheme" : "project",
- "description" : "",
- "title" : "CSIRO Project List"
- }, {
- "concepts" : [ {
- "id" : "Marine Planning Regions (Australia) | Australian Antarctic",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:50"
- }, {
- "id" : "Global / Oceans | East Indian Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1020"
- }, {
- "id" : "Coastal Waters (Australia) | Tasmania Coast, TAS",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1010"
- }, {
- "id" : "Coastal Waters (Australia) | West Australia Coast South, WA",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1017"
- }, {
- "id" : "Marine Features (Australia) | Derwent Estuary, TAS",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:69"
- }, {
- "id" : "Global / Oceans | Southern Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:6"
- } ],
- "scheme" : "place",
- "description" : "",
- "title" : "AODN Geographic Extent Names"
- }, {
- "concepts" : [ {
- "id" : "Vessel Data: Dissolved Oxygen",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3512"
- }, {
- "id" : "Vessel/Station Data: Hydrology",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3513"
- }, {
- "id" : "Vessel Data: undulating CTD",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3522"
- }, {
- "id" : "Vessel Data: Multibeam Echosounder",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3521"
- }, {
- "id" : "Vessel Data: Acoustics (Fisheries)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3520"
- }, {
- "id" : "Vessel Data: CTD",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3511"
- }, {
- "id" : "Vessel Data: Underway",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3514"
- }, {
- "id" : "Vessel Data: ADCP",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3510"
- }, {
- "id" : "Vessel Data: XBT",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3515"
- } ],
- "scheme" : "discipline",
- "description" : "",
- "title" : "CSIRO Standard Data Types"
- }, {
- "concepts" : [ {
- "id" : "Radon Detector",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:172"
- }, {
- "id" : "CTDs (Conductivity-Temperature-Depth Profilers)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:33"
- }, {
- "id" : "CO2 Analysers",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:17"
- }, {
- "id" : "Fluorometers",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:47"
- }, {
- "id" : "GPS (Global Positioning System)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:167"
- }, {
- "id" : "LADCP (Lowered Acoustic Doppler Current Profiler)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:139"
- }, {
- "id" : "ADCP (Acoustic Doppler Current Profiler)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:2"
- }, {
- "id" : "Greenhouse gas analyser - Aerodyne",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:176"
- }, {
- "id" : "CPC (Condensation Particle Counters)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:126"
- }, {
- "id" : "Disdrometer (Rain Droplet Particle Sizer)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:160"
- }, {
- "id" : "XBTs (Expendable Bathythermographs)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:21"
- }, {
- "id" : "SMPS (Scanning Mobility Particle Sizers)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:128"
- }, {
- "id" : "Undulating CTD - Triaxus",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:174"
- }, {
- "id" : "Multibeam Echosounder - EM710",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:142"
- }, {
- "id" : "Multibeam Echosounder - EM122",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:144"
- }, {
- "id" : "Air sampling systems",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:179"
- }, {
- "id" : "Sub-bottom Profiler - SBP120",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:164"
- }, {
- "id" : "CCN (Cloud Condensation Nuclei Counter)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:127"
- }, {
- "id" : "Meteorological Instruments",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:61"
- }, {
- "id" : "Radiometer",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:171"
- }, {
- "id" : "MAAP (Multiangle Absorption Photometer)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:180"
- }, {
- "id" : "SUNA (Submersible Ultraviolet Nitrate Analyser)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:135"
- }, {
- "id" : "Thermosalinographs",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:101"
- }, {
- "id" : "Ozone monitor",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:178"
- }, {
- "id" : "Gas Chromatographs",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:48"
- }, {
- "id" : "Greenhouse gas analyser - Picarro",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:177"
- }, {
- "id" : "Fisheries echosounder - EK80",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:196"
- }, {
- "id" : "Weather Radars",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:162"
- }, {
- "id" : "Nephelometers",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:125"
- }, {
- "id" : "Profiling Float - Argo",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:150"
- }, {
- "id" : "Cloud Radars",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:161"
- }, {
- "id" : "Plankton Nets/Drop Nets",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:75"
- }, {
- "id" : "Cloud lidar",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:200"
- }, {
- "id" : "SVP (Surface Velocity Program) Drifters",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:163"
- } ],
- "scheme" : "equipment",
- "description" : "",
- "title" : "CSIRO Equipment"
- }, {
- "concepts" : [ {
- "id" : "Marine National Facility",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:cmarAOI&id=urn:marlin.csiro.au:keywords:cmarAOI:concept:3208"
- } ],
- "scheme" : "discipline",
- "description" : "",
- "title" : "CSIRO Areas Of Interest"
- }, {
- "concepts" : [ {
- "id" : "Practical salinity of the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/PSLTZZ01"
- }, {
- "id" : "Temperature of the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/TEMPPR01"
- }, {
- "id" : "Pressure (measured variable) in the water body exerted by overlying sea water and any medium above it",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/565"
- }, {
- "id" : "Pressure (measured variable) in the water body exerted by overlying sea water only",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/566"
- }, {
- "id" : "Current direction in the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/LCDAZZ01"
- }, {
- "id" : "Current speed in the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/383"
- }, {
- "id" : "Eastward current velocity in the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/LCEWZZ01"
- }, {
- "id" : "Northward current velocity in the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/LCNSZZ01"
- }, {
- "id" : "Upward current velocity in the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/LRZAZZZZ"
- }, {
- "id" : "Sea-floor depth below surface of the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/574"
- }, {
- "id" : "Sea-floor surface hardness",
- "url" : "N/A"
- }, {
- "id" : "Density of the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/401"
- }, {
- "id" : "Sub-bottom structure",
- "url" : "N/A"
- }, {
- "id" : "Abundance of biota",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/488"
- }, {
- "id" : "Biovolume",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/22"
- } ],
- "scheme" : "",
- "description" : "",
- "title" : ""
- }, {
- "concepts" : [ {
- "id" : "research vessel",
- "url" : "http://vocab.nerc.ac.uk/collection/L06/current/31"
- } ],
- "scheme" : "",
- "description" : "",
- "title" : ""
- }, {
- "concepts" : [ {
- "id" : "CTD",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/130"
- }, {
- "id" : "lowered current profilers",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/116/"
- }, {
- "id" : "current profilers",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/115"
- }, {
- "id" : "bathythermographs",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/132"
- }, {
- "id" : "multi-beam echosounders",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/157"
- }, {
- "id" : "2000 Hz top-bandwidth sub-bottom penetrator and mud profiler systems",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/367/"
- }, {
- "id" : "thermosalinographs",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/133"
- }, {
- "id" : "Fish-finder echosounders",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/FFES"
- } ],
- "scheme" : "",
- "description" : "",
- "title" : ""
- } ],
- "id" : "e18eee85-c6c4-4be2-ac8c-930991cf2534",
- "search_suggestions" : {
- "abstract_phrases" : [ "minimpl", "platform mercury analyser", "sensor scanning mobility", "ion", "robot osscar", "nucleating", "ccn", "aerosol chemical speciation", "via", "carbon sensor aethalometer mobility", "basta", "infrared radiometer pir", "electronically", "sulfur", "biogeochemistry plankton aerosols clouds", "eov raw data", "specific measurements", "spectrometer mpss bongo net", "near", "marine infrastructure ncmi", "csiro data access", "disdrometer radon sensor", "chemical analysis robot", "ladcp", "counters", "publicly available", "multiangle absorption photometer maap", "hydrochemistry triaxus fisheries echosounder", "neutral", "raw", "analysis", "tekran time", "frrf", "mnf support via", "available electronically", "expendable", "size", "near surface", "mnf rv investigator", "sequential chemical", "sizers", "wind", "southern", "biogeochemistry plankton aerosols", "flight", "centre idc", "rosette", "providing", "fremantle", "cluster air ion spectrometer", "condensation nuclei", "smps ctd hydrochemistry", "sensor precision infrared", "radar basta fast repetition", "flight aerosol", "aest departing from", "smps ctd hydrochemistry triaxus", "mass spectrometry ptr ms", "particle", "nais proton", "access voyage documentation", "csiro", "mnf support", "place between", "various biological", "frrf mini", "basta fast", "archive from", "aethalometer mobility particle", "sulfur sequential chemical analysis", "black carbon sensor", "velocity log", "fast", "transfer reaction", "analyser tekran", "biogeochemical bgc", "information", "voyage took place between", "disdrometer radon sensor scanning", "voyage participants", "aerosol mass spectrometer ams", "place between january", "pyranometer psp", "photometer maap ozone sensor", "radar basta", "repetition", "pir precision", "data archive", "isps", "profiler adcp", "par", "cims", "lidar minimpl micro rain", "radiometers air sampler", "air ion spectrometer nais", "gps", "bottles organic", "gas analysers picarro cloud", "analyser", "bottles organic sulfur sequential", "data collected", "lowered adcp ladcp", "flight aerosol chemical speciation", "counter ccn condensation", "aerosols clouds", "usbl weather radar expendable", "eov data", "biogeochemistry plankton", "precision infrared radiometer", "specific measurements black carbon", "acsm water vapor", "isps ice", "multiangle absorption photometer", "sensor scanning", "end", "particle sizers smps", "system doppler velocity log", "smps ctd", "made via", "underwater positioning system usbl", "tsg fluorometer oxygen optode", "nuclei counter ccn condensation", "spectrometer ams core argo", "ionisation mass spectrometer cims", "aerosol sampling", "mercury analyser tekran time", "argo", "micro", "measurements black", "eov data archive", "weather radar", "stabilised platform mercury analyser", "sensors photosynthetically active", "permanent archive", "eov", "ultra", "particle sizers", "acoustic doppler current", "velocity log thermosalinographs", "particles inps ozone sensor", "metal aerosol", "cims cloud radar", "radiometer wvr aerosol", "include regular", "log thermosalinographs tsg", "photometer maap ozone", "bongo net chemical ionisation", "fluorometer oxygen", "chemical ionisation mass", "lidar rman stabilised platform", "marine national", "system", "mass spectrometer cims", "condensation particle counters cpc", "cims cloud radar basta", "spectrometer", "tof", "air", "absorption photometer", "ionisation mass", "local", "doppler velocity", "core argo", "mercury analyser tekran", "ctd hydrochemistry triaxus", "micro pulse lidar", "expendable bathythermographs xbts", "fluorometer frrf mini", "usbl weather radar", "mnf rv", "vapor", "aethalometer mobility particle size", "ptr ms radiosondes cloud", "gas analysers", "pumps", "data requests", "precision spectral pyranometer", "spectrometer cims cloud radar", "analysers picarro cloud condensation", "curated", "information please", "osscar omics", "particles inps", "spectrometer ams core", "ocean miso linking", "precision", "bathythermographs", "links instruments", "voyage all voyage documentation", "collected include regular measurements", "pumps isps", "osscar", "from hobart", "cpc", "radiometer pir", "rain radar mrr", "pir", "links", "maap ozone sensor nephelometer", "net", "data access portal", "particle sizers smps ctd", "disdrometer radon", "all", "took", "organic sulfur sequential", "aest", "acoustic", "ams core argo floats", "marine infrastructure ncmi information", "ptr ms", "chemical analysis", "mpss bongo", "robot osscar omics data", "chemical speciation", "sensor", "gps positioning system doppler", "particles inps ozone", "bgc argo floats", "aerosols", "ams", "titled multidisciplinary", "thermosalinographs tsg fluorometer oxygen", "tsg", "backscatter lidar rman stabilised", "minimpl micro rain", "metal aerosol sampling", "organic sulfur", "maap ozone", "acsm", "nephelometer atmospheric temperature", "ultra short baseline underwater", "floats biogeochemical bgc argo", "atmospheric temperature humidity pressure", "non csiro", "cloud condensation nuclei", "neutral cluster air ion", "mpss bongo net", "fluorometer frrf mini micro", "regular measurements", "radiometer pir precision spectral", "facility mnf", "biogeochemical bgc argo floats", "marine national facility", "specific", "cloud condensation nuclei counter", "adcp ladcp", "cluster air", "portside radiometers", "bathythermographs xbts voyage", "cluster", "local network", "inps ozone", "adcp ladcp acoustic doppler", "cpc disdrometer radon sensor", "rain sensors photosynthetically", "trawler", "ozone sensor trace metal", "csiro participants can", "oxygen optode", "cloud radar basta fast", "ctd", "national facility mnf", "system doppler velocity", "voyage documentation", "greenhouse gas analysers picarro", "processed data from", "made publicly available through", "ncmi", "micro rain", "ctd rosette", "absorption", "documentation links instruments", "sampling", "raw data", "biogeochemical bgc argo", "tsg fluorometer", "rate chlorophyll", "ultra short", "nais", "reaction mass spectrometry ptr", "ccn condensation particle", "wvr aerosol", "measurements black carbon sensor", "sensor nephelometer atmospheric temperature", "particle counters", "mobility", "rain radar mrr neutral", "requests hf", "expendable bathythermographs xbts voyage", "scanning", "marine", "aerosol backscatter lidar", "physics biogeochemistry", "aerosol backscatter lidar rman", "hydrochemistry", "platform mercury analyser tekran", "southern ocean", "black", "infrastructure ncmi information", "collected include", "describes", "fast repetition rate", "bgc argo floats near", "facility mnf rv", "data access portal https", "tekran", "southern ocean miso", "rain radar", "through", "precision infrared", "plankton aerosols clouds", "spectrometer ams", "trace metal ctd rosette", "mini micro pulse", "flight aerosol chemical", "regular measurements lowered", "mass spectrometer ams", "positioning system", "radiometers", "aerosol", "portal https", "cims cloud", "pulse lidar minimpl micro", "ice nucleating particles inps", "radiation par sensor precision", "spectrometer cims cloud", "mrr neutral", "rman stabilised platform", "marine infrastructure", "spectrometry", "counter ccn", "radon", "related links", "linking physics biogeochemistry", "sub bottom", "water vapor radiometer", "rv investigator", "ctd hydrochemistry", "trace metal aerosol sampling", "nephelometer atmospheric", "psp", "non", "system usbl weather", "ozone", "ams core", "xbts", "non csiro participants", "mobility particle sizers smps", "bongo net", "condensation", "record describes", "speciation monitor", "ladcp acoustic doppler", "analysers", "frrf mini micro", "voyage specific", "acsm water vapor radiometer", "csiro national collections", "radon sensor scanning", "ptr", "refer", "carbon sensor aethalometer", "infrastructure", "all voyage documentation", "short", "infrared radiometer pir precision", "time", "analysis robot osscar omics", "titled", "fisheries echosounder", "doppler velocity log thermosalinographs", "applications", "particle size", "par sensor", "robot osscar omics", "core argo floats", "eov data archive from", "gps positioning system", "underwater positioning system", "collected", "radon sensor", "regular measurements lowered adcp", "multiangle absorption", "lidar rman", "repetition rate", "pulse lidar minimpl", "instruments", "situ pumps isps ice", "collections", "carbon", "baseline underwater", "mass spectrometer ams core", "omics data", "biogeochemical", "micro pulse lidar minimpl", "cloud condensation", "local network applications", "sizers smps", "ptr ms radiosondes", "picarro", "sensor precision infrared radiometer", "log", "portside radiometers air", "csiro participants", "physics biogeochemistry plankton aerosols", "bottles", "sampler ultra short", "bathythermographs xbts", "miso linking", "wvr aerosol mass", "measurements lowered adcp ladcp", "sampling trace", "spectrometer nais", "spectral pyranometer", "physics", "usbl", "radiometer wvr aerosol mass", "active radiation par", "data archive from", "mpss bongo net chemical", "analyser tekran time", "centre", "climate", "radiometers air", "reaction mass spectrometry", "vapor radiometer wvr", "network applications", "counters cpc disdrometer", "sensor aethalometer mobility particle", "publicly available through", "january", "permanent", "sensors photosynthetically active radiation", "fluorometer oxygen optode", "facility", "wvr aerosol mass spectrometer", "mass spectrometer", "vapor radiometer wvr aerosol", "sensor nephelometer", "scanning mobility particle", "transfer reaction mass spectrometry", "argo floats near surface", "ozone sensor trace", "sizers smps ctd", "non csiro participants can", "used", "monitor tof", "precision spectral pyranometer psp", "floats near", "cloud", "mini micro pulse lidar", "tof acsm water", "micro rain radar", "doppler velocity log", "rain", "analysis robot osscar", "archive", "fluorometer frrf", "log thermosalinographs tsg fluorometer", "water", "spectrometer nais proton", "voyage", "transfer", "khz greenhouse gas analysers", "frrf mini micro pulse", "chemical speciation monitor tof", "khz greenhouse", "radar mrr", "usbl weather", "floats near surface drifters", "investigations", "spectrometer nais proton transfer", "floats biogeochemical", "via data", "basta fast repetition rate", "radiation par sensor", "proton transfer reaction", "doppler", "greenhouse gas analysers", "sensors photosynthetically", "neutral cluster air", "documentation links", "via data requests", "situ pumps isps", "photosynthetically active radiation", "velocity", "starboard", "bongo", "aerosol backscatter", "radiometers air sampler ultra", "various", "further", "size spectrometer", "adcp", "humidity pressure", "bongo net chemical", "temperature humidity pressure wind", "robot", "voyage eov data", "access portal https", "record", "voyage eov", "voyage took", "particle counters cpc", "humidity", "acoustic doppler", "air ion spectrometer", "cluster air ion", "departing", "radar mrr neutral", "osscar omics data", "spectral pyranometer psp", "documentation", "active", "sensor aethalometer", "chemical ionisation", "radar expendable bathythermographs", "sulfur sequential", "mobility particle", "size spectrometer mpss bongo", "chemical", "nucleating particles inps ozone", "argo floats", "doppler current profiler adcp", "absorption photometer maap", "ozone sensor", "linking physics biogeochemistry plankton", "data trawler", "lowered adcp ladcp acoustic", "current profiler adcp", "infrared radiometer", "precision infrared radiometer pir", "national collections", "infrastructure ncmi", "spectrometer mpss bongo", "situ pumps", "vapor radiometer", "spectrometry ptr ms radiosondes", "rman stabilised platform mercury", "national", "mnf rv investigator voyage", "rman stabilised", "tsg fluorometer oxygen", "ozone sensor nephelometer", "condensation nuclei counter ccn", "baseline underwater positioning", "csiro data access portal", "mini", "biological data", "national facility mnf rv", "nais proton transfer", "march", "made publicly", "isps ice nucleating", "returning", "xbts voyage specific measurements", "marine national facility mnf", "underwater positioning", "multibeam", "precision spectral", "lowered adcp", "links instruments used", "pyranometer psp starboard", "picarro cloud", "plankton aerosols", "tof acsm water vapor", "national facility", "gps positioning", "stabilised platform", "air ion", "all processed", "weather radar expendable bathythermographs", "mercury analyser", "triaxus fisheries echosounder", "ccn condensation", "particle size spectrometer mpss", "aerosol sampling trace metal", "publicly", "air sampler ultra short", "measurements lowered adcp", "weather radar expendable", "sampler ultra", "condensation particle counters", "analysers picarro cloud", "absorption photometer maap ozone", "data from", "mnf data trawler", "echosounder", "cpc disdrometer radon", "bgc", "aerosol mass", "multibeam echosounder", "voyage specific measurements", "voyage all voyage", "miso", "floats near surface", "greenhouse gas", "reaction mass", "related", "rate", "adcp ladcp acoustic", "plankton", "further information please", "thermosalinographs", "further information", "chlorophyll", "mass spectrometry ptr", "mini micro", "data centre", "proton transfer", "monitor", "counter", "spectrometer cims", "sensor trace metal aerosol", "maap", "scanning mobility particle sizers", "radiometer", "air sampler ultra", "inps ozone sensor trace", "radiosondes cloud", "hf", "between january", "titled multidisciplinary investigations", "data collected include regular", "ms radiosondes cloud", "sizers smps ctd hydrochemistry", "aerosol mass spectrometer", "ultra short baseline", "backscatter lidar rman", "https", "portal", "facility mnf rv investigator", "monitor tof acsm water", "active radiation par sensor", "ms radiosondes", "surface", "made", "ionisation mass spectrometer", "metal", "backscatter", "aest departing", "velocity log thermosalinographs tsg", "via data requests hf", "biological", "csiro national", "water vapor radiometer wvr", "ozone sensor nephelometer atmospheric", "temperature humidity", "sensor aethalometer mobility", "bgc argo", "available through", "nuclei counter", "net chemical ionisation", "analysis robot", "radiometer pir precision", "disdrometer", "picarro cloud condensation", "radar mrr neutral cluster", "made publicly available", "pyranometer", "biogeochemistry", "condensation nuclei counter", "gas analysers picarro", "radar", "wvr", "acoustic doppler current profiler", "neutral cluster", "spectrometry ptr", "departing from", "investigator voyage", "repetition rate chlorophyll", "sensor trace metal", "include regular measurements", "pumps isps ice", "spectral", "aerosol chemical speciation monitor", "made via data", "log thermosalinographs", "mrr neutral cluster air", "cpc disdrometer", "short baseline underwater", "pulse lidar", "triaxus", "positioning system doppler velocity", "core argo floats biogeochemical", "spectrometry ptr ms", "trace metal ctd", "trace metal", "oxygen", "chemical speciation monitor", "scanning mobility", "floats", "nucleating particles", "ms", "greenhouse", "pressure", "spectrometer mpss", "support via", "multiangle", "size spectrometer mpss", "isps ice nucleating particles", "metal ctd", "radiometer wvr", "collected include regular", "omics", "surface drifters", "instruments used", "ams core argo", "net chemical", "air sampler", "psp starboard", "xbts voyage", "ion spectrometer nais", "ionisation", "mnf data", "hydrochemistry triaxus", "investigator", "positioning", "ocean miso", "mass spectrometry", "inps", "sampling trace metal", "eov raw", "sub bottom profiler", "aest departing from hobart", "smps", "carbon sensor", "processed", "sensors", "radon sensor scanning mobility", "radiation", "condensation particle", "pulse", "linking physics", "information please refer", "infrared", "lidar minimpl micro", "lidar minimpl", "triaxus fisheries", "sensor nephelometer atmospheric", "rain sensors", "maap ozone sensor", "particles", "voyage documentation links instruments", "khz greenhouse gas", "proton", "processed data", "portside", "pir precision spectral pyranometer", "lowered", "counters cpc disdrometer radon", "pressure wind", "inps ozone sensor", "micro pulse", "took place between january", "underwater", "aethalometer mobility", "radar expendable bathythermographs xbts", "acsm water", "sub", "thermosalinographs tsg", "atmospheric temperature humidity", "access", "rv", "photosynthetically active", "metal ctd rosette", "sequential chemical analysis", "current", "measurements black carbon", "positioning system usbl", "optode", "analysers picarro", "temperature", "photosynthetically active radiation par", "measurements lowered", "sensor scanning mobility particle", "measurements", "participants", "drifters", "reaction", "stabilised", "tof acsm", "xbts voyage specific", "counters cpc", "bottles organic sulfur", "micro rain radar mrr", "bottom profiler", "access voyage", "trace metal aerosol", "argo floats biogeochemical", "nucleating particles inps", "mobility particle size spectrometer", "radiation par", "available", "ice", "ion spectrometer nais proton", "chemical analysis robot osscar", "all processed data", "basta fast repetition", "photometer maap", "hydrochemistry triaxus fisheries", "chemical ionisation mass spectrometer", "ncmi information", "temperature humidity pressure", "speciation monitor tof acsm", "sulfur sequential chemical", "voyage took place", "idc", "please", "nais proton transfer reaction", "proton transfer reaction mass", "ocean", "pumps isps ice nucleating", "monitor tof acsm", "khz", "bathythermographs xbts voyage specific", "support", "data centre idc", "miso linking physics", "ccn condensation particle counters", "ocean miso linking physics", "sequential", "mass", "nuclei counter ccn", "took place between", "gas", "radiosondes", "lidar", "transfer reaction mass", "sensor precision", "mass spectrometer cims cloud", "organic", "metal aerosol sampling trace", "par sensor precision", "mnf", "par sensor precision infrared", "lidar rman stabilised", "organic sulfur sequential chemical", "photometer", "doppler current", "ice nucleating", "sensor trace", "rain sensors photosynthetically active", "cloud radar basta", "near surface drifters", "data access", "fisheries", "backscatter lidar", "active radiation", "ladcp acoustic", "sampler ultra short baseline", "made via data requests", "all processed data from", "photosynthetically", "humidity pressure wind", "minimpl micro", "processors", "specific measurements black", "weather", "between", "further information please refer", "various biological data", "net chemical ionisation mass", "linking", "voyage eov data archive", "ice nucleating particles", "baseline", "nephelometer atmospheric temperature humidity", "sampler", "speciation", "physics biogeochemistry plankton", "black carbon sensor aethalometer", "baseline underwater positioning system", "nuclei", "access portal", "requests", "speciation monitor tof", "ion spectrometer", "aethalometer", "all voyage", "doppler current profiler", "place", "cloud radar", "participants can", "regular", "include", "situ", "stabilised platform mercury", "multidisciplinary investigations", "voyage documentation links", "mrr", "mpss", "ladcp acoustic doppler current", "data requests hf", "minimpl micro rain radar", "counter ccn condensation particle", "data", "atmospheric temperature", "departing from hobart", "system doppler", "black carbon", "particle size spectrometer", "hobart", "particle counters cpc disdrometer", "radar expendable", "fast repetition rate chlorophyll", "current profiler", "argo floats near", "aerosol chemical", "short baseline", "mobility particle size", "from", "miso linking physics biogeochemistry", "rman", "multidisciplinary", "positioning system usbl weather", "include regular measurements lowered", "bottom", "fluorometer", "thermosalinographs tsg fluorometer", "profiler", "picarro cloud condensation nuclei", "system usbl weather radar", "documentation links instruments used", "sampling trace metal ctd", "system usbl", "core", "voyage all", "water vapor", "floats biogeochemical bgc", "short baseline underwater positioning", "aerosol sampling trace", "expendable bathythermographs", "mercury", "rv investigator voyage", "clouds", "platform", "network", "ctd hydrochemistry triaxus fisheries", "fast repetition", "can", "portside radiometers air sampler", "trace", "atmospheric", "argo floats biogeochemical bgc", "positioning system doppler", "data collected include", "mobility particle sizers", "mrr neutral cluster", "nephelometer", "voyage specific measurements black", "please refer", "radar basta fast", "platform mercury", "southern ocean miso linking", "sequential chemical analysis robot", "providing access", "took place", "csiro data", "pir precision spectral", "spectral pyranometer psp starboard" ],
- "parameter_vocabs_sayt" : [ "ocean biota", "bathymetry", "density", "water pressure", "current", "temperature", "salinity" ],
- "platform_vocabs_sayt" : [ "research vessel" ]
+ "contacts": [
+ {
+ "roles": [
+ "custodian",
+ "about"
+ ],
+ "organization": "CSIRO Oceans & Atmosphere - Hobart",
+ "name": "data-requests-hf@csiro.au,",
+ "position": "Data Requests - Information & Data Centre",
+ "emails": [],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "GPO Box 1538"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "TAS"
+ },
+ {
+ "deliveryPoint": [
+ "Castray Esplanade"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7000",
+ "administrativeArea": "TAS"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "+61 3 6232 5222"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "+61 3 6232 5000"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://www.csiro.au/en/Research/OandA",
+ "type": "WWW:LINK-1.0-http--link"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "processor",
+ "metadata"
+ ],
+ "organization": "CSIRO/Oceans and Atmosphere",
+ "name": "Data Officer (AR), Hobart",
+ "position": "",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ },
+ {
+ "roles": [
+ "pointOfContact",
+ "metadata"
+ ],
+ "organization": "CSIRO Oceans & Atmosphere - Hobart",
+ "name": "CSIRO O&A, Information & Data Centre",
+ "position": "Data Requests",
+ "emails": [],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "GPO Box 1538"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "TAS"
+ },
+ {
+ "deliveryPoint": [
+ "Castray Esplanade"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7000",
+ "administrativeArea": "TAS"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "+61 3 6232 5222"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "+61 3 6232 5000"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://www.csiro.au/en/Research/OandA",
+ "type": "WWW:LINK-1.0-http--link"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "originator",
+ "metadata"
+ ],
+ "organization": "CSIRO",
+ "name": "Roubicek, Andres",
+ "position": "",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ }
+ ],
+ "languages": [
+ {
+ "code": "eng",
+ "name": "English"
+ }
+ ],
+ "links": [
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/survey_details.cfm?survey=IN2024_V01",
+ "rel": "related",
+ "type": "",
+ "title": "MNF Data Trawler"
+ },
+ {
+ "href": "https://mnf.csiro.au/",
+ "rel": "related",
+ "type": "text/html",
+ "title": "Marine National Facility"
+ },
+ {
+ "href": "https://doi.org/10.25919/rdrt-bd71",
+ "rel": "related",
+ "type": "",
+ "title": "Data Access Portal (DOI)"
+ },
+ {
+ "href": "http://www.marine.csiro.au/data/underway/?survey=IN2024_V01",
+ "rel": "related",
+ "type": "",
+ "title": "Underway Visualisation Tool"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/survey_mapfile.cfm?survey=IN2024_V01&data_type=uwy",
+ "rel": "preview",
+ "type": "image"
+ },
+ {
+ "href": "http://140.79.20.100:8080/geonetwork/srv/eng/catalog.search#/metadata/ff887cf9-18bb-464e-8bad-5dc6e0ad946b",
+ "rel": "describedby",
+ "type": "text/html",
+ "title": "Full metadata link"
+ },
+ {
+ "href": "https://i.creativecommons.org/l/by/4.0/88x31.png",
+ "rel": "license",
+ "type": "image/png"
+ },
+ {
+ "href": "https://creativecommons.org/licenses/by/4.0/",
+ "rel": "license",
+ "type": "text/html"
+ }
+ ],
+ "license": "Attribution 4.0",
+ "providers": [
+ {
+ "name": "CSIRO/Oceans and Atmosphere",
+ "roles": [
+ "processor"
+ ]
+ },
+ {
+ "name": "CSIRO Oceans & Atmosphere - Hobart",
+ "roles": [
+ "pointOfContact"
+ ]
+ },
+ {
+ "name": "CSIRO",
+ "roles": [
+ "originator"
+ ]
+ }
+ ],
+ "themes": [
+ {
+ "concepts": [
+ {
+ "id": "Earth Science | Atmosphere | Aerosols",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/2e5a401b-1507-4f57-82b8-36557c13b154"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Pressure | Surface Pressure",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b54de5cd-4475-4c7b-acbc-4eb529b9396e"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Radiation",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/4ad0c52d-6449-48ff-8678-adc6b2cebcb7"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Aerosols | Cloud Condensation Nuclei",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/27478148-b4b6-4c89-8829-08d2ee7bfe10"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Precipitation | Rain",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/09a57dc7-3911-4a65-9f12-b819652b8671"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Chemistry | Carbon Dioxide",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/26afa886-4866-4536-be3a-6f9db9aacd97"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Aerosols | Particulate Matter",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/548a3f85-bf22-473b-b641-45c32d9c6a0c"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Clouds",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/162e2243-3266-4999-b352-d8a1a9dc82ac"
+ },
+ {
+ "id": "Earth Science | Oceans | Salinity/Density | Salinity",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/7e95b5fc-1d58-431a-af36-948b29fa870d"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Chemistry | Carbon And Hydrocarbon Compounds | Carbon Dioxide",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/c3b81888-8a39-4b3f-8033-4c077797bcba"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Pressure | Atmospheric Pressure Measurements",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/9efbc088-ba8c-4c9c-a458-ad6ad63f4188"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/10685919-bc01-43e7-901a-b62ac44627f3"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Temperature | Sea Surface Temperature",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/bd24a9a9-7d52-4c29-b2a0-6cefd216ae78"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds | Wind Speed/Wind Direction",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a92f49f3-e2ee-4ef4-b064-39311ffb95d3"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Chemistry | Trace Elements/Trace Metals",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/2d36c283-2fe3-4a08-aeb3-6a8146e79bb3"
+ },
+ {
+ "id": "Earth Science | Oceans | Aquatic Sciences | Fisheries",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/fa57b0a0-9723-4195-bdd1-4f26aefa0e07"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Aerosols | Aerosol Particle Properties",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/02ea239e-4bca-4fda-ab87-be12c723c30a"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Circulation | Ocean Currents",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/510c5f78-e19e-4ce4-b59a-8937aeb84631"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Chemistry | Oxygen",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/90aa8838-79bd-4b28-b518-8217e863c385"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Chemistry | Nutrients",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/8dd7c9f0-51d0-4037-b1d0-a2517c1770ad"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Waves | Sea State",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/11aca777-8a01-42ce-b076-b3059c3d8cae"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Chemistry | Chlorophyll",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/7989eae1-8ea3-4039-af0c-9130de145449"
+ },
+ {
+ "id": "Earth Science Services | Data Analysis And Visualization | Global Positioning Systems",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/f082ad51-4ce4-4ffe-be50-6753c4f997ae"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Chemistry | Trace Elements",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/6c320188-da7b-4d52-8e99-57d7ac401841"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Optics | Photosynthetically Active Radiation",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b7410899-350a-4443-9430-c7fe1fa3a499"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Chemistry | Oxygen Compounds | Ozone",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/dd316647-9043-40c3-9329-f22f9215fefa"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Radiation | Solar Radiation",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a0f3474e-9a54-4a82-97c4-43864b48df4c"
+ },
+ {
+ "id": "Earth Science | Oceans | Bathymetry/Seafloor Topography | Seafloor Topography",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b6b51058-1111-4498-a9ac-e1515270fb27"
+ }
+ ],
+ "scheme": "theme",
+ "description": "",
+ "title": "GCMD Keywords"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Research Voyage: IN2024_V01",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.survey.urn:marlin.csiro.au:surveyregister&id=urn:marlin.csiro.au:surveyregister:concept:2315"
+ }
+ ],
+ "scheme": "survey",
+ "description": "",
+ "title": "CSIRO Survey List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Ship: Investigator (RV)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.dataSource.urn:marlin.csiro.au:sourceregister&id=urn:marlin.csiro.au:sourceregister:concept:309"
+ }
+ ],
+ "scheme": "dataSource",
+ "description": "",
+ "title": "CSIRO Source List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Multidisciplinary Investigations of the Southern Ocean (MISO): linking physics, biogeochemistry, plankton, aerosols, clouds, and climate",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.project.urn:marlin.csiro.au:projectregister&id=urn:marlin.csiro.au:projectregister:concept:2609"
+ }
+ ],
+ "scheme": "project",
+ "description": "",
+ "title": "CSIRO Project List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Marine Planning Regions (Australia) | Australian Antarctic",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:50"
+ },
+ {
+ "id": "Global / Oceans | East Indian Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1020"
+ },
+ {
+ "id": "Coastal Waters (Australia) | Tasmania Coast, TAS",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1010"
+ },
+ {
+ "id": "Coastal Waters (Australia) | West Australia Coast South, WA",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1017"
+ },
+ {
+ "id": "Marine Features (Australia) | Derwent Estuary, TAS",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:69"
+ },
+ {
+ "id": "Global / Oceans | Southern Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:6"
+ }
+ ],
+ "scheme": "place",
+ "description": "",
+ "title": "AODN Geographic Extent Names"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Vessel Data: Dissolved Oxygen",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3512"
+ },
+ {
+ "id": "Vessel/Station Data: Hydrology",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3513"
+ },
+ {
+ "id": "Vessel Data: undulating CTD",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3522"
+ },
+ {
+ "id": "Vessel Data: Multibeam Echosounder",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3521"
+ },
+ {
+ "id": "Vessel Data: Acoustics (Fisheries)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3520"
+ },
+ {
+ "id": "Vessel Data: CTD",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3511"
+ },
+ {
+ "id": "Vessel Data: Underway",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3514"
+ },
+ {
+ "id": "Vessel Data: ADCP",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3510"
+ },
+ {
+ "id": "Vessel Data: XBT",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3515"
+ }
+ ],
+ "scheme": "discipline",
+ "description": "",
+ "title": "CSIRO Standard Data Types"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Radon Detector",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:172"
+ },
+ {
+ "id": "CTDs (Conductivity-Temperature-Depth Profilers)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:33"
+ },
+ {
+ "id": "CO2 Analysers",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:17"
+ },
+ {
+ "id": "Fluorometers",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:47"
+ },
+ {
+ "id": "GPS (Global Positioning System)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:167"
+ },
+ {
+ "id": "LADCP (Lowered Acoustic Doppler Current Profiler)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:139"
+ },
+ {
+ "id": "ADCP (Acoustic Doppler Current Profiler)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:2"
+ },
+ {
+ "id": "Greenhouse gas analyser - Aerodyne",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:176"
+ },
+ {
+ "id": "CPC (Condensation Particle Counters)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:126"
+ },
+ {
+ "id": "Disdrometer (Rain Droplet Particle Sizer)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:160"
+ },
+ {
+ "id": "XBTs (Expendable Bathythermographs)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:21"
+ },
+ {
+ "id": "SMPS (Scanning Mobility Particle Sizers)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:128"
+ },
+ {
+ "id": "Undulating CTD - Triaxus",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:174"
+ },
+ {
+ "id": "Multibeam Echosounder - EM710",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:142"
+ },
+ {
+ "id": "Multibeam Echosounder - EM122",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:144"
+ },
+ {
+ "id": "Air sampling systems",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:179"
+ },
+ {
+ "id": "Sub-bottom Profiler - SBP120",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:164"
+ },
+ {
+ "id": "CCN (Cloud Condensation Nuclei Counter)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:127"
+ },
+ {
+ "id": "Meteorological Instruments",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:61"
+ },
+ {
+ "id": "Radiometer",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:171"
+ },
+ {
+ "id": "MAAP (Multiangle Absorption Photometer)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:180"
+ },
+ {
+ "id": "SUNA (Submersible Ultraviolet Nitrate Analyser)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:135"
+ },
+ {
+ "id": "Thermosalinographs",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:101"
+ },
+ {
+ "id": "Ozone monitor",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:178"
+ },
+ {
+ "id": "Gas Chromatographs",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:48"
+ },
+ {
+ "id": "Greenhouse gas analyser - Picarro",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:177"
+ },
+ {
+ "id": "Fisheries echosounder - EK80",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:196"
+ },
+ {
+ "id": "Weather Radars",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:162"
+ },
+ {
+ "id": "Nephelometers",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:125"
+ },
+ {
+ "id": "Profiling Float - Argo",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:150"
+ },
+ {
+ "id": "Cloud Radars",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:161"
+ },
+ {
+ "id": "Plankton Nets/Drop Nets",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:75"
+ },
+ {
+ "id": "Cloud lidar",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:200"
+ },
+ {
+ "id": "SVP (Surface Velocity Program) Drifters",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:163"
+ }
+ ],
+ "scheme": "equipment",
+ "description": "",
+ "title": "CSIRO Equipment"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Marine National Facility",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:cmarAOI&id=urn:marlin.csiro.au:keywords:cmarAOI:concept:3208"
+ }
+ ],
+ "scheme": "discipline",
+ "description": "",
+ "title": "CSIRO Areas Of Interest"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Practical salinity of the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/PSLTZZ01"
+ },
+ {
+ "id": "Temperature of the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/TEMPPR01"
+ },
+ {
+ "id": "Pressure (measured variable) in the water body exerted by overlying sea water and any medium above it",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/565"
+ },
+ {
+ "id": "Pressure (measured variable) in the water body exerted by overlying sea water only",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/566"
+ },
+ {
+ "id": "Current direction in the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/LCDAZZ01"
+ },
+ {
+ "id": "Current speed in the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/383"
+ },
+ {
+ "id": "Eastward current velocity in the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/LCEWZZ01"
+ },
+ {
+ "id": "Northward current velocity in the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/LCNSZZ01"
+ },
+ {
+ "id": "Upward current velocity in the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/LRZAZZZZ"
+ },
+ {
+ "id": "Sea-floor depth below surface of the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/574"
+ },
+ {
+ "id": "Sea-floor surface hardness",
+ "url": "N/A"
+ },
+ {
+ "id": "Density of the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/401"
+ },
+ {
+ "id": "Sub-bottom structure",
+ "url": "N/A"
+ },
+ {
+ "id": "Abundance of biota",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/488"
+ },
+ {
+ "id": "Biovolume",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/22"
+ }
+ ],
+ "scheme": "",
+ "description": "",
+ "title": ""
+ },
+ {
+ "concepts": [
+ {
+ "id": "research vessel",
+ "url": "http://vocab.nerc.ac.uk/collection/L06/current/31"
+ }
+ ],
+ "scheme": "",
+ "description": "",
+ "title": ""
+ },
+ {
+ "concepts": [
+ {
+ "id": "CTD",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/130"
+ },
+ {
+ "id": "lowered current profilers",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/116/"
+ },
+ {
+ "id": "current profilers",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/115"
+ },
+ {
+ "id": "bathythermographs",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/132"
+ },
+ {
+ "id": "multi-beam echosounders",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/157"
+ },
+ {
+ "id": "2000 Hz top-bandwidth sub-bottom penetrator and mud profiler systems",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/367/"
+ },
+ {
+ "id": "thermosalinographs",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/133"
+ },
+ {
+ "id": "Fish-finder echosounders",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/FFES"
+ }
+ ],
+ "scheme": "",
+ "description": "",
+ "title": ""
+ }
+ ],
+ "id": "e18eee85-c6c4-4be2-ac8c-930991cf2534",
+ "search_suggestions": {
+ "abstract_phrases": [
+ "minimpl",
+ "platform mercury analyser",
+ "sensor scanning mobility",
+ "ion",
+ "robot osscar",
+ "nucleating",
+ "ccn",
+ "aerosol chemical speciation",
+ "via",
+ "carbon sensor aethalometer mobility",
+ "basta",
+ "infrared radiometer pir",
+ "electronically",
+ "sulfur",
+ "biogeochemistry plankton aerosols clouds",
+ "eov raw data",
+ "specific measurements",
+ "spectrometer mpss bongo net",
+ "near",
+ "marine infrastructure ncmi",
+ "csiro data access",
+ "disdrometer radon sensor",
+ "chemical analysis robot",
+ "ladcp",
+ "counters",
+ "publicly available",
+ "multiangle absorption photometer maap",
+ "hydrochemistry triaxus fisheries echosounder",
+ "neutral",
+ "raw",
+ "analysis",
+ "tekran time",
+ "frrf",
+ "mnf support via",
+ "available electronically",
+ "expendable",
+ "size",
+ "near surface",
+ "mnf rv investigator",
+ "sequential chemical",
+ "sizers",
+ "wind",
+ "southern",
+ "biogeochemistry plankton aerosols",
+ "flight",
+ "centre idc",
+ "rosette",
+ "providing",
+ "fremantle",
+ "cluster air ion spectrometer",
+ "condensation nuclei",
+ "smps ctd hydrochemistry",
+ "sensor precision infrared",
+ "radar basta fast repetition",
+ "flight aerosol",
+ "aest departing from",
+ "smps ctd hydrochemistry triaxus",
+ "mass spectrometry ptr ms",
+ "particle",
+ "nais proton",
+ "access voyage documentation",
+ "csiro",
+ "mnf support",
+ "place between",
+ "various biological",
+ "frrf mini",
+ "basta fast",
+ "archive from",
+ "aethalometer mobility particle",
+ "sulfur sequential chemical analysis",
+ "black carbon sensor",
+ "velocity log",
+ "fast",
+ "transfer reaction",
+ "analyser tekran",
+ "biogeochemical bgc",
+ "information",
+ "voyage took place between",
+ "disdrometer radon sensor scanning",
+ "voyage participants",
+ "aerosol mass spectrometer ams",
+ "place between january",
+ "pyranometer psp",
+ "photometer maap ozone sensor",
+ "radar basta",
+ "repetition",
+ "pir precision",
+ "data archive",
+ "isps",
+ "profiler adcp",
+ "par",
+ "cims",
+ "lidar minimpl micro rain",
+ "radiometers air sampler",
+ "air ion spectrometer nais",
+ "gps",
+ "bottles organic",
+ "gas analysers picarro cloud",
+ "analyser",
+ "bottles organic sulfur sequential",
+ "data collected",
+ "lowered adcp ladcp",
+ "flight aerosol chemical speciation",
+ "counter ccn condensation",
+ "aerosols clouds",
+ "usbl weather radar expendable",
+ "eov data",
+ "biogeochemistry plankton",
+ "precision infrared radiometer",
+ "specific measurements black carbon",
+ "acsm water vapor",
+ "isps ice",
+ "multiangle absorption photometer",
+ "sensor scanning",
+ "end",
+ "particle sizers smps",
+ "system doppler velocity log",
+ "smps ctd",
+ "made via",
+ "underwater positioning system usbl",
+ "tsg fluorometer oxygen optode",
+ "nuclei counter ccn condensation",
+ "spectrometer ams core argo",
+ "ionisation mass spectrometer cims",
+ "aerosol sampling",
+ "mercury analyser tekran time",
+ "argo",
+ "micro",
+ "measurements black",
+ "eov data archive",
+ "weather radar",
+ "stabilised platform mercury analyser",
+ "sensors photosynthetically active",
+ "permanent archive",
+ "eov",
+ "ultra",
+ "particle sizers",
+ "acoustic doppler current",
+ "velocity log thermosalinographs",
+ "particles inps ozone sensor",
+ "metal aerosol",
+ "cims cloud radar",
+ "radiometer wvr aerosol",
+ "include regular",
+ "log thermosalinographs tsg",
+ "photometer maap ozone",
+ "bongo net chemical ionisation",
+ "fluorometer oxygen",
+ "chemical ionisation mass",
+ "lidar rman stabilised platform",
+ "marine national",
+ "system",
+ "mass spectrometer cims",
+ "condensation particle counters cpc",
+ "cims cloud radar basta",
+ "spectrometer",
+ "tof",
+ "air",
+ "absorption photometer",
+ "ionisation mass",
+ "local",
+ "doppler velocity",
+ "core argo",
+ "mercury analyser tekran",
+ "ctd hydrochemistry triaxus",
+ "micro pulse lidar",
+ "expendable bathythermographs xbts",
+ "fluorometer frrf mini",
+ "usbl weather radar",
+ "mnf rv",
+ "vapor",
+ "aethalometer mobility particle size",
+ "ptr ms radiosondes cloud",
+ "gas analysers",
+ "pumps",
+ "data requests",
+ "precision spectral pyranometer",
+ "spectrometer cims cloud radar",
+ "analysers picarro cloud condensation",
+ "curated",
+ "information please",
+ "osscar omics",
+ "particles inps",
+ "spectrometer ams core",
+ "ocean miso linking",
+ "precision",
+ "bathythermographs",
+ "links instruments",
+ "voyage all voyage documentation",
+ "collected include regular measurements",
+ "pumps isps",
+ "osscar",
+ "from hobart",
+ "cpc",
+ "radiometer pir",
+ "rain radar mrr",
+ "pir",
+ "links",
+ "maap ozone sensor nephelometer",
+ "net",
+ "data access portal",
+ "particle sizers smps ctd",
+ "disdrometer radon",
+ "all",
+ "took",
+ "organic sulfur sequential",
+ "aest",
+ "acoustic",
+ "ams core argo floats",
+ "marine infrastructure ncmi information",
+ "ptr ms",
+ "chemical analysis",
+ "mpss bongo",
+ "robot osscar omics data",
+ "chemical speciation",
+ "sensor",
+ "gps positioning system doppler",
+ "particles inps ozone",
+ "bgc argo floats",
+ "aerosols",
+ "ams",
+ "titled multidisciplinary",
+ "thermosalinographs tsg fluorometer oxygen",
+ "tsg",
+ "backscatter lidar rman stabilised",
+ "minimpl micro rain",
+ "metal aerosol sampling",
+ "organic sulfur",
+ "maap ozone",
+ "acsm",
+ "nephelometer atmospheric temperature",
+ "ultra short baseline underwater",
+ "floats biogeochemical bgc argo",
+ "atmospheric temperature humidity pressure",
+ "non csiro",
+ "cloud condensation nuclei",
+ "neutral cluster air ion",
+ "mpss bongo net",
+ "fluorometer frrf mini micro",
+ "regular measurements",
+ "radiometer pir precision spectral",
+ "facility mnf",
+ "biogeochemical bgc argo floats",
+ "marine national facility",
+ "specific",
+ "cloud condensation nuclei counter",
+ "adcp ladcp",
+ "cluster air",
+ "portside radiometers",
+ "bathythermographs xbts voyage",
+ "cluster",
+ "local network",
+ "inps ozone",
+ "adcp ladcp acoustic doppler",
+ "cpc disdrometer radon sensor",
+ "rain sensors photosynthetically",
+ "trawler",
+ "ozone sensor trace metal",
+ "csiro participants can",
+ "oxygen optode",
+ "cloud radar basta fast",
+ "ctd",
+ "national facility mnf",
+ "system doppler velocity",
+ "voyage documentation",
+ "greenhouse gas analysers picarro",
+ "processed data from",
+ "made publicly available through",
+ "ncmi",
+ "micro rain",
+ "ctd rosette",
+ "absorption",
+ "documentation links instruments",
+ "sampling",
+ "raw data",
+ "biogeochemical bgc argo",
+ "tsg fluorometer",
+ "rate chlorophyll",
+ "ultra short",
+ "nais",
+ "reaction mass spectrometry ptr",
+ "ccn condensation particle",
+ "wvr aerosol",
+ "measurements black carbon sensor",
+ "sensor nephelometer atmospheric temperature",
+ "particle counters",
+ "mobility",
+ "rain radar mrr neutral",
+ "requests hf",
+ "expendable bathythermographs xbts voyage",
+ "scanning",
+ "marine",
+ "aerosol backscatter lidar",
+ "physics biogeochemistry",
+ "aerosol backscatter lidar rman",
+ "hydrochemistry",
+ "platform mercury analyser tekran",
+ "southern ocean",
+ "black",
+ "infrastructure ncmi information",
+ "collected include",
+ "describes",
+ "fast repetition rate",
+ "bgc argo floats near",
+ "facility mnf rv",
+ "data access portal https",
+ "tekran",
+ "southern ocean miso",
+ "rain radar",
+ "through",
+ "precision infrared",
+ "plankton aerosols clouds",
+ "spectrometer ams",
+ "trace metal ctd rosette",
+ "mini micro pulse",
+ "flight aerosol chemical",
+ "regular measurements lowered",
+ "mass spectrometer ams",
+ "positioning system",
+ "radiometers",
+ "aerosol",
+ "portal https",
+ "cims cloud",
+ "pulse lidar minimpl micro",
+ "ice nucleating particles inps",
+ "radiation par sensor precision",
+ "spectrometer cims cloud",
+ "mrr neutral",
+ "rman stabilised platform",
+ "marine infrastructure",
+ "spectrometry",
+ "counter ccn",
+ "radon",
+ "related links",
+ "linking physics biogeochemistry",
+ "sub bottom",
+ "water vapor radiometer",
+ "rv investigator",
+ "ctd hydrochemistry",
+ "trace metal aerosol sampling",
+ "nephelometer atmospheric",
+ "psp",
+ "non",
+ "system usbl weather",
+ "ozone",
+ "ams core",
+ "xbts",
+ "non csiro participants",
+ "mobility particle sizers smps",
+ "bongo net",
+ "condensation",
+ "record describes",
+ "speciation monitor",
+ "ladcp acoustic doppler",
+ "analysers",
+ "frrf mini micro",
+ "voyage specific",
+ "acsm water vapor radiometer",
+ "csiro national collections",
+ "radon sensor scanning",
+ "ptr",
+ "refer",
+ "carbon sensor aethalometer",
+ "infrastructure",
+ "all voyage documentation",
+ "short",
+ "infrared radiometer pir precision",
+ "time",
+ "analysis robot osscar omics",
+ "titled",
+ "fisheries echosounder",
+ "doppler velocity log thermosalinographs",
+ "applications",
+ "particle size",
+ "par sensor",
+ "robot osscar omics",
+ "core argo floats",
+ "eov data archive from",
+ "gps positioning system",
+ "underwater positioning system",
+ "collected",
+ "radon sensor",
+ "regular measurements lowered adcp",
+ "multiangle absorption",
+ "lidar rman",
+ "repetition rate",
+ "pulse lidar minimpl",
+ "instruments",
+ "situ pumps isps ice",
+ "collections",
+ "carbon",
+ "baseline underwater",
+ "mass spectrometer ams core",
+ "omics data",
+ "biogeochemical",
+ "micro pulse lidar minimpl",
+ "cloud condensation",
+ "local network applications",
+ "sizers smps",
+ "ptr ms radiosondes",
+ "picarro",
+ "sensor precision infrared radiometer",
+ "log",
+ "portside radiometers air",
+ "csiro participants",
+ "physics biogeochemistry plankton aerosols",
+ "bottles",
+ "sampler ultra short",
+ "bathythermographs xbts",
+ "miso linking",
+ "wvr aerosol mass",
+ "measurements lowered adcp ladcp",
+ "sampling trace",
+ "spectrometer nais",
+ "spectral pyranometer",
+ "physics",
+ "usbl",
+ "radiometer wvr aerosol mass",
+ "active radiation par",
+ "data archive from",
+ "mpss bongo net chemical",
+ "analyser tekran time",
+ "centre",
+ "climate",
+ "radiometers air",
+ "reaction mass spectrometry",
+ "vapor radiometer wvr",
+ "network applications",
+ "counters cpc disdrometer",
+ "sensor aethalometer mobility particle",
+ "publicly available through",
+ "january",
+ "permanent",
+ "sensors photosynthetically active radiation",
+ "fluorometer oxygen optode",
+ "facility",
+ "wvr aerosol mass spectrometer",
+ "mass spectrometer",
+ "vapor radiometer wvr aerosol",
+ "sensor nephelometer",
+ "scanning mobility particle",
+ "transfer reaction mass spectrometry",
+ "argo floats near surface",
+ "ozone sensor trace",
+ "sizers smps ctd",
+ "non csiro participants can",
+ "used",
+ "monitor tof",
+ "precision spectral pyranometer psp",
+ "floats near",
+ "cloud",
+ "mini micro pulse lidar",
+ "tof acsm water",
+ "micro rain radar",
+ "doppler velocity log",
+ "rain",
+ "analysis robot osscar",
+ "archive",
+ "fluorometer frrf",
+ "log thermosalinographs tsg fluorometer",
+ "water",
+ "spectrometer nais proton",
+ "voyage",
+ "transfer",
+ "khz greenhouse gas analysers",
+ "frrf mini micro pulse",
+ "chemical speciation monitor tof",
+ "khz greenhouse",
+ "radar mrr",
+ "usbl weather",
+ "floats near surface drifters",
+ "investigations",
+ "spectrometer nais proton transfer",
+ "floats biogeochemical",
+ "via data",
+ "basta fast repetition rate",
+ "radiation par sensor",
+ "proton transfer reaction",
+ "doppler",
+ "greenhouse gas analysers",
+ "sensors photosynthetically",
+ "neutral cluster air",
+ "documentation links",
+ "via data requests",
+ "situ pumps isps",
+ "photosynthetically active radiation",
+ "velocity",
+ "starboard",
+ "bongo",
+ "aerosol backscatter",
+ "radiometers air sampler ultra",
+ "various",
+ "further",
+ "size spectrometer",
+ "adcp",
+ "humidity pressure",
+ "bongo net chemical",
+ "temperature humidity pressure wind",
+ "robot",
+ "voyage eov data",
+ "access portal https",
+ "record",
+ "voyage eov",
+ "voyage took",
+ "particle counters cpc",
+ "humidity",
+ "acoustic doppler",
+ "air ion spectrometer",
+ "cluster air ion",
+ "departing",
+ "radar mrr neutral",
+ "osscar omics data",
+ "spectral pyranometer psp",
+ "documentation",
+ "active",
+ "sensor aethalometer",
+ "chemical ionisation",
+ "radar expendable bathythermographs",
+ "sulfur sequential",
+ "mobility particle",
+ "size spectrometer mpss bongo",
+ "chemical",
+ "nucleating particles inps ozone",
+ "argo floats",
+ "doppler current profiler adcp",
+ "absorption photometer maap",
+ "ozone sensor",
+ "linking physics biogeochemistry plankton",
+ "data trawler",
+ "lowered adcp ladcp acoustic",
+ "current profiler adcp",
+ "infrared radiometer",
+ "precision infrared radiometer pir",
+ "national collections",
+ "infrastructure ncmi",
+ "spectrometer mpss bongo",
+ "situ pumps",
+ "vapor radiometer",
+ "spectrometry ptr ms radiosondes",
+ "rman stabilised platform mercury",
+ "national",
+ "mnf rv investigator voyage",
+ "rman stabilised",
+ "tsg fluorometer oxygen",
+ "ozone sensor nephelometer",
+ "condensation nuclei counter ccn",
+ "baseline underwater positioning",
+ "csiro data access portal",
+ "mini",
+ "biological data",
+ "national facility mnf rv",
+ "nais proton transfer",
+ "march",
+ "made publicly",
+ "isps ice nucleating",
+ "returning",
+ "xbts voyage specific measurements",
+ "marine national facility mnf",
+ "underwater positioning",
+ "multibeam",
+ "precision spectral",
+ "lowered adcp",
+ "links instruments used",
+ "pyranometer psp starboard",
+ "picarro cloud",
+ "plankton aerosols",
+ "tof acsm water vapor",
+ "national facility",
+ "gps positioning",
+ "stabilised platform",
+ "air ion",
+ "all processed",
+ "weather radar expendable bathythermographs",
+ "mercury analyser",
+ "triaxus fisheries echosounder",
+ "ccn condensation",
+ "particle size spectrometer mpss",
+ "aerosol sampling trace metal",
+ "publicly",
+ "air sampler ultra short",
+ "measurements lowered adcp",
+ "weather radar expendable",
+ "sampler ultra",
+ "condensation particle counters",
+ "analysers picarro cloud",
+ "absorption photometer maap ozone",
+ "data from",
+ "mnf data trawler",
+ "echosounder",
+ "cpc disdrometer radon",
+ "bgc",
+ "aerosol mass",
+ "multibeam echosounder",
+ "voyage specific measurements",
+ "voyage all voyage",
+ "miso",
+ "floats near surface",
+ "greenhouse gas",
+ "reaction mass",
+ "related",
+ "rate",
+ "adcp ladcp acoustic",
+ "plankton",
+ "further information please",
+ "thermosalinographs",
+ "further information",
+ "chlorophyll",
+ "mass spectrometry ptr",
+ "mini micro",
+ "data centre",
+ "proton transfer",
+ "monitor",
+ "counter",
+ "spectrometer cims",
+ "sensor trace metal aerosol",
+ "maap",
+ "scanning mobility particle sizers",
+ "radiometer",
+ "air sampler ultra",
+ "inps ozone sensor trace",
+ "radiosondes cloud",
+ "hf",
+ "between january",
+ "titled multidisciplinary investigations",
+ "data collected include regular",
+ "ms radiosondes cloud",
+ "sizers smps ctd hydrochemistry",
+ "aerosol mass spectrometer",
+ "ultra short baseline",
+ "backscatter lidar rman",
+ "https",
+ "portal",
+ "facility mnf rv investigator",
+ "monitor tof acsm water",
+ "active radiation par sensor",
+ "ms radiosondes",
+ "surface",
+ "made",
+ "ionisation mass spectrometer",
+ "metal",
+ "backscatter",
+ "aest departing",
+ "velocity log thermosalinographs tsg",
+ "via data requests hf",
+ "biological",
+ "csiro national",
+ "water vapor radiometer wvr",
+ "ozone sensor nephelometer atmospheric",
+ "temperature humidity",
+ "sensor aethalometer mobility",
+ "bgc argo",
+ "available through",
+ "nuclei counter",
+ "net chemical ionisation",
+ "analysis robot",
+ "radiometer pir precision",
+ "disdrometer",
+ "picarro cloud condensation",
+ "radar mrr neutral cluster",
+ "made publicly available",
+ "pyranometer",
+ "biogeochemistry",
+ "condensation nuclei counter",
+ "gas analysers picarro",
+ "radar",
+ "wvr",
+ "acoustic doppler current profiler",
+ "neutral cluster",
+ "spectrometry ptr",
+ "departing from",
+ "investigator voyage",
+ "repetition rate chlorophyll",
+ "sensor trace metal",
+ "include regular measurements",
+ "pumps isps ice",
+ "spectral",
+ "aerosol chemical speciation monitor",
+ "made via data",
+ "log thermosalinographs",
+ "mrr neutral cluster air",
+ "cpc disdrometer",
+ "short baseline underwater",
+ "pulse lidar",
+ "triaxus",
+ "positioning system doppler velocity",
+ "core argo floats biogeochemical",
+ "spectrometry ptr ms",
+ "trace metal ctd",
+ "trace metal",
+ "oxygen",
+ "chemical speciation monitor",
+ "scanning mobility",
+ "floats",
+ "nucleating particles",
+ "ms",
+ "greenhouse",
+ "pressure",
+ "spectrometer mpss",
+ "support via",
+ "multiangle",
+ "size spectrometer mpss",
+ "isps ice nucleating particles",
+ "metal ctd",
+ "radiometer wvr",
+ "collected include regular",
+ "omics",
+ "surface drifters",
+ "instruments used",
+ "ams core argo",
+ "net chemical",
+ "air sampler",
+ "psp starboard",
+ "xbts voyage",
+ "ion spectrometer nais",
+ "ionisation",
+ "mnf data",
+ "hydrochemistry triaxus",
+ "investigator",
+ "positioning",
+ "ocean miso",
+ "mass spectrometry",
+ "inps",
+ "sampling trace metal",
+ "eov raw",
+ "sub bottom profiler",
+ "aest departing from hobart",
+ "smps",
+ "carbon sensor",
+ "processed",
+ "sensors",
+ "radon sensor scanning mobility",
+ "radiation",
+ "condensation particle",
+ "pulse",
+ "linking physics",
+ "information please refer",
+ "infrared",
+ "lidar minimpl micro",
+ "lidar minimpl",
+ "triaxus fisheries",
+ "sensor nephelometer atmospheric",
+ "rain sensors",
+ "maap ozone sensor",
+ "particles",
+ "voyage documentation links instruments",
+ "khz greenhouse gas",
+ "proton",
+ "processed data",
+ "portside",
+ "pir precision spectral pyranometer",
+ "lowered",
+ "counters cpc disdrometer radon",
+ "pressure wind",
+ "inps ozone sensor",
+ "micro pulse",
+ "took place between january",
+ "underwater",
+ "aethalometer mobility",
+ "radar expendable bathythermographs xbts",
+ "acsm water",
+ "sub",
+ "thermosalinographs tsg",
+ "atmospheric temperature humidity",
+ "access",
+ "rv",
+ "photosynthetically active",
+ "metal ctd rosette",
+ "sequential chemical analysis",
+ "current",
+ "measurements black carbon",
+ "positioning system usbl",
+ "optode",
+ "analysers picarro",
+ "temperature",
+ "photosynthetically active radiation par",
+ "measurements lowered",
+ "sensor scanning mobility particle",
+ "measurements",
+ "participants",
+ "drifters",
+ "reaction",
+ "stabilised",
+ "tof acsm",
+ "xbts voyage specific",
+ "counters cpc",
+ "bottles organic sulfur",
+ "micro rain radar mrr",
+ "bottom profiler",
+ "access voyage",
+ "trace metal aerosol",
+ "argo floats biogeochemical",
+ "nucleating particles inps",
+ "mobility particle size spectrometer",
+ "radiation par",
+ "available",
+ "ice",
+ "ion spectrometer nais proton",
+ "chemical analysis robot osscar",
+ "all processed data",
+ "basta fast repetition",
+ "photometer maap",
+ "hydrochemistry triaxus fisheries",
+ "chemical ionisation mass spectrometer",
+ "ncmi information",
+ "temperature humidity pressure",
+ "speciation monitor tof acsm",
+ "sulfur sequential chemical",
+ "voyage took place",
+ "idc",
+ "please",
+ "nais proton transfer reaction",
+ "proton transfer reaction mass",
+ "ocean",
+ "pumps isps ice nucleating",
+ "monitor tof acsm",
+ "khz",
+ "bathythermographs xbts voyage specific",
+ "support",
+ "data centre idc",
+ "miso linking physics",
+ "ccn condensation particle counters",
+ "ocean miso linking physics",
+ "sequential",
+ "mass",
+ "nuclei counter ccn",
+ "took place between",
+ "gas",
+ "radiosondes",
+ "lidar",
+ "transfer reaction mass",
+ "sensor precision",
+ "mass spectrometer cims cloud",
+ "organic",
+ "metal aerosol sampling trace",
+ "par sensor precision",
+ "mnf",
+ "par sensor precision infrared",
+ "lidar rman stabilised",
+ "organic sulfur sequential chemical",
+ "photometer",
+ "doppler current",
+ "ice nucleating",
+ "sensor trace",
+ "rain sensors photosynthetically active",
+ "cloud radar basta",
+ "near surface drifters",
+ "data access",
+ "fisheries",
+ "backscatter lidar",
+ "active radiation",
+ "ladcp acoustic",
+ "sampler ultra short baseline",
+ "made via data requests",
+ "all processed data from",
+ "photosynthetically",
+ "humidity pressure wind",
+ "minimpl micro",
+ "processors",
+ "specific measurements black",
+ "weather",
+ "between",
+ "further information please refer",
+ "various biological data",
+ "net chemical ionisation mass",
+ "linking",
+ "voyage eov data archive",
+ "ice nucleating particles",
+ "baseline",
+ "nephelometer atmospheric temperature humidity",
+ "sampler",
+ "speciation",
+ "physics biogeochemistry plankton",
+ "black carbon sensor aethalometer",
+ "baseline underwater positioning system",
+ "nuclei",
+ "access portal",
+ "requests",
+ "speciation monitor tof",
+ "ion spectrometer",
+ "aethalometer",
+ "all voyage",
+ "doppler current profiler",
+ "place",
+ "cloud radar",
+ "participants can",
+ "regular",
+ "include",
+ "situ",
+ "stabilised platform mercury",
+ "multidisciplinary investigations",
+ "voyage documentation links",
+ "mrr",
+ "mpss",
+ "ladcp acoustic doppler current",
+ "data requests hf",
+ "minimpl micro rain radar",
+ "counter ccn condensation particle",
+ "data",
+ "atmospheric temperature",
+ "departing from hobart",
+ "system doppler",
+ "black carbon",
+ "particle size spectrometer",
+ "hobart",
+ "particle counters cpc disdrometer",
+ "radar expendable",
+ "fast repetition rate chlorophyll",
+ "current profiler",
+ "argo floats near",
+ "aerosol chemical",
+ "short baseline",
+ "mobility particle size",
+ "from",
+ "miso linking physics biogeochemistry",
+ "rman",
+ "multidisciplinary",
+ "positioning system usbl weather",
+ "include regular measurements lowered",
+ "bottom",
+ "fluorometer",
+ "thermosalinographs tsg fluorometer",
+ "profiler",
+ "picarro cloud condensation nuclei",
+ "system usbl weather radar",
+ "documentation links instruments used",
+ "sampling trace metal ctd",
+ "system usbl",
+ "core",
+ "voyage all",
+ "water vapor",
+ "floats biogeochemical bgc",
+ "short baseline underwater positioning",
+ "aerosol sampling trace",
+ "expendable bathythermographs",
+ "mercury",
+ "rv investigator voyage",
+ "clouds",
+ "platform",
+ "network",
+ "ctd hydrochemistry triaxus fisheries",
+ "fast repetition",
+ "can",
+ "portside radiometers air sampler",
+ "trace",
+ "atmospheric",
+ "argo floats biogeochemical bgc",
+ "positioning system doppler",
+ "data collected include",
+ "mobility particle sizers",
+ "mrr neutral cluster",
+ "nephelometer",
+ "voyage specific measurements black",
+ "please refer",
+ "radar basta fast",
+ "platform mercury",
+ "southern ocean miso linking",
+ "sequential chemical analysis robot",
+ "providing access",
+ "took place",
+ "csiro data",
+ "pir precision spectral",
+ "spectral pyranometer psp starboard"
+ ],
+ "parameter_vocabs_sayt": [
+ "ocean biota",
+ "bathymetry",
+ "density",
+ "water pressure",
+ "current",
+ "temperature",
+ "salinity"
+ ],
+ "platform_vocabs_sayt": [
+ "research vessel"
+ ]
},
- "sci:citation" : "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"Access to the raw (not quality-controlled) voyage data is intended for the collectors and processors of the data obtained in the MNF RV Investigator voyage. Quality-controlled data products will be made available under a CCBY licence.\"]}",
- "type" : "Collection",
- "stac_version" : "1.0.0",
- "stac_extensions" : [ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", "https://stac-extensions.github.io/contacts/v0.1.1/schema.json", "https://stac-extensions.github.io/projection/v1.1.0/schema.json", "https://stac-extensions.github.io/language/v1.0.0/schema.json", "https://stac-extensions.github.io/themes/v1.0.0/schema.json", "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" ]
+ "sci:citation": "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"Access to the raw (not quality-controlled) voyage data is intended for the collectors and processors of the data obtained in the MNF RV Investigator voyage. Quality-controlled data products will be made available under a CCBY licence.\"]}",
+ "type": "Collection",
+ "stac_version": "1.0.0",
+ "stac_extensions": [
+ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/contacts/v0.1.1/schema.json",
+ "https://stac-extensions.github.io/projection/v1.1.0/schema.json",
+ "https://stac-extensions.github.io/language/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/themes/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
+ ]
}
diff --git a/indexer/src/test/resources/canned/sample7_stac.json b/indexer/src/test/resources/canned/sample7_stac.json
index dd5f3bb8..f1815d0b 100644
--- a/indexer/src/test/resources/canned/sample7_stac.json
+++ b/indexer/src/test/resources/canned/sample7_stac.json
@@ -58,7 +58,8 @@
"temporal" : [ {
"start" : "2021-09-30T14:00:00Z",
"end" : "2022-12-31T12:59:59Z"
- } ]
+ } ],
+ "centroid" : [ ]
},
"contacts" : [ {
"roles" : [ "principalInvestigator", "about" ],
diff --git a/indexer/src/test/resources/canned/sample7_stac_no_es.json b/indexer/src/test/resources/canned/sample7_stac_no_es.json
index dcc2947b..04cbcc38 100644
--- a/indexer/src/test/resources/canned/sample7_stac_no_es.json
+++ b/indexer/src/test/resources/canned/sample7_stac_no_es.json
@@ -184,12 +184,11 @@
],
"type": "GeometryCollection"
},
- "temporal": [
- {
- "start": "2021-09-30T14:00:00Z",
- "end": "2022-12-31T12:59:59Z"
- }
- ]
+ "temporal" : [ {
+ "start" : "2021-09-30T14:00:00Z",
+ "end" : "2022-12-31T12:59:59Z"
+ } ],
+ "centroid" : [ ]
},
"contacts": [
{
diff --git a/indexer/src/test/resources/canned/sample8_stac.json b/indexer/src/test/resources/canned/sample8_stac.json
index 11cb6e42..3e9da084 100644
--- a/indexer/src/test/resources/canned/sample8_stac.json
+++ b/indexer/src/test/resources/canned/sample8_stac.json
@@ -1,535 +1,798 @@
{
- "title" : "RV Investigator Voyage IN2019_V06 End of Voyage (EOV) Archive",
- "description" : "This record describes the End of Voyage (EOV) archive from the Marine National Facility (MNF) RV Investigator research voyage IN2019_V06, titled \"Tropical observations of atmospheric convection, biogenic emissions, ocean mixing, and processes generating intraseasonal SST variability.\" The voyage took place from Darwin (NT) to Darwin between October 19 and December 17, 2019 (AEST).\n\n For further information please refer to the voyage documentation links below.\n\n Instruments used and data collected include:\n Regular measurements:\n Acoustic Doppler Current Profiler (ADCP; 75, 150 KHz ), Lowered ADCP (LADCP), Disdrometer, Fisheries echosounder (EK60), Multibeam Echosounder (EM710, EM122), Sub-bottom Profiler (SBP120), Gravimeter, GPS Positioning System, Doppler Velocity Log, Atmospheric Temperature, Humidity, Pressure, Wind and Rain sensors, Photosynthetically Active Radiation (PAR) sensor, Precision Infrared Radiometer (PIR), Precision Spectral Pyranometer (PSP), Nephelometer, pCO2, Condensation Particle Counters (CPC), Cloud Condensation Nuclei counter (CCN), Multiangle Absorption Photometer (MAAP), Starboard and Portside Radiometers, Ozone sensors, Weather Radar, Greenhouse Gas Analysers (Aerodyne, Picarro), Infrared Sea Surface Temperature Autonomous Radiometer (ISAR), Fluorometer, Oxygen optode, Thermosalinographs (TSG), CTD, Hydrochemistry, Expendable Bathythermographs (XBTs).\n\n Voyage-specific measurements:\n AIRBOX (TSI 3772 Condensation Particle Counter (3772CPC), Black Carbon sensor (Aethalometer), Aerosol mass spectrometer (AMS), Chemical Ionisation Mass Spectrometer (CIMS), Cloud Radar (BASTA), Weather Station, Multi-AXis Differential Optical Absorption Spectrometer (MAX-DOAS), mini Micro-Pulse LIDAR (miniMPL), Neutral Cluster Air Ion Spectrometer (NAIS), Radon sensor, Cloud and Aerosol Backscatter Lidar (RMAN), Scanning Mobility Particle Sizers (SMPS), Sonic Anemometer, Greenhouse Gas Analyser (Fourier Transform Infrared (FTIR) spectrometer - Spectronus), Mercury Analyser (Tekran), Gas Chromatograph - Electron Capture Detector (uDirac), Volatility-Hygroscopicity Tandem Differential Mobility Analyser (VH-TDMA)), Radiosondes, Wave-powered Profiler (Wirewalker), Sea State cameras, Triaxus, ECO Triplet, Sound Velocity Profile (SVP).\n\n The archive for the IN2019_V06 EOV raw data is curated by the CSIRO NCMI Information and Data Centre (IDC) in Hobart, with a permanent archive at the CSIRO Data Access Portal (DAP, https://data.csiro.au/dap/), providing access to participants and processors of the data collected in the voyage.\n\n All voyage documentation is available electronically to MNF support via the local network. Access to voyage documentation for non-CSIRO participants can be made via NCMI_DataLibrarians@csiro.au.",
- "extent" : {
- "bbox" : [ [ 120.55, -14.68, 133.45, -10.8 ], [ 120.55, -14.68, 133.45, -10.8 ] ],
- "temporal" : [ [ "2019-10-18T13:00:00Z", "2019-12-17T12:59:59Z" ], [ "2019-10-18T13:00:00Z", "2019-12-17T12:59:59Z" ] ]
+ "title": "RV Investigator Voyage IN2019_V06 End of Voyage (EOV) Archive",
+ "description": "This record describes the End of Voyage (EOV) archive from the Marine National Facility (MNF) RV Investigator research voyage IN2019_V06, titled \"Tropical observations of atmospheric convection, biogenic emissions, ocean mixing, and processes generating intraseasonal SST variability.\" The voyage took place from Darwin (NT) to Darwin between October 19 and December 17, 2019 (AEST).\n\n For further information please refer to the voyage documentation links below.\n\n Instruments used and data collected include:\n Regular measurements:\n Acoustic Doppler Current Profiler (ADCP; 75, 150 KHz ), Lowered ADCP (LADCP), Disdrometer, Fisheries echosounder (EK60), Multibeam Echosounder (EM710, EM122), Sub-bottom Profiler (SBP120), Gravimeter, GPS Positioning System, Doppler Velocity Log, Atmospheric Temperature, Humidity, Pressure, Wind and Rain sensors, Photosynthetically Active Radiation (PAR) sensor, Precision Infrared Radiometer (PIR), Precision Spectral Pyranometer (PSP), Nephelometer, pCO2, Condensation Particle Counters (CPC), Cloud Condensation Nuclei counter (CCN), Multiangle Absorption Photometer (MAAP), Starboard and Portside Radiometers, Ozone sensors, Weather Radar, Greenhouse Gas Analysers (Aerodyne, Picarro), Infrared Sea Surface Temperature Autonomous Radiometer (ISAR), Fluorometer, Oxygen optode, Thermosalinographs (TSG), CTD, Hydrochemistry, Expendable Bathythermographs (XBTs).\n\n Voyage-specific measurements:\n AIRBOX (TSI 3772 Condensation Particle Counter (3772CPC), Black Carbon sensor (Aethalometer), Aerosol mass spectrometer (AMS), Chemical Ionisation Mass Spectrometer (CIMS), Cloud Radar (BASTA), Weather Station, Multi-AXis Differential Optical Absorption Spectrometer (MAX-DOAS), mini Micro-Pulse LIDAR (miniMPL), Neutral Cluster Air Ion Spectrometer (NAIS), Radon sensor, Cloud and Aerosol Backscatter Lidar (RMAN), Scanning Mobility Particle Sizers (SMPS), Sonic Anemometer, Greenhouse Gas Analyser (Fourier Transform Infrared (FTIR) spectrometer - Spectronus), Mercury Analyser (Tekran), Gas Chromatograph - Electron Capture Detector (uDirac), Volatility-Hygroscopicity Tandem Differential Mobility Analyser (VH-TDMA)), Radiosondes, Wave-powered Profiler (Wirewalker), Sea State cameras, Triaxus, ECO Triplet, Sound Velocity Profile (SVP).\n\n The archive for the IN2019_V06 EOV raw data is curated by the CSIRO NCMI Information and Data Centre (IDC) in Hobart, with a permanent archive at the CSIRO Data Access Portal (DAP, https://data.csiro.au/dap/), providing access to participants and processors of the data collected in the voyage.\n\n All voyage documentation is available electronically to MNF support via the local network. Access to voyage documentation for non-CSIRO participants can be made via NCMI_DataLibrarians@csiro.au.",
+ "extent": {
+ "bbox": [
+ [
+ 120.55,
+ -14.68,
+ 133.45,
+ -10.8
+ ],
+ [
+ 120.55,
+ -14.68,
+ 133.45,
+ -10.8
+ ]
+ ],
+ "temporal": [
+ [
+ "2019-10-18T13:00:00Z",
+ "2019-12-17T12:59:59Z"
+ ],
+ [
+ "2019-10-18T13:00:00Z",
+ "2019-12-17T12:59:59Z"
+ ]
+ ]
},
- "summaries" : {
- "score" : 1,
- "status" : "completed",
- "credits" : [ "This data was collected on the Marine National Facility (MNF) RV Investigator voyage IN2019_V06." ],
- "scope" : {
- "code" : "observed",
- "name" : ""
+ "summaries": {
+ "score": 1,
+ "status": "completed",
+ "credits": [
+ "This data was collected on the Marine National Facility (MNF) RV Investigator voyage IN2019_V06."
+ ],
+ "scope": {
+ "code": "observed",
+ "name": ""
},
- "statement" : "Original field data. The raw EOV data archive was transferred to the NCMI IDC in Hobart.\n\n A manifest file for the final archive was generated (in2019_v06_manifest_1.0_rawVoyage_cs.txt).\n\n Available paper documents are scanned to 400 dpi PDF and stored at the IDC record storage system. ELOG files are generated as csv-formatted files and archived.",
- "creation" : "2015-10-06T00:00:00",
- "revision" : "2022-03-04T00:18:20",
- "update_frequency" : "completed",
- "proj:geometry" : {
- "geometries" : [ {
- "type" : "Polygon",
- "coordinates" : [ [ [ 120.55, -14.68 ], [ 133.45, -14.68 ], [ 133.45, -10.8 ], [ 120.55, -10.8 ], [ 120.55, -14.68 ] ] ]
- } ],
- "type" : "GeometryCollection"
+ "statement": "Original field data. The raw EOV data archive was transferred to the NCMI IDC in Hobart.\n\n A manifest file for the final archive was generated (in2019_v06_manifest_1.0_rawVoyage_cs.txt).\n\n Available paper documents are scanned to 400 dpi PDF and stored at the IDC record storage system. ELOG files are generated as csv-formatted files and archived.",
+ "creation": "2015-10-06T00:00:00",
+ "revision": "2022-03-04T00:18:20",
+ "update_frequency": "completed",
+ "proj:geometry": {
+ "geometries": [
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 120.55,
+ -14.68
+ ],
+ [
+ 133.45,
+ -14.68
+ ],
+ [
+ 133.45,
+ -10.8
+ ],
+ [
+ 120.55,
+ -10.8
+ ],
+ [
+ 120.55,
+ -14.68
+ ]
+ ]
+ ]
+ }
+ ],
+ "type": "GeometryCollection"
},
- "temporal" : [ {
- "start" : "2019-10-18T13:00:00Z",
- "end" : "2019-12-17T12:59:59Z"
- } ]
+ "temporal": [
+ {
+ "start": "2019-10-18T13:00:00Z",
+ "end": "2019-12-17T12:59:59Z"
+ }
+ ],
+ "centroid": [
+ [
+ 125.303,
+ -12.639
+ ],
+ [
+ 131.893,
+ -11.486
+ ]
+ ]
},
- "contacts" : [ {
- "roles" : [ "pointOfContact", "about" ],
- "organization" : "CSIRO Oceans & Atmosphere - Hobart",
- "name" : "CSIRO O&A, Information & Data Centre",
- "position" : "Data Requests",
- "emails" : [ ],
- "addresses" : [ {
- "deliveryPoint" : [ "GPO Box 1538" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "TAS"
- }, {
- "deliveryPoint" : [ "Castray Esplanade" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7000",
- "administrativeArea" : "TAS"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "+61 3 6232 5222"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "+61 3 6232 5000"
- } ],
- "links" : [ {
- "href" : "http://www.csiro.au/en/Research/OandA",
- "type" : "WWW:LINK-1.0-http--link"
- } ]
- }, {
- "roles" : [ "processor", "metadata" ],
- "organization" : "CSIRO/Oceans and Atmosphere",
- "name" : "Data Officer (AR), Hobart",
- "position" : "",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- }, {
- "roles" : [ "pointOfContact", "metadata" ],
- "organization" : "CSIRO Oceans & Atmosphere - Hobart",
- "name" : "CSIRO O&A, Information & Data Centre",
- "position" : "Data Requests",
- "emails" : [ ],
- "addresses" : [ {
- "deliveryPoint" : [ "GPO Box 1538" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7001",
- "administrativeArea" : "TAS"
- }, {
- "deliveryPoint" : [ "Castray Esplanade" ],
- "city" : "Hobart",
- "country" : "Australia",
- "postalCode" : "7000",
- "administrativeArea" : "TAS"
- } ],
- "phones" : [ {
- "roles" : [ "voice" ],
- "value" : "+61 3 6232 5222"
- }, {
- "roles" : [ "facsimile" ],
- "value" : "+61 3 6232 5000"
- } ],
- "links" : [ {
- "href" : "http://www.csiro.au/en/Research/OandA",
- "type" : "WWW:LINK-1.0-http--link"
- } ]
- }, {
- "roles" : [ "originator", "metadata" ],
- "organization" : "CSIRO",
- "name" : "Roubicek, Andres",
- "position" : "",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- } ],
- "languages" : [ {
- "code" : "eng",
- "name" : "English"
- } ],
- "links" : [ {
- "href" : "https://www.marine.csiro.au/data/trawler/survey_details.cfm?survey=IN2019_V06",
- "rel" : "related",
- "type" : "",
- "title" : "Investigator Survey"
- }, {
- "href" : "https://www.marine.csiro.au/data/underway/?survey=in2019_v06",
- "rel" : "related",
- "type" : "",
- "title" : "Underway Visualisation Tool"
- }, {
- "href" : "https://doi.org/10.25919/fxwd-kw74",
- "rel" : "related",
- "type" : "",
- "title" : "Data Access Portal (DOI)"
- }, {
- "href" : "https://ws.data.csiro.au/licences/1061",
- "rel" : "related",
- "type" : "text/html",
- "title" : "Data Licensing"
- }, {
- "href" : "https://mnf.csiro.au/",
- "rel" : "related",
- "type" : "text/html",
- "title" : "Marine National Facility"
- }, {
- "href" : "https://marlin.csiro.au/geonetwork/srv/eng/catalog.search#/metadata/1880cd63-d0f9-42e0-b073-7082527945f2",
- "rel" : "describedby",
- "type" : "text/html",
- "title" : "Full metadata link"
- }, {
- "href" : "https://i.creativecommons.org/l/by/4.0/88x31.png",
- "rel" : "license",
- "type" : "image/png"
- }, {
- "href" : "https://creativecommons.org/licenses/by/4.0/",
- "rel" : "license",
- "type" : "text/html"
- } ],
- "license" : "Attribution 4.0",
- "providers" : [ {
- "name" : "CSIRO/Oceans and Atmosphere",
- "roles" : [ "processor" ]
- }, {
- "name" : "CSIRO Oceans & Atmosphere - Hobart",
- "roles" : [ "pointOfContact" ]
- }, {
- "name" : "CSIRO",
- "roles" : [ "originator" ]
- } ],
- "themes" : [ {
- "concepts" : [ {
- "id" : "Earth Science | Oceans | Salinity/Density | Salinity",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/7e95b5fc-1d58-431a-af36-948b29fa870d"
- }, {
- "id" : "Earth Science | Atmosphere | Aerosols",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/2e5a401b-1507-4f57-82b8-36557c13b154"
- }, {
- "id" : "Earth Science | Oceans | Ocean Temperature | Sea Surface Temperature",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/bd24a9a9-7d52-4c29-b2a0-6cefd216ae78"
- }, {
- "id" : "Earth Science | Atmosphere | Aerosols | Aerosol Particle Properties",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/02ea239e-4bca-4fda-ab87-be12c723c30a"
- }, {
- "id" : "Earth Science | Oceans | Ocean Circulation | Ocean Currents",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/510c5f78-e19e-4ce4-b59a-8937aeb84631"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Pressure | Surface Pressure",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b54de5cd-4475-4c7b-acbc-4eb529b9396e"
- }, {
- "id" : "Earth Science | Oceans | Bathymetry/Seafloor Topography | Seafloor Topography",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b6b51058-1111-4498-a9ac-e1515270fb27"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Chemistry | Carbon And Hydrocarbon Compounds | Carbon Dioxide",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/c3b81888-8a39-4b3f-8033-4c077797bcba"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Temperature | Surface Air Temperature",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/5a7bb095-4d12-4232-bc75-b8e82197cb92"
- }, {
- "id" : "Earth Science | Atmosphere | Aerosols | Cloud Condensation Nuclei",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/27478148-b4b6-4c89-8829-08d2ee7bfe10"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Pressure | Atmospheric Pressure Measurements",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/9efbc088-ba8c-4c9c-a458-ad6ad63f4188"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Radiation",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/4ad0c52d-6449-48ff-8678-adc6b2cebcb7"
- }, {
- "id" : "Earth Science | Solid Earth | Gravity/Gravitational Field",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/221386f6-ef9b-4990-82b3-f990b0fe39fa"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/10685919-bc01-43e7-901a-b62ac44627f3"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds | Wind Speed/Wind Direction",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a92f49f3-e2ee-4ef4-b064-39311ffb95d3"
- }, {
- "id" : "Earth Science | Oceans | Ocean Chemistry | Nutrients",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/8dd7c9f0-51d0-4037-b1d0-a2517c1770ad"
- }, {
- "id" : "Earth Science | Atmosphere | Clouds",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/162e2243-3266-4999-b352-d8a1a9dc82ac"
- }, {
- "id" : "Earth Science | Oceans | Ocean Waves | Sea State",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/11aca777-8a01-42ce-b076-b3059c3d8cae"
- }, {
- "id" : "Earth Science | Oceans | Ocean Chemistry | Carbon Dioxide",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/26afa886-4866-4536-be3a-6f9db9aacd97"
- }, {
- "id" : "Earth Science Services | Data Analysis And Visualization | Global Positioning Systems",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/f082ad51-4ce4-4ffe-be50-6753c4f997ae"
- }, {
- "id" : "Earth Science | Oceans | Ocean Optics | Photosynthetically Active Radiation",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b7410899-350a-4443-9430-c7fe1fa3a499"
- }, {
- "id" : "Earth Science | Oceans | Ocean Chemistry | Oxygen",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/90aa8838-79bd-4b28-b518-8217e863c385"
- }, {
- "id" : "Earth Science | Atmosphere | Precipitation | Rain",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/09a57dc7-3911-4a65-9f12-b819652b8671"
- }, {
- "id" : "Earth Science | Agriculture | Agricultural Aquatic Sciences | Fisheries",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/c7112a64-be39-414a-9125-f63ab44ecb5b"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Chemistry | Oxygen Compounds | Ozone",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/dd316647-9043-40c3-9329-f22f9215fefa"
- }, {
- "id" : "Earth Science | Atmosphere | Aerosols | Particulate Matter",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/548a3f85-bf22-473b-b641-45c32d9c6a0c"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Radiation | Solar Radiation",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a0f3474e-9a54-4a82-97c4-43864b48df4c"
- } ],
- "scheme" : "theme",
- "description" : "",
- "title" : "GCMD Keywords"
- }, {
- "concepts" : [ {
- "id" : "Research Voyage: IN2019_V06",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.survey.urn:marlin.csiro.au:surveyregister&id=urn:marlin.csiro.au:surveyregister:concept:2228"
- } ],
- "scheme" : "survey",
- "description" : "",
- "title" : "CSIRO Survey List"
- }, {
- "concepts" : [ {
- "id" : "Ship: Investigator (RV)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.dataSource.urn:marlin.csiro.au:sourceregister&id=urn:marlin.csiro.au:sourceregister:concept:309"
- } ],
- "scheme" : "dataSource",
- "description" : "",
- "title" : "CSIRO Source List"
- }, {
- "concepts" : [ {
- "id" : "Tropical observations of atmospheric convection, biogenic emissions, ocean mixing, and processes generating intraseasonal SST variability",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.project.urn:marlin.csiro.au:projectregister&id=urn:marlin.csiro.au:projectregister:concept:2485"
- }, {
- "id" : "RBR Argo CTD testing",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.project.urn:marlin.csiro.au:projectregister&id=urn:marlin.csiro.au:projectregister:concept:2486"
- } ],
- "scheme" : "project",
- "description" : "",
- "title" : "CSIRO Project List"
- }, {
- "concepts" : [ {
- "id" : "Coastal Waters (Australia) | Northern Territory Coast, NT",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1003"
- }, {
- "id" : "Regional Seas | Timor Sea",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:24"
- }, {
- "id" : "Global / Oceans | East Indian Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1020"
- } ],
- "scheme" : "place",
- "description" : "",
- "title" : "AODN Geographic Extent Names"
- }, {
- "concepts" : [ {
- "id" : "Vessel Data: Multibeam Echosounder",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3521"
- }, {
- "id" : "Vessel Data: ADCP",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3510"
- }, {
- "id" : "Vessel Data: XBT",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3515"
- }, {
- "id" : "Vessel Data: undulating CTD",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3522"
- }, {
- "id" : "Vessel/Station Data: Hydrology",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3513"
- }, {
- "id" : "Vessel Data: Dissolved Oxygen",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3512"
- }, {
- "id" : "Vessel Data: Underway",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3514"
- }, {
- "id" : "Vessel Data: Acoustics (Fisheries)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3520"
- }, {
- "id" : "Vessel Data: CTD",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3511"
- } ],
- "scheme" : "discipline",
- "description" : "",
- "title" : "CSIRO Standard Data Types"
- }, {
- "concepts" : [ {
- "id" : "ADCP (Acoustic Doppler Current Profiler)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:2"
- }, {
- "id" : "LADCP (Lowered Acoustic Doppler Current Profiler)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:139"
- }, {
- "id" : "CCN (Cloud Condensation Nuclei Counter)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:127"
- }, {
- "id" : "Greenhouse gas analyser - Aerodyne",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:176"
- }, {
- "id" : "CPC (Condensation Particle Counters)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:126"
- }, {
- "id" : "SMPS (Scanning Mobility Particle Sizers)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:128"
- }, {
- "id" : "Greenhouse gas analyser - Picarro",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:177"
- }, {
- "id" : "Radon Detector",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:172"
- }, {
- "id" : "CTDs (Conductivity-Temperature-Depth Profilers)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:33"
- }, {
- "id" : "Gravity meters",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:168"
- }, {
- "id" : "Disdrometer (Rain Droplet Particle Sizer)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:160"
- }, {
- "id" : "Sub-bottom Profiler - SBP120",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:164"
- }, {
- "id" : "Fisheries echosounder EK60",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:141"
- }, {
- "id" : "Multibeam Echosounder - EM122",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:144"
- }, {
- "id" : "CO2 Analysers",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:17"
- }, {
- "id" : "Multibeam Echosounder - EM710",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:142"
- }, {
- "id" : "Fluorometers",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:47"
- }, {
- "id" : "Undulating CTD - Triaxus",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:174"
- }, {
- "id" : "MAAP (Multiangle Absorption Photometer)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:180"
- }, {
- "id" : "GPS (Global Positioning System)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:167"
- }, {
- "id" : "Thermosalinographs",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:101"
- }, {
- "id" : "Air sampling systems",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:179"
- }, {
- "id" : "Weather Radars",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:162"
- }, {
- "id" : "Radiometer",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:171"
- }, {
- "id" : "XBTs (Expendable Bathythermographs)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:21"
- }, {
- "id" : "Meteorological Instruments",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:61"
- }, {
- "id" : "Ozone monitor",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:178"
- }, {
- "id" : "Nephelometers",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:125"
- }, {
- "id" : "Cloud Radars",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:161"
- }, {
- "id" : "Mass Spectrometers",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:59"
- }, {
- "id" : "DMA (Differential Mobility Analyser)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:132"
- }, {
- "id" : "LIDAR Altimeter",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:56"
- } ],
- "scheme" : "equipment",
- "description" : "",
- "title" : "CSIRO Equipment"
- }, {
- "concepts" : [ {
- "id" : "Marine National Facility",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:cmarAOI&id=urn:marlin.csiro.au:keywords:cmarAOI:concept:3208"
- } ],
- "scheme" : "discipline",
- "description" : "",
- "title" : "CSIRO Areas Of Interest"
- }, {
- "concepts" : [ {
- "id" : "Current direction in the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/LCDAZZ01"
- }, {
- "id" : "Current speed in the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/383"
- }, {
- "id" : "Eastward current velocity in the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/LCEWZZ01"
- }, {
- "id" : "Northward current velocity in the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/LCNSZZ01"
- }, {
- "id" : "Upward current velocity in the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/LRZAZZZZ"
- }, {
- "id" : "Practical salinity of the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/PSLTZZ01"
- }, {
- "id" : "Temperature of the water body",
- "url" : "http://vocab.nerc.ac.uk/collection/P01/current/TEMPPR01"
- }, {
- "id" : "Pressure (measured variable) in the water body exerted by overlying sea water and any medium above it",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/565"
- }, {
- "id" : "Pressure (measured variable) in the water body exerted by overlying sea water only",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/566"
- }, {
- "id" : "Gravity",
- "url" : "http://vocab.ndg.nerc.ac.uk/term/P011/667/GRAVFLDX"
- }, {
- "id" : "Sub-bottom structure",
- "url" : "N/A"
- }, {
- "id" : "Abundance of biota",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/488"
- }, {
- "id" : "Biovolume",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/22"
- }, {
- "id" : "Sea-floor depth below surface of the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/574"
- }, {
- "id" : "Sea-floor surface hardness",
- "url" : "N/A"
- }, {
- "id" : "Density of the water body",
- "url" : "http://vocab.aodn.org.au/def/discovery_parameter/entity/401"
- } ],
- "scheme" : "",
- "description" : "",
- "title" : ""
- }, {
- "concepts" : [ {
- "id" : "research vessel",
- "url" : "http://vocab.nerc.ac.uk/collection/L06/current/31"
- } ],
- "scheme" : "",
- "description" : "",
- "title" : ""
- }, {
- "concepts" : [ {
- "id" : "current profilers",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/115"
- }, {
- "id" : "lowered current profilers",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/116/"
- }, {
- "id" : "CTD",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/130"
- }, {
- "id" : "gravimeters",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/158/"
- }, {
- "id" : "2000 Hz top-bandwidth sub-bottom penetrator and mud profiler systems",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/367/"
- }, {
- "id" : "Fish-finder echosounders",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/FFES"
- }, {
- "id" : "multi-beam echosounders",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/157"
- }, {
- "id" : "thermosalinographs",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/133"
- }, {
- "id" : "bathythermographs",
- "url" : "http://vocab.nerc.ac.uk/collection/L05/current/132"
- } ],
- "scheme" : "",
- "description" : "",
- "title" : ""
- } ],
- "id" : "1880cd63-d0f9-42e0-b073-7082527945f2",
- "search_suggestions" : {
- "abstract_phrases" : [ ]
+ "contacts": [
+ {
+ "roles": [
+ "pointOfContact",
+ "about"
+ ],
+ "organization": "CSIRO Oceans & Atmosphere - Hobart",
+ "name": "CSIRO O&A, Information & Data Centre",
+ "position": "Data Requests",
+ "emails": [],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "GPO Box 1538"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "TAS"
+ },
+ {
+ "deliveryPoint": [
+ "Castray Esplanade"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7000",
+ "administrativeArea": "TAS"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "+61 3 6232 5222"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "+61 3 6232 5000"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://www.csiro.au/en/Research/OandA",
+ "type": "WWW:LINK-1.0-http--link"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "processor",
+ "metadata"
+ ],
+ "organization": "CSIRO/Oceans and Atmosphere",
+ "name": "Data Officer (AR), Hobart",
+ "position": "",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ },
+ {
+ "roles": [
+ "pointOfContact",
+ "metadata"
+ ],
+ "organization": "CSIRO Oceans & Atmosphere - Hobart",
+ "name": "CSIRO O&A, Information & Data Centre",
+ "position": "Data Requests",
+ "emails": [],
+ "addresses": [
+ {
+ "deliveryPoint": [
+ "GPO Box 1538"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7001",
+ "administrativeArea": "TAS"
+ },
+ {
+ "deliveryPoint": [
+ "Castray Esplanade"
+ ],
+ "city": "Hobart",
+ "country": "Australia",
+ "postalCode": "7000",
+ "administrativeArea": "TAS"
+ }
+ ],
+ "phones": [
+ {
+ "roles": [
+ "voice"
+ ],
+ "value": "+61 3 6232 5222"
+ },
+ {
+ "roles": [
+ "facsimile"
+ ],
+ "value": "+61 3 6232 5000"
+ }
+ ],
+ "links": [
+ {
+ "href": "http://www.csiro.au/en/Research/OandA",
+ "type": "WWW:LINK-1.0-http--link"
+ }
+ ]
+ },
+ {
+ "roles": [
+ "originator",
+ "metadata"
+ ],
+ "organization": "CSIRO",
+ "name": "Roubicek, Andres",
+ "position": "",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ }
+ ],
+ "languages": [
+ {
+ "code": "eng",
+ "name": "English"
+ }
+ ],
+ "links": [
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/survey_details.cfm?survey=IN2019_V06",
+ "rel": "related",
+ "type": "",
+ "title": "Investigator Survey"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/underway/?survey=in2019_v06",
+ "rel": "related",
+ "type": "",
+ "title": "Underway Visualisation Tool"
+ },
+ {
+ "href": "https://doi.org/10.25919/fxwd-kw74",
+ "rel": "related",
+ "type": "",
+ "title": "Data Access Portal (DOI)"
+ },
+ {
+ "href": "https://ws.data.csiro.au/licences/1061",
+ "rel": "related",
+ "type": "text/html",
+ "title": "Data Licensing"
+ },
+ {
+ "href": "https://mnf.csiro.au/",
+ "rel": "related",
+ "type": "text/html",
+ "title": "Marine National Facility"
+ },
+ {
+ "href": "https://marlin.csiro.au/geonetwork/srv/eng/catalog.search#/metadata/1880cd63-d0f9-42e0-b073-7082527945f2",
+ "rel": "describedby",
+ "type": "text/html",
+ "title": "Full metadata link"
+ },
+ {
+ "href": "https://i.creativecommons.org/l/by/4.0/88x31.png",
+ "rel": "license",
+ "type": "image/png"
+ },
+ {
+ "href": "https://creativecommons.org/licenses/by/4.0/",
+ "rel": "license",
+ "type": "text/html"
+ }
+ ],
+ "license": "Attribution 4.0",
+ "providers": [
+ {
+ "name": "CSIRO/Oceans and Atmosphere",
+ "roles": [
+ "processor"
+ ]
+ },
+ {
+ "name": "CSIRO Oceans & Atmosphere - Hobart",
+ "roles": [
+ "pointOfContact"
+ ]
+ },
+ {
+ "name": "CSIRO",
+ "roles": [
+ "originator"
+ ]
+ }
+ ],
+ "themes": [
+ {
+ "concepts": [
+ {
+ "id": "Earth Science | Oceans | Salinity/Density | Salinity",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/7e95b5fc-1d58-431a-af36-948b29fa870d"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Aerosols",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/2e5a401b-1507-4f57-82b8-36557c13b154"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Temperature | Sea Surface Temperature",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/bd24a9a9-7d52-4c29-b2a0-6cefd216ae78"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Aerosols | Aerosol Particle Properties",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/02ea239e-4bca-4fda-ab87-be12c723c30a"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Circulation | Ocean Currents",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/510c5f78-e19e-4ce4-b59a-8937aeb84631"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Pressure | Surface Pressure",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b54de5cd-4475-4c7b-acbc-4eb529b9396e"
+ },
+ {
+ "id": "Earth Science | Oceans | Bathymetry/Seafloor Topography | Seafloor Topography",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b6b51058-1111-4498-a9ac-e1515270fb27"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Chemistry | Carbon And Hydrocarbon Compounds | Carbon Dioxide",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/c3b81888-8a39-4b3f-8033-4c077797bcba"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Temperature | Surface Air Temperature",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/5a7bb095-4d12-4232-bc75-b8e82197cb92"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Aerosols | Cloud Condensation Nuclei",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/27478148-b4b6-4c89-8829-08d2ee7bfe10"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Pressure | Atmospheric Pressure Measurements",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/9efbc088-ba8c-4c9c-a458-ad6ad63f4188"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Radiation",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/4ad0c52d-6449-48ff-8678-adc6b2cebcb7"
+ },
+ {
+ "id": "Earth Science | Solid Earth | Gravity/Gravitational Field",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/221386f6-ef9b-4990-82b3-f990b0fe39fa"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/10685919-bc01-43e7-901a-b62ac44627f3"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds | Wind Speed/Wind Direction",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a92f49f3-e2ee-4ef4-b064-39311ffb95d3"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Chemistry | Nutrients",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/8dd7c9f0-51d0-4037-b1d0-a2517c1770ad"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Clouds",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/162e2243-3266-4999-b352-d8a1a9dc82ac"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Waves | Sea State",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/11aca777-8a01-42ce-b076-b3059c3d8cae"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Chemistry | Carbon Dioxide",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/26afa886-4866-4536-be3a-6f9db9aacd97"
+ },
+ {
+ "id": "Earth Science Services | Data Analysis And Visualization | Global Positioning Systems",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/f082ad51-4ce4-4ffe-be50-6753c4f997ae"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Optics | Photosynthetically Active Radiation",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/b7410899-350a-4443-9430-c7fe1fa3a499"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Chemistry | Oxygen",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/90aa8838-79bd-4b28-b518-8217e863c385"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Precipitation | Rain",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/09a57dc7-3911-4a65-9f12-b819652b8671"
+ },
+ {
+ "id": "Earth Science | Agriculture | Agricultural Aquatic Sciences | Fisheries",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/c7112a64-be39-414a-9125-f63ab44ecb5b"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Chemistry | Oxygen Compounds | Ozone",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/dd316647-9043-40c3-9329-f22f9215fefa"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Aerosols | Particulate Matter",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/548a3f85-bf22-473b-b641-45c32d9c6a0c"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Radiation | Solar Radiation",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a0f3474e-9a54-4a82-97c4-43864b48df4c"
+ }
+ ],
+ "scheme": "theme",
+ "description": "",
+ "title": "GCMD Keywords"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Research Voyage: IN2019_V06",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.survey.urn:marlin.csiro.au:surveyregister&id=urn:marlin.csiro.au:surveyregister:concept:2228"
+ }
+ ],
+ "scheme": "survey",
+ "description": "",
+ "title": "CSIRO Survey List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Ship: Investigator (RV)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.dataSource.urn:marlin.csiro.au:sourceregister&id=urn:marlin.csiro.au:sourceregister:concept:309"
+ }
+ ],
+ "scheme": "dataSource",
+ "description": "",
+ "title": "CSIRO Source List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Tropical observations of atmospheric convection, biogenic emissions, ocean mixing, and processes generating intraseasonal SST variability",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.project.urn:marlin.csiro.au:projectregister&id=urn:marlin.csiro.au:projectregister:concept:2485"
+ },
+ {
+ "id": "RBR Argo CTD testing",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.project.urn:marlin.csiro.au:projectregister&id=urn:marlin.csiro.au:projectregister:concept:2486"
+ }
+ ],
+ "scheme": "project",
+ "description": "",
+ "title": "CSIRO Project List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Coastal Waters (Australia) | Northern Territory Coast, NT",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1003"
+ },
+ {
+ "id": "Regional Seas | Timor Sea",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:24"
+ },
+ {
+ "id": "Global / Oceans | East Indian Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1020"
+ }
+ ],
+ "scheme": "place",
+ "description": "",
+ "title": "AODN Geographic Extent Names"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Vessel Data: Multibeam Echosounder",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3521"
+ },
+ {
+ "id": "Vessel Data: ADCP",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3510"
+ },
+ {
+ "id": "Vessel Data: XBT",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3515"
+ },
+ {
+ "id": "Vessel Data: undulating CTD",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3522"
+ },
+ {
+ "id": "Vessel/Station Data: Hydrology",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3513"
+ },
+ {
+ "id": "Vessel Data: Dissolved Oxygen",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3512"
+ },
+ {
+ "id": "Vessel Data: Underway",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3514"
+ },
+ {
+ "id": "Vessel Data: Acoustics (Fisheries)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3520"
+ },
+ {
+ "id": "Vessel Data: CTD",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3511"
+ }
+ ],
+ "scheme": "discipline",
+ "description": "",
+ "title": "CSIRO Standard Data Types"
+ },
+ {
+ "concepts": [
+ {
+ "id": "ADCP (Acoustic Doppler Current Profiler)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:2"
+ },
+ {
+ "id": "LADCP (Lowered Acoustic Doppler Current Profiler)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:139"
+ },
+ {
+ "id": "CCN (Cloud Condensation Nuclei Counter)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:127"
+ },
+ {
+ "id": "Greenhouse gas analyser - Aerodyne",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:176"
+ },
+ {
+ "id": "CPC (Condensation Particle Counters)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:126"
+ },
+ {
+ "id": "SMPS (Scanning Mobility Particle Sizers)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:128"
+ },
+ {
+ "id": "Greenhouse gas analyser - Picarro",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:177"
+ },
+ {
+ "id": "Radon Detector",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:172"
+ },
+ {
+ "id": "CTDs (Conductivity-Temperature-Depth Profilers)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:33"
+ },
+ {
+ "id": "Gravity meters",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:168"
+ },
+ {
+ "id": "Disdrometer (Rain Droplet Particle Sizer)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:160"
+ },
+ {
+ "id": "Sub-bottom Profiler - SBP120",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:164"
+ },
+ {
+ "id": "Fisheries echosounder EK60",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:141"
+ },
+ {
+ "id": "Multibeam Echosounder - EM122",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:144"
+ },
+ {
+ "id": "CO2 Analysers",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:17"
+ },
+ {
+ "id": "Multibeam Echosounder - EM710",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:142"
+ },
+ {
+ "id": "Fluorometers",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:47"
+ },
+ {
+ "id": "Undulating CTD - Triaxus",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:174"
+ },
+ {
+ "id": "MAAP (Multiangle Absorption Photometer)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:180"
+ },
+ {
+ "id": "GPS (Global Positioning System)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:167"
+ },
+ {
+ "id": "Thermosalinographs",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:101"
+ },
+ {
+ "id": "Air sampling systems",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:179"
+ },
+ {
+ "id": "Weather Radars",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:162"
+ },
+ {
+ "id": "Radiometer",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:171"
+ },
+ {
+ "id": "XBTs (Expendable Bathythermographs)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:21"
+ },
+ {
+ "id": "Meteorological Instruments",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:61"
+ },
+ {
+ "id": "Ozone monitor",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:178"
+ },
+ {
+ "id": "Nephelometers",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:125"
+ },
+ {
+ "id": "Cloud Radars",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:161"
+ },
+ {
+ "id": "Mass Spectrometers",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:59"
+ },
+ {
+ "id": "DMA (Differential Mobility Analyser)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:132"
+ },
+ {
+ "id": "LIDAR Altimeter",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:Equipment&id=urn:marlin.csiro.au:Equipment:concept:56"
+ }
+ ],
+ "scheme": "equipment",
+ "description": "",
+ "title": "CSIRO Equipment"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Marine National Facility",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:cmarAOI&id=urn:marlin.csiro.au:keywords:cmarAOI:concept:3208"
+ }
+ ],
+ "scheme": "discipline",
+ "description": "",
+ "title": "CSIRO Areas Of Interest"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Current direction in the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/LCDAZZ01"
+ },
+ {
+ "id": "Current speed in the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/383"
+ },
+ {
+ "id": "Eastward current velocity in the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/LCEWZZ01"
+ },
+ {
+ "id": "Northward current velocity in the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/LCNSZZ01"
+ },
+ {
+ "id": "Upward current velocity in the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/LRZAZZZZ"
+ },
+ {
+ "id": "Practical salinity of the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/PSLTZZ01"
+ },
+ {
+ "id": "Temperature of the water body",
+ "url": "http://vocab.nerc.ac.uk/collection/P01/current/TEMPPR01"
+ },
+ {
+ "id": "Pressure (measured variable) in the water body exerted by overlying sea water and any medium above it",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/565"
+ },
+ {
+ "id": "Pressure (measured variable) in the water body exerted by overlying sea water only",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/566"
+ },
+ {
+ "id": "Gravity",
+ "url": "http://vocab.ndg.nerc.ac.uk/term/P011/667/GRAVFLDX"
+ },
+ {
+ "id": "Sub-bottom structure",
+ "url": "N/A"
+ },
+ {
+ "id": "Abundance of biota",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/488"
+ },
+ {
+ "id": "Biovolume",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/22"
+ },
+ {
+ "id": "Sea-floor depth below surface of the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/574"
+ },
+ {
+ "id": "Sea-floor surface hardness",
+ "url": "N/A"
+ },
+ {
+ "id": "Density of the water body",
+ "url": "http://vocab.aodn.org.au/def/discovery_parameter/entity/401"
+ }
+ ],
+ "scheme": "",
+ "description": "",
+ "title": ""
+ },
+ {
+ "concepts": [
+ {
+ "id": "research vessel",
+ "url": "http://vocab.nerc.ac.uk/collection/L06/current/31"
+ }
+ ],
+ "scheme": "",
+ "description": "",
+ "title": ""
+ },
+ {
+ "concepts": [
+ {
+ "id": "current profilers",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/115"
+ },
+ {
+ "id": "lowered current profilers",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/116/"
+ },
+ {
+ "id": "CTD",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/130"
+ },
+ {
+ "id": "gravimeters",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/158/"
+ },
+ {
+ "id": "2000 Hz top-bandwidth sub-bottom penetrator and mud profiler systems",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/367/"
+ },
+ {
+ "id": "Fish-finder echosounders",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/FFES"
+ },
+ {
+ "id": "multi-beam echosounders",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/157"
+ },
+ {
+ "id": "thermosalinographs",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/133"
+ },
+ {
+ "id": "bathythermographs",
+ "url": "http://vocab.nerc.ac.uk/collection/L05/current/132"
+ }
+ ],
+ "scheme": "",
+ "description": "",
+ "title": ""
+ }
+ ],
+ "id": "1880cd63-d0f9-42e0-b073-7082527945f2",
+ "search_suggestions": {
+ "abstract_phrases": []
},
- "sci:citation" : "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"Access to the raw (not quality-controlled) voyage data is intended for the collectors and processors of the data obtained in the MNF RV Investigator voyage. Quality-controlled data products will be made available under the MNF CCBY licence.\"]}",
- "type" : "Collection",
- "stac_version" : "1.0.0",
- "stac_extensions" : [ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", "https://stac-extensions.github.io/contacts/v0.1.1/schema.json", "https://stac-extensions.github.io/projection/v1.1.0/schema.json", "https://stac-extensions.github.io/language/v1.0.0/schema.json", "https://stac-extensions.github.io/themes/v1.0.0/schema.json", "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" ]
+ "sci:citation": "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"Access to the raw (not quality-controlled) voyage data is intended for the collectors and processors of the data obtained in the MNF RV Investigator voyage. Quality-controlled data products will be made available under the MNF CCBY licence.\"]}",
+ "type": "Collection",
+ "stac_version": "1.0.0",
+ "stac_extensions": [
+ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/contacts/v0.1.1/schema.json",
+ "https://stac-extensions.github.io/projection/v1.1.0/schema.json",
+ "https://stac-extensions.github.io/language/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/themes/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
+ ]
}
diff --git a/indexer/src/test/resources/canned/sample9_stac.json b/indexer/src/test/resources/canned/sample9_stac.json
index 6d55eb2e..389a7db7 100644
--- a/indexer/src/test/resources/canned/sample9_stac.json
+++ b/indexer/src/test/resources/canned/sample9_stac.json
@@ -70,12 +70,11 @@
],
"type": "GeometryCollection"
},
- "temporal": [
- {
- "start": "2018-10-28T13:00:00Z",
- "end": "2019-11-20T12:59:59Z"
- }
- ]
+ "temporal" : [ {
+ "start" : "2018-10-28T13:00:00Z",
+ "end" : "2019-11-20T12:59:59Z"
+ } ],
+ "centroid" : [ ]
},
"contacts": [
{
diff --git a/indexer/src/test/resources/canned/sample_abstract_citation_null_stac.json b/indexer/src/test/resources/canned/sample_abstract_citation_null_stac.json
index 485cd918..1e7c6026 100644
--- a/indexer/src/test/resources/canned/sample_abstract_citation_null_stac.json
+++ b/indexer/src/test/resources/canned/sample_abstract_citation_null_stac.json
@@ -1,261 +1,453 @@
{
- "title" : "RV Investigator Voyage IN2017_V01 Underway UWY Data",
- "description" : "This record describes the Underway (UWY) data collected from the Marine National Facility (MNF) RV Investigator research voyage in2017_v01, titled \"Interactions of the Totten Glacier with the Southern Ocean through multiple glacial cycles.\" The voyage took place from Hobart (TAS) to Hobart between the 14th January and 5th March, 2017.\n\n Standard Underway data is continuously recorded, it consists of:\n (1) NAV: Navigation data: (dual GPS) Latitude, Longitude, Speed, Heading, course over ground, Gyros, and Doppler Log.\n (2) TSG: Thermosalinograph: Water Salinity, flow-rate, Temperature, Fluorescence, and pCO2.\n (3) MET: Atmospheric (port and starboard): Humidity, Wind speed and direction (vane and ultrasonic), Radiometer, Pyranometer, PAR, Air temperature, Air pressure, Rain, Ozone and Trace gases.\n\n Data are recorded at 5 second intervals. Near real-time data is available via the link below. This dataset will be processed and archived within the CSIRO Oceans & Atmosphere Data Centre in Hobart. Data is available in 5sec intervals in NetCDF, 10 sec and 5 min intervals in ascii format. Additional information regarding this dataset is contained in the cruise report for this voyage and/or the data processing report.",
- "extent" : {
- "bbox" : [ [ 113.7, -65.7, 147.5, -42.8 ], [ 113.7, -65.7, 147.5, -42.8 ] ],
- "temporal" : [ [ "2017-01-13T13:00:00Z", "2016-03-04T12:59:59Z" ], [ "2017-01-13T13:00:00Z", "2016-03-04T12:59:59Z" ] ]
+ "title": "RV Investigator Voyage IN2017_V01 Underway UWY Data",
+ "description": "This record describes the Underway (UWY) data collected from the Marine National Facility (MNF) RV Investigator research voyage in2017_v01, titled \"Interactions of the Totten Glacier with the Southern Ocean through multiple glacial cycles.\" The voyage took place from Hobart (TAS) to Hobart between the 14th January and 5th March, 2017.\n\n Standard Underway data is continuously recorded, it consists of:\n (1) NAV: Navigation data: (dual GPS) Latitude, Longitude, Speed, Heading, course over ground, Gyros, and Doppler Log.\n (2) TSG: Thermosalinograph: Water Salinity, flow-rate, Temperature, Fluorescence, and pCO2.\n (3) MET: Atmospheric (port and starboard): Humidity, Wind speed and direction (vane and ultrasonic), Radiometer, Pyranometer, PAR, Air temperature, Air pressure, Rain, Ozone and Trace gases.\n\n Data are recorded at 5 second intervals. Near real-time data is available via the link below. This dataset will be processed and archived within the CSIRO Oceans & Atmosphere Data Centre in Hobart. Data is available in 5sec intervals in NetCDF, 10 sec and 5 min intervals in ascii format. Additional information regarding this dataset is contained in the cruise report for this voyage and/or the data processing report.",
+ "extent": {
+ "bbox": [
+ [
+ 113.7,
+ -65.7,
+ 147.5,
+ -42.8
+ ],
+ [
+ 113.7,
+ -65.7,
+ 147.5,
+ -42.8
+ ]
+ ],
+ "temporal": [
+ [
+ "2017-01-13T13:00:00Z",
+ "2016-03-04T12:59:59Z"
+ ],
+ [
+ "2017-01-13T13:00:00Z",
+ "2016-03-04T12:59:59Z"
+ ]
+ ]
},
- "summaries" : {
- "score" : 1,
- "status" : "planned",
- "credits" : [ ],
- "statement" : "Data source: original field data.\n Data processing performed by CSIRO Oceans and Atmosphere.\n\n The portside Humidity sensor became offset from the starboard after 16-January-2017 16:15:35 and subsequently flagged as suspect (data left unchanged) for the remainder of the voyage .\n\n The starboard Humidity sensor may also have failed at about 2-March 2017 and has been flagged as bad with data NaNed.\n\n All values between 100-103% have been adjusted back to 100%.\n Please refer to the processing report for further information.",
- "revision" : "2023-11-10T03:57:25",
- "update_frequency" : "other",
- "proj:geometry" : {
- "geometries" : [ {
- "type" : "Polygon",
- "coordinates" : [ [ [ 113.7, -65.7 ], [ 147.5, -65.7 ], [ 147.5, -42.8 ], [ 113.7, -42.8 ], [ 113.7, -65.7 ] ] ]
- } ],
- "type" : "GeometryCollection"
+ "summaries": {
+ "score": 1,
+ "status": "planned",
+ "credits": [],
+ "statement": "Data source: original field data.\n Data processing performed by CSIRO Oceans and Atmosphere.\n\n The portside Humidity sensor became offset from the starboard after 16-January-2017 16:15:35 and subsequently flagged as suspect (data left unchanged) for the remainder of the voyage .\n\n The starboard Humidity sensor may also have failed at about 2-March 2017 and has been flagged as bad with data NaNed.\n\n All values between 100-103% have been adjusted back to 100%.\n Please refer to the processing report for further information.",
+ "revision": "2023-11-10T03:57:25",
+ "update_frequency": "other",
+ "proj:geometry": {
+ "geometries": [
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 113.7,
+ -65.7
+ ],
+ [
+ 147.5,
+ -65.7
+ ],
+ [
+ 147.5,
+ -42.8
+ ],
+ [
+ 113.7,
+ -42.8
+ ],
+ [
+ 113.7,
+ -65.7
+ ]
+ ]
+ ]
+ }
+ ],
+ "type": "GeometryCollection"
},
- "temporal" : [ {
- "start" : "2017-01-13T13:00:00Z",
- "end" : "2016-03-04T12:59:59Z"
- } ]
+ "temporal": [
+ {
+ "start": "2017-01-13T13:00:00Z",
+ "end": "2016-03-04T12:59:59Z"
+ }
+ ],
+ "centroid": [
+ [
+ 118.7,
+ -60.7
+ ],
+ [
+ 118.7,
+ -50.7
+ ],
+ [
+ 118.7,
+ -44.25
+ ],
+ [
+ 128.7,
+ -60.7
+ ],
+ [
+ 128.7,
+ -50.7
+ ],
+ [
+ 128.7,
+ -44.25
+ ],
+ [
+ 138.7,
+ -60.7
+ ],
+ [
+ 138.7,
+ -50.7
+ ],
+ [
+ 138.7,
+ -44.25
+ ],
+ [
+ 145.6,
+ -60.7
+ ],
+ [
+ 145.6,
+ -50.7
+ ],
+ [
+ 145.499,
+ -44.374
+ ]
+ ]
},
- "contacts" : [ {
- "roles" : [ "pointOfContact", "about" ],
- "organization" : "CSIRO Oceans & Atmosphere - Hobart",
- "name" : "CSIRO O&A, Information & Data Centre",
- "position" : "Data Requests",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- }, {
- "roles" : [ "processor", "metadata" ],
- "organization" : "CSIRO/Oceans and Atmosphere",
- "name" : "Data Officer (AR), Hobart",
- "position" : "",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- }, {
- "roles" : [ "pointOfContact", "metadata" ],
- "organization" : "CSIRO Oceans & Atmosphere - Hobart",
- "name" : "CSIRO O&A, Information & Data Centre",
- "position" : "Data Requests",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- }, {
- "roles" : [ "originator", "metadata" ],
- "organization" : "CSIRO",
- "name" : "Dirita, Vito",
- "position" : "",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- } ],
- "languages" : [ {
- "code" : "eng",
- "name" : "English"
- } ],
- "links" : [ {
- "href" : "https://www.marine.csiro.au/data/trawler/dataset.cfm?survey=IN2017_V01&data_type=uwy",
- "rel" : "related",
- "type" : "",
- "title" : "Data Access Via Data Trawler"
- }, {
- "href" : "https://www.marine.csiro.au/data/trawler/download.cfm?file_id=3596",
- "rel" : "related",
- "type" : "",
- "title" : "Download: 10-second (csv data): in2017_v01uwy10sec_csv.zip"
- }, {
- "href" : "https://www.marine.csiro.au/data/trawler/download.cfm?file_id=3597",
- "rel" : "related",
- "type" : "",
- "title" : "Download: 5-minute (csv data): in2017_v01uwy5min_csv.zip"
- }, {
- "href" : "https://www.marine.csiro.au/data/trawler/download.cfm?file_id=3598",
- "rel" : "related",
- "type" : "",
- "title" : "Download: 5-second (netcdf data): in2017_v01uwy_nc.zip"
- }, {
- "href" : "https://www.marine.csiro.au/data/reporting/get_file.cfm?eov_pub_id=1513",
- "rel" : "related",
- "type" : "",
- "title" : "Download: processing report (pdf): in2017_v01_UWY_ProcessingReport.pdf"
- }, {
- "href" : "https://www.marine.csiro.au/data/trawler/download.cfm?file_id=5459",
- "rel" : "related",
- "type" : "",
- "title" : "Download: 1-minute (csv data): in2017_v01uwy1min_csv.zip"
- }, {
- "href" : "https://www.marine.csiro.au/data/trawler/survey_list.cfm?source_id=309",
- "rel" : "related",
- "type" : "text/html",
- "title" : "RV Investigator Survey Information"
- }, {
- "href" : "https://www.marine.csiro.au/data/underway/?survey=in2017_v01",
- "rel" : "related",
- "type" : "text/html",
- "title" : "Visualisation tool for Underway Data"
- }, {
- "href" : "https://mnf.csiro.au/",
- "rel" : "related",
- "type" : "text/html",
- "title" : "MNF Home page"
- } ],
- "license" : "Attribution 4.0",
- "providers" : [ {
- "name" : "CSIRO/Oceans and Atmosphere",
- "roles" : [ "processor" ]
- }, {
- "name" : "CSIRO Oceans & Atmosphere - Hobart",
- "roles" : [ "pointOfContact" ]
- }, {
- "name" : "CSIRO",
- "roles" : [ "originator" ]
- } ],
- "themes" : [ {
- "concepts" : [ {
- "id" : "Earth Science | Atmosphere | Atmospheric Temperature | Air Temperature",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/f634ab55-de40-4d0b-93bc-691bf5408ccb"
- }, {
- "id" : "Earth Science | Oceans | Ocean Temperature | Sea Surface Temperature",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/bd24a9a9-7d52-4c29-b2a0-6cefd216ae78"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Water Vapor | Humidity",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/427e5121-a142-41cb-a8e9-a70b7f98eb6a"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Pressure | Atmospheric Pressure Measurements",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/9efbc088-ba8c-4c9c-a458-ad6ad63f4188"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Radiation | Solar Radiation",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a0f3474e-9a54-4a82-97c4-43864b48df4c"
- }, {
- "id" : "Earth Science | Oceans | Salinity/Density | Salinity",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/7e95b5fc-1d58-431a-af36-948b29fa870d"
- }, {
- "id" : "Earth Science | Oceans | Bathymetry/Seafloor Topography | Water Depth",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/ca477721-473b-40d7-a72b-4ffa963e48fb"
- }, {
- "id" : "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/10685919-bc01-43e7-901a-b62ac44627f3"
- } ],
- "scheme" : "theme",
- "description" : "",
- "title" : "GCMD Keywords"
- }, {
- "concepts" : [ {
- "id" : "Global / Oceans | Southern Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.place.mcp_regions&id=http://bluenet3.antcrc.utas.edu.au/mcp/geographic_extent_names#6"
- }, {
- "id" : "Regional Seas | Tasman Sea",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.place.mcp_regions&id=http://bluenet3.antcrc.utas.edu.au/mcp/geographic_extent_names#23"
- }, {
- "id" : "Global / Oceans | Pacific Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.place.mcp_regions&id=http://bluenet3.antcrc.utas.edu.au/mcp/geographic_extent_names#5"
- } ],
- "scheme" : "",
- "description" : "",
- "title" : "Keywords (Place)"
- }, {
- "concepts" : [ {
- "id" : "Marine National Facility",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:cmarAOI&id=urn:marlin.csiro.au:keywords:cmarAOI:concept:3208"
- } ],
- "scheme" : "discipline",
- "description" : "",
- "title" : "CSIRO Areas Of Interest"
- }, {
- "concepts" : [ {
- "id" : "Research Voyage: IN2017_V01",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.survey.urn:marlin.csiro.au:surveyregister&id=urn:marlin.csiro.au:surveyregister:concept:2181"
- } ],
- "scheme" : "survey",
- "description" : "",
- "title" : "CSIRO Survey List"
- }, {
- "concepts" : [ {
- "id" : "Vessel Data: Underway",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3514"
- } ],
- "scheme" : "discipline",
- "description" : "",
- "title" : "CSIRO Standard Data Types"
- }, {
- "concepts" : [ {
- "id" : "Ship: Investigator (RV)",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.dataSource.urn:marlin.csiro.au:sourceregister&id=urn:marlin.csiro.au:sourceregister:concept:309"
- } ],
- "scheme" : "dataSource",
- "description" : "",
- "title" : "CSIRO Source List"
- }, {
- "concepts" : [ {
- "id" : "Meteorological Instruments",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:keywords:equipment&id=urn:marlin.csiro.au:keywords:equipment:concept:2261"
- }, {
- "id" : "Thermosalinographs",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:keywords:equipment&id=urn:marlin.csiro.au:keywords:equipment:concept:2302"
- }, {
- "id" : "Altimeters",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:keywords:equipment&id=urn:marlin.csiro.au:keywords:equipment:concept:2206"
- } ],
- "scheme" : "equipment",
- "description" : "",
- "title" : "CSIRO Equipment"
- }, {
- "concepts" : [ {
- "id" : "Interactions of the Totten Glacier with the Southern Ocean through multiple glacial cycles.",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.project.urn:marlin.csiro.au:projectregister&id=urn:marlin.csiro.au:projectregister:concept:2454"
- } ],
- "scheme" : "project",
- "description" : "",
- "title" : "CSIRO Project List"
- }, {
- "concepts" : [ {
- "id" : "Thermosalinographs",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.mcp_collection_methods&id=http://bluenet3.antcrc.utas.edu.au/mcp/collection_methods#122"
- }, {
- "id" : "Altimeters",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.mcp_collection_methods&id=http://bluenet3.antcrc.utas.edu.au/mcp/collection_methods#4"
- } ],
- "scheme" : "theme",
- "description" : "",
- "title" : "MCP Collection Methods"
- }, {
- "concepts" : [ {
- "id" : "Global / Oceans | West Equatorial Pacific Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:marlin.csiro.au:definedregions&id=urn:marlin.csiro.au:definedregions:concept:1021"
- } ],
- "scheme" : "place",
- "description" : "",
- "title" : ""
- }, {
- "concepts" : [ {
- "id" : "Global / Oceans | Southern Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:6"
- }, {
- "id" : "Marine Planning Regions (Australia) | Australian Antarctic",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:50"
- } ],
- "scheme" : "place",
- "description" : "",
- "title" : "AODN Geographic Extent Names"
- } ],
- "id" : "c9ac30a7-9cad-420e-9ff9-efdffe6bf4ef",
- "search_suggestions" : {
- "abstract_phrases" : [ ]
+ "contacts": [
+ {
+ "roles": [
+ "pointOfContact",
+ "about"
+ ],
+ "organization": "CSIRO Oceans & Atmosphere - Hobart",
+ "name": "CSIRO O&A, Information & Data Centre",
+ "position": "Data Requests",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ },
+ {
+ "roles": [
+ "processor",
+ "metadata"
+ ],
+ "organization": "CSIRO/Oceans and Atmosphere",
+ "name": "Data Officer (AR), Hobart",
+ "position": "",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ },
+ {
+ "roles": [
+ "pointOfContact",
+ "metadata"
+ ],
+ "organization": "CSIRO Oceans & Atmosphere - Hobart",
+ "name": "CSIRO O&A, Information & Data Centre",
+ "position": "Data Requests",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ },
+ {
+ "roles": [
+ "originator",
+ "metadata"
+ ],
+ "organization": "CSIRO",
+ "name": "Dirita, Vito",
+ "position": "",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ }
+ ],
+ "languages": [
+ {
+ "code": "eng",
+ "name": "English"
+ }
+ ],
+ "links": [
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/dataset.cfm?survey=IN2017_V01&data_type=uwy",
+ "rel": "related",
+ "type": "",
+ "title": "Data Access Via Data Trawler"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/download.cfm?file_id=3596",
+ "rel": "related",
+ "type": "",
+ "title": "Download: 10-second (csv data): in2017_v01uwy10sec_csv.zip"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/download.cfm?file_id=3597",
+ "rel": "related",
+ "type": "",
+ "title": "Download: 5-minute (csv data): in2017_v01uwy5min_csv.zip"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/download.cfm?file_id=3598",
+ "rel": "related",
+ "type": "",
+ "title": "Download: 5-second (netcdf data): in2017_v01uwy_nc.zip"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/reporting/get_file.cfm?eov_pub_id=1513",
+ "rel": "related",
+ "type": "",
+ "title": "Download: processing report (pdf): in2017_v01_UWY_ProcessingReport.pdf"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/download.cfm?file_id=5459",
+ "rel": "related",
+ "type": "",
+ "title": "Download: 1-minute (csv data): in2017_v01uwy1min_csv.zip"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/trawler/survey_list.cfm?source_id=309",
+ "rel": "related",
+ "type": "text/html",
+ "title": "RV Investigator Survey Information"
+ },
+ {
+ "href": "https://www.marine.csiro.au/data/underway/?survey=in2017_v01",
+ "rel": "related",
+ "type": "text/html",
+ "title": "Visualisation tool for Underway Data"
+ },
+ {
+ "href": "https://mnf.csiro.au/",
+ "rel": "related",
+ "type": "text/html",
+ "title": "MNF Home page"
+ }
+ ],
+ "license": "Attribution 4.0",
+ "providers": [
+ {
+ "name": "CSIRO/Oceans and Atmosphere",
+ "roles": [
+ "processor"
+ ]
+ },
+ {
+ "name": "CSIRO Oceans & Atmosphere - Hobart",
+ "roles": [
+ "pointOfContact"
+ ]
+ },
+ {
+ "name": "CSIRO",
+ "roles": [
+ "originator"
+ ]
+ }
+ ],
+ "themes": [
+ {
+ "concepts": [
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Temperature | Air Temperature",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/f634ab55-de40-4d0b-93bc-691bf5408ccb"
+ },
+ {
+ "id": "Earth Science | Oceans | Ocean Temperature | Sea Surface Temperature",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/bd24a9a9-7d52-4c29-b2a0-6cefd216ae78"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Water Vapor | Humidity",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/427e5121-a142-41cb-a8e9-a70b7f98eb6a"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Pressure | Atmospheric Pressure Measurements",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/9efbc088-ba8c-4c9c-a458-ad6ad63f4188"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Radiation | Solar Radiation",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/a0f3474e-9a54-4a82-97c4-43864b48df4c"
+ },
+ {
+ "id": "Earth Science | Oceans | Salinity/Density | Salinity",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/7e95b5fc-1d58-431a-af36-948b29fa870d"
+ },
+ {
+ "id": "Earth Science | Oceans | Bathymetry/Seafloor Topography | Water Depth",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/ca477721-473b-40d7-a72b-4ffa963e48fb"
+ },
+ {
+ "id": "Earth Science | Atmosphere | Atmospheric Winds | Surface Winds",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.gcmd_keywords&id=http://gcmdservices.gsfc.nasa.gov/kms/concept/10685919-bc01-43e7-901a-b62ac44627f3"
+ }
+ ],
+ "scheme": "theme",
+ "description": "",
+ "title": "GCMD Keywords"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Global / Oceans | Southern Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.place.mcp_regions&id=http://bluenet3.antcrc.utas.edu.au/mcp/geographic_extent_names#6"
+ },
+ {
+ "id": "Regional Seas | Tasman Sea",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.place.mcp_regions&id=http://bluenet3.antcrc.utas.edu.au/mcp/geographic_extent_names#23"
+ },
+ {
+ "id": "Global / Oceans | Pacific Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.place.mcp_regions&id=http://bluenet3.antcrc.utas.edu.au/mcp/geographic_extent_names#5"
+ }
+ ],
+ "scheme": "",
+ "description": "",
+ "title": "Keywords (Place)"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Marine National Facility",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:cmarAOI&id=urn:marlin.csiro.au:keywords:cmarAOI:concept:3208"
+ }
+ ],
+ "scheme": "discipline",
+ "description": "",
+ "title": "CSIRO Areas Of Interest"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Research Voyage: IN2017_V01",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.survey.urn:marlin.csiro.au:surveyregister&id=urn:marlin.csiro.au:surveyregister:concept:2181"
+ }
+ ],
+ "scheme": "survey",
+ "description": "",
+ "title": "CSIRO Survey List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Vessel Data: Underway",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.discipline.urn:marlin.csiro.au:keywords:standardDataType&id=urn:marlin.csiro.au:keywords:standardDataType:concept:3514"
+ }
+ ],
+ "scheme": "discipline",
+ "description": "",
+ "title": "CSIRO Standard Data Types"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Ship: Investigator (RV)",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.dataSource.urn:marlin.csiro.au:sourceregister&id=urn:marlin.csiro.au:sourceregister:concept:309"
+ }
+ ],
+ "scheme": "dataSource",
+ "description": "",
+ "title": "CSIRO Source List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Meteorological Instruments",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:keywords:equipment&id=urn:marlin.csiro.au:keywords:equipment:concept:2261"
+ },
+ {
+ "id": "Thermosalinographs",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:keywords:equipment&id=urn:marlin.csiro.au:keywords:equipment:concept:2302"
+ },
+ {
+ "id": "Altimeters",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.equipment.urn:marlin.csiro.au:keywords:equipment&id=urn:marlin.csiro.au:keywords:equipment:concept:2206"
+ }
+ ],
+ "scheme": "equipment",
+ "description": "",
+ "title": "CSIRO Equipment"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Interactions of the Totten Glacier with the Southern Ocean through multiple glacial cycles.",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.project.urn:marlin.csiro.au:projectregister&id=urn:marlin.csiro.au:projectregister:concept:2454"
+ }
+ ],
+ "scheme": "project",
+ "description": "",
+ "title": "CSIRO Project List"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Thermosalinographs",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.mcp_collection_methods&id=http://bluenet3.antcrc.utas.edu.au/mcp/collection_methods#122"
+ },
+ {
+ "id": "Altimeters",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.mcp_collection_methods&id=http://bluenet3.antcrc.utas.edu.au/mcp/collection_methods#4"
+ }
+ ],
+ "scheme": "theme",
+ "description": "",
+ "title": "MCP Collection Methods"
+ },
+ {
+ "concepts": [
+ {
+ "id": "Global / Oceans | West Equatorial Pacific Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:marlin.csiro.au:definedregions&id=urn:marlin.csiro.au:definedregions:concept:1021"
+ }
+ ],
+ "scheme": "place",
+ "description": "",
+ "title": ""
+ },
+ {
+ "concepts": [
+ {
+ "id": "Global / Oceans | Southern Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:6"
+ },
+ {
+ "id": "Marine Planning Regions (Australia) | Australian Antarctic",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:50"
+ }
+ ],
+ "scheme": "place",
+ "description": "",
+ "title": "AODN Geographic Extent Names"
+ }
+ ],
+ "id": "c9ac30a7-9cad-420e-9ff9-efdffe6bf4ef",
+ "search_suggestions": {
+ "abstract_phrases": []
},
- "sci:citation" : "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"Data is made available under a Creative Commons Attribution 4.0 International Licence, please see link. Data is supplied 'as is' without any warranty or guarantee except as required by law to be given to you. The data may not be free of error, comprehensive, current or appropriate for your particular purpose. You accept all risk and responsibility for its use. ATTRIBUTION STATEMENT: The dataset [Insert-dataset-name-here] downloaded on [Insert-DD-Mmm-YYYY-here] was collected on voyage [Insert-voyage-name-here] by the Marine National Facility.\"]}",
- "type" : "Collection",
- "stac_version" : "1.0.0",
- "stac_extensions" : [ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", "https://stac-extensions.github.io/contacts/v0.1.1/schema.json", "https://stac-extensions.github.io/projection/v1.1.0/schema.json", "https://stac-extensions.github.io/language/v1.0.0/schema.json", "https://stac-extensions.github.io/themes/v1.0.0/schema.json", "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" ]
+ "sci:citation": "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"Data is made available under a Creative Commons Attribution 4.0 International Licence, please see link. Data is supplied 'as is' without any warranty or guarantee except as required by law to be given to you. The data may not be free of error, comprehensive, current or appropriate for your particular purpose. You accept all risk and responsibility for its use. ATTRIBUTION STATEMENT: The dataset [Insert-dataset-name-here] downloaded on [Insert-DD-Mmm-YYYY-here] was collected on voyage [Insert-voyage-name-here] by the Marine National Facility.\"]}",
+ "type": "Collection",
+ "stac_version": "1.0.0",
+ "stac_extensions": [
+ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/contacts/v0.1.1/schema.json",
+ "https://stac-extensions.github.io/projection/v1.1.0/schema.json",
+ "https://stac-extensions.github.io/language/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/themes/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
+ ]
}
diff --git a/indexer/src/test/resources/canned/sample_complex_area.xml b/indexer/src/test/resources/canned/sample_complex_area.xml
new file mode 100644
index 00000000..b3644833
--- /dev/null
+++ b/indexer/src/test/resources/canned/sample_complex_area.xml
@@ -0,0 +1,1656 @@
+
+
+
+
+
+ 06b09398-d3d0-47dc-a54a-a745319fbece
+
+
+ urn:uuid
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ IMOS dataset level record
+
+
+
+
+
+
+
+
+
+
+
+ Integrated Marine Observing System (IMOS)
+
+
+
+
+
+
+
+
+ 61 3 6226 7488
+
+
+
+
+
+
+
+
+
+ 61 3 6226 2107
+
+
+
+
+
+
+
+
+
+ University of Tasmania
+
+
+ Private Bag 110
+
+
+ Hobart
+
+
+ Tasmania
+
+
+ 7001
+
+
+ Australia
+
+
+ info@aodn.org.au
+
+
+
+
+
+
+ http://imos.org.au/aodn.html
+
+
+ WWW:LINK-1.0-http--link
+
+
+ Website of the Australian Ocean Data Network (AODN)
+
+
+
+
+
+
+ Data Officer
+
+
+
+
+
+
+
+
+
+
+ 2020-07-10T14:31:24
+
+
+
+
+
+
+
+
+
+ 2024-07-25T05:22:28
+
+
+
+
+
+
+
+
+
+ ISO 19115-3:2018
+
+
+
+
+
+
+ https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/06b09398-d3d0-47dc-a54a-a745319fbece
+
+
+ WWW:LINK-1.0-http--metadata-URL
+
+
+ Point of truth URL of this metadata record
+
+
+
+
+
+
+
+
+ WGS84
+
+
+
+
+
+
+
+
+
+
+
+
+
+ IMOS - Animal Tracking Facility - Satellite Relay Tagging Program - Delayed mode data
+
+
+ Satellite tracking of pinnipeds - Delayed mode
+
+
+
+
+ 2015-10-20T12:04:00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Integrated Marine Observing System (IMOS)
+
+
+
+
+
+
+ 61 3 6226 7549
+
+
+
+
+
+
+
+
+
+ 61 3 6226 2107
+
+
+
+
+
+
+
+
+
+ Private Bag 110
+
+
+ Hobart
+
+
+ Tasmania
+
+
+ 7001
+
+
+ Australia
+
+
+ imos@imos.org.au
+
+
+
+
+
+
+ http://www.imos.org.au/html
+
+
+ WWW:LINK-1.0-http--link
+
+
+ Website for the Integrated Marine Observing System
+
+
+
+
+
+
+
+
+
+
+ The citation in a list of references is: "IMOS. [year-of-data-download], [Title], [data-access-URL], accessed [date-of-access]".
+
+
+
+
+ http://www.imos.org.au/html
+
+
+ WWW:LINK-1.0-http--link
+
+
+ Website for the Integrated Marine Observing System
+
+
+
+
+
+
+ The Animal Tracking Facility (formerly known as the Australian Animal Tracking And Monitoring System (AATAMS)) is a coordinated marine animal tagging project. Satellite Relay Data Loggers (SRDL) (most with CTDs, and some also with fluorometers) are used to explore how marine mammal behaviour relates to their oceanic environment. Loggers developed at the University of St Andrews Sea Mammal Research Unit transmit data in near real time via the Argo satellite system. The Satellite Relay Data Loggers are deployed on marine mammals, including Elephant Seals, Weddell Seals, Australian Fur Seals, Australian Sea Lions, New Zealand Fur Seals. Data is being collected in the Southern Ocean, the Great Australian Bight, and off the South-East Coast of Australia.
+ This metadata record, represents several different datasets listed hereafter, which can all be accessed through a multi-WFS service. The data represented by this record are presented in delayed mode.
+ CTD - parameters measured by the instruments include time, conductivity (salinity), temperature, speed, fluorescence (available in the future) and depth.
+ Diving - parameters measured by the instruments include start and end time and longitude/latitude of each individual dive, post-dive surface duration, dive duration, maximum dive depth, intermediate dive depths and times.
+ Haulout - a haulout begins when the SRDL has been continuously dry for a specified length of time (usually 10 minutes). It ends when continuously wet for another interval (usually 40 seconds). Haulout data parameters measured by the instruments include haulout start and end dates and longitude/latitude, and haulout number.
+ Argos locations - location data parameters measured by the instruments include time, longitude, latitude, location quality, along with other diagnostic information provided by Argos (http://www.argos-system.org/).
+ Summary Statistics - as well as sending records of individual events such as dives and haulouts, the SRDL also calculates summary statistics of those events over a specified time period (usually 3, 4 or 6 hours). Summary statistics computed by the instruments include the proportion of time spent diving, at the surface and hauled-out, the number of dives, and the average, standard deviation and maximum dive duration and dive depth during each summary period. These statistics are based on all the data recorded by the SRDL and so are not prone to distortion by variations in the efficiency of transmission via Argos.
+
+ ** For data after October 2018, please consult IMOS - Animal Tracking Facility - Satellite Relay Tagging Program - Delayed mode data with quality-controlled locations (https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/70f148b1-7040-4fad-944a-456413c95472), to access data with improved satellite locations. In the near future all historical delayed mode data will be reprocessed with the new quality control (QC) process, to improve the accuracy of the satellite location data, and this dataset will be replaced by the new QC’d one. **
+
+
+ Australia’s Integrated Marine Observing System (IMOS) is enabled by the National Collaborative Research Infrastructure Strategy (NCRIS). It is operated by a consortium of institutions as an unincorporated joint venture, with the University of Tasmania as Lead Agent.
+
+
+ Sydney Institute of Marine Science (SIMS)
+
+
+
+
+
+
+
+
+
+
+
+
+ Department of Biological Sciences, Macquarie University
+
+
+
+
+ Harcourt, Rob
+
+
+
+
+
+
+ Marine Predator Research Group, Department of Biological Sciences
+
+
+ Macquarie University
+
+
+ North Ryde
+
+
+ New South Wales
+
+
+ 2109
+
+
+ Australia
+
+
+ robert.harcourt@mq.edu.au
+
+
+
+
+
+
+ http://web.science.mq.edu.au/directory/listing/person.htm?id=rharcour
+
+
+ WWW:LINK-1.0-http--link
+
+
+ Maquarie University staff profile for Rob Harcourt
+
+
+
+
+
+
+ Animal Tracking Facility Leader
+
+
+
+
+
+
+
+
+ oceans
+
+
+
+
+
+
+
+
+
+
+
+ 118.00000000000001 -35.999999999999986 118.00000000000001 -34 122 -34 122 -32 126 -32 126 -34 123.99999999999999 -34 123.99999999999999 -35.999999999999986 118.00000000000001 -35.999999999999986
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 134 -37.99999999999999 134 -35.999999999999986 132 -35.999999999999986 132 -34 130 -34 130 -32 136 -32 136 -34 140 -34 140 -37.99999999999999 134 -37.99999999999999
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 150 -42.00000000000001 150 -40 140 -40 140 -37.99999999999999 148 -37.99999999999999 148 -35.999999999999986 150 -35.999999999999986 150 -32 156 -32 156 -37.99999999999999 160 -37.99999999999999 160 -42.00000000000001 150 -42.00000000000001
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -180 -50 -180 -44 -174 -44 -174 -46.00000000000001 -176 -46.00000000000001 -176 -48 -178 -48 -178 -50 -180 -50
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -166.00000000000003 -74 -166.00000000000003 -70 -180 -70 -180 -54 -160 -54 -160 -52 -156 -52 -156 -56 -154 -56 -154 -52 -152 -52 -152 -50 -148 -50 -148 -54 -152 -54 -152 -58 -146 -58 -146 -56 -144 -56 -144 -58 -138 -58 -138 -60.00000000000001 -136 -60.00000000000001 -136 -64 -140 -64 -140 -70 -146 -70 -146 -72 -150 -72 -150 -70 -148 -70 -148 -68 -154 -68 -154 -70 -160 -70 -160 -74 -166.00000000000003 -74
+
+
+
+
+ -157.99999999999997 -58 -157.99999999999997 -60.00000000000001 -156 -60.00000000000001 -156 -58 -157.99999999999997 -58
+
+
+
+
+ -156 -64 -156 -66 -146 -66 -146 -64 -156 -64
+
+
+
+
+ -161.99999999999997 -60.00000000000001 -161.99999999999997 -62 -160 -62 -160 -60.00000000000001 -161.99999999999997 -60.00000000000001
+
+
+
+
+ -146 -62 -140 -62 -140 -60.00000000000001 -146 -60.00000000000001 -146 -62
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -36 -76 -36 -74 -26.000000000000004 -74 -26.000000000000004 -76 -36 -76
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 164 -80 164 -78 161.99999999999997 -78 161.99999999999997 -74 174 -74 174 -72 170 -72 170 -70 161.99999999999997 -70 161.99999999999997 -68 160 -68 160 -66 148 -66 148 -68 138 -68 138 -66 136 -66 136 -68 132 -68 132 -66 122 -66 122 -68 118.00000000000001 -68 118.00000000000001 -66 112.00000000000001 -66 112.00000000000001 -68 104.00000000000001 -68 104.00000000000001 -66 96 -66 96 -68 82 -68 82 -70 68 -70 68 -68 42 -68 42 -70 16 -70 16 -68 14.000000000000002 -68 14.000000000000002 -70 6 -70 6 -68 -2 -68 -2 -64 -10 -64 -10 -58 2 -58 2 -54 14.000000000000002 -54 14.000000000000002 -52 20 -52 20 -46.00000000000001 24 -46.00000000000001 24 -48 40 -48 40 -46.00000000000001 30 -46.00000000000001 30 -42.00000000000001 40 -42.00000000000001 40 -40 44 -40 44 -42.00000000000001 46.00000000000001 -42.00000000000001 46.00000000000001 -40 50 -40 50 -37.99999999999999 52.00000000000001 -37.99999999999999 52.00000000000001 -42.00000000000001 58 -42.00000000000001 58 -44 66 -44 66 -42.00000000000001 72 -42.00000000000001 72 -44 74 -44 74 -46.00000000000001 78 -46.00000000000001 78 -44 86 -44 86 -37.99999999999999 90 -37.99999999999999 90 -40 92.00000000000001 -40 92.00000000000001 -42.00000000000001 94.00000000000001 -42.00000000000001 94.00000000000001 -40 106 -40 106 -44 122 -44 122 -42.00000000000001 123.99999999999999 -42.00000000000001 123.99999999999999 -40 128 -40 128 -42.00000000000001 130 -42.00000000000001 130 -46.00000000000001 132 -46.00000000000001 132 -48 134 -48 134 -44 144 -44 144 -46.00000000000001 154 -46.00000000000001 154 -48 157.99999999999997 -48 157.99999999999997 -50 166.00000000000003 -50 166.00000000000003 -48 168 -48 168 -46.00000000000001 170 -46.00000000000001 170 -44 172 -44 172 -48 170 -48 170 -50 174 -50 174 -48 176 -48 176 -46.00000000000001 180 -46.00000000000001 180 -52 178 -52 178 -54 180 -54 180 -66 174 -66 174 -68 180 -68 180 -78 168 -78 168 -80 164 -80
+
+
+
+
+ 140 -58 140 -60.00000000000001 142 -60.00000000000001 142 -58 140 -58
+
+
+
+
+ 142 -58 146 -58 146 -56 142 -56 142 -58
+
+
+
+
+ 154 -54 156 -54 156 -52 154 -52 154 -54
+
+
+
+
+ 154 -52 154 -50 148 -50 148 -52 154 -52
+
+
+
+
+ 128 -58 132 -58 132 -56 128 -56 128 -58
+
+
+
+
+ 152 -56 152 -58 154 -58 154 -56 152 -56
+
+
+
+
+ 0 -66 2 -66 2 -64 0 -64 0 -66
+
+
+
+
+ -8 -62 -2 -62 -2 -60.00000000000001 -8 -60.00000000000001 -8 -62
+
+
+
+
+ 123.99999999999999 -54 130 -54 130 -50 126 -50 126 -52 123.99999999999999 -52 123.99999999999999 -54
+
+
+
+
+ 142 -54 144 -54 144 -52 142 -52 142 -54
+
+
+
+
+ 136 -48 142 -48 142 -46.00000000000001 136 -46.00000000000001 136 -48
+
+
+
+
+ 144 -48 144 -50 146 -50 146 -48 144 -48
+
+
+
+
+ 96 -44 101.99999999999999 -44 101.99999999999999 -42.00000000000001 96 -42.00000000000001 96 -44
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -172 -78 -172 -80 -178 -80 -178 -78 -180 -78 -180 -74 -178 -74 -178 -76 -172 -76 -172 -78
+
+
+
+
+
+
+
+
+
+
+
+
+ 2007-03-26T16:00:00
+ 2019-11-30
+
+
+
+
+
+
+
+ 0
+
+
+ 150
+
+
+
+ vertical coordinate reference system not used
+ Australia
+
+
+ vertical coordinate reference system not used
+
+
+ metre
+ Depth
+ D
+ down
+
+
+
+
+
+
+ vertical datum not used
+ Australia
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ NetCDF
+
+
+
+
+ 3.5
+
+
+
+
+
+
+
+
+ Oceans | Ocean Temperature | Water Temperature
+
+
+ Oceans | Salinity/density | Conductivity
+
+
+ Oceans | Marine Biology | Marine Mammals
+
+
+ Oceans | Marine Biology | Marine Birds
+
+
+
+
+ NASA/Global Change Master Directory Earth Science Keywords Version 5.3.8
+
+
+ GCMD
+
+
+
+
+ 2006-01-01T00:00:00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ National Aeronautics and Space Administration (NASA)
+
+
+
+
+
+
+
+
+
+
+
+
+ Satellite Tag
+
+
+ CTD Satellite Relay Data Logger
+
+
+ Agency | SMRU | Sea Mammal Research Unit
+
+
+
+
+ IMOS Keywords Thesaurus
+
+
+ IMOS
+
+
+
+
+ 2008-10-30T00:00:00
+
+
+
+
+
+
+
+
+
+
+
+
+ Integrated Marine Observing System (IMOS)
+
+
+
+
+
+
+
+
+
+
+
+
+ Tags and Tracking Devices
+
+
+
+
+
+
+
+ Marine Community Profile of ISO19115 v1.4 Collection Methods Vocabulary (Annex C.1.3)
+
+
+
+
+ 2008-10-30T00:00:00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Australian Ocean Data Centre Joint Facility (AODCJF)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Global / Oceans | Atlantic Ocean
+
+
+ Global / Oceans | Southern Ocean
+
+
+ Global / Oceans | Indian Ocean
+
+
+ Global / Oceans | Pacific Ocean
+
+
+ Marine Features (Australia) | Great Australian Bight, SA/WA
+
+
+ Marine Features (Australia) | Bass Strait, TAS/VIC
+
+
+ Regional Seas | Coral Sea
+
+
+ Regional Seas | Tasman Sea
+
+
+
+
+
+
+
+ AODN Geographic Extents Vocabulary
+
+
+
+
+ 2021-09-02
+
+
+
+
+
+
+
+
+
+ geonetwork.thesaurus.external.place.aodn_aodn-geographic-extents-vocabulary
+
+
+
+
+
+
+
+
+
+
+ Continents | Antarctica
+
+
+ Countries | Australia
+
+
+ Countries | New Zealand
+
+
+ Offshore Islands (Australia) | Heard & McDonald Islands
+
+
+ Offshore Islands (Australia) | Macquarie Island
+
+
+ States, Territories (Australia) | Western Australia
+
+
+ States, Territories (Australia) | South Australia
+
+
+ States, Territories (Australia) | Victoria
+
+
+ States, Territories (Australia) | Tasmania
+
+
+ States, Territories (Australia) | New South Wales
+
+
+
+
+
+
+
+ AODN Geographic Extents Vocabulary
+
+
+
+
+ 2021-09-02
+
+
+
+
+
+
+
+
+
+ geonetwork.thesaurus.external.place.aodn_aodn-geographic-extents-vocabulary
+
+
+
+
+
+
+
+
+
+
+ land-sea mammals
+
+
+
+
+
+
+
+ AODN Platform Vocabulary
+
+
+
+
+ 2024-07-24
+
+
+
+
+
+
+
+
+
+ geonetwork.thesaurus.external.theme.aodn_aodn-platform-vocabulary
+
+
+
+
+
+
+
+
+
+
+ Temperature of the water body
+
+
+ Practical salinity of the water body
+
+
+ Pressure (measured variable) in the water body exerted by overlying sea water and any medium above it
+
+
+
+
+
+
+
+ AODN Discovery Parameter Vocabulary
+
+
+
+
+ 2023-08-10
+
+
+
+
+
+
+
+
+
+ geonetwork.thesaurus.external.theme.aodn_aodn-discovery-parameter-vocabulary
+
+
+
+
+
+
+
+
+
+
+ Latitude north
+
+
+ Longitude east
+
+
+
+
+
+
+
+ AODN Sampling Parameter Vocabulary
+
+
+
+
+ 2020-07-14
+
+
+
+
+
+
+
+
+
+ geonetwork.thesaurus.external.theme.aodn_aodn-sampling-parameter-vocabulary
+
+
+
+
+
+
+
+
+
+
+ water temperature sensor
+
+
+ CTD
+
+
+ SMRU Ltd Satellite Relay Data Logger 9000x
+
+
+
+
+
+
+
+ AODN Instrument Vocabulary
+
+
+
+
+ 2023-02-01
+
+
+
+
+
+
+
+
+
+ geonetwork.thesaurus.external.theme.aodn_aodn-instrument-vocabulary
+
+
+
+
+
+
+
+
+
+
+ Animal Tagging Sub-Facility, Integrated Marine Observing System (IMOS)
+
+
+
+
+
+
+
+ AODN Organisation Vocabulary
+
+
+
+
+ 2023-11-10
+
+
+
+
+
+
+
+
+
+ geonetwork.thesaurus.external.discipline.aodn_aodn-organisation-vocabulary
+
+
+
+
+
+
+
+
+
+
+ Data, products and services from IMOS are provided "as is" without any warranty as to fitness for a particular purpose.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ https://licensebuttons.net/l/by/4.0/88x31.png
+
+
+ WWW:LINK-1.0-http--related
+
+
+ License Graphic
+
+
+
+
+
+
+
+
+ Creative Commons Attribution 4.0 International License
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://creativecommons.org/international/
+
+
+ WWW:LINK-1.0-http--related
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://creativecommons.org/licenses/by/4.0/
+
+
+ WWW:LINK-1.0-http--related
+
+
+ License Text
+
+
+
+
+
+
+ The citation in a list of references is: "IMOS [year-of-data-download], [Title], [data-access-URL], accessed [date-of-access]."
+
+
+ Any users of IMOS data are required to clearly acknowledge the source of the material derived from IMOS in the format: "Data was sourced from Australia’s Integrated Marine Observing System (IMOS) – IMOS is enabled by the National Collaborative Research Infrastructure strategy (NCRIS)." If relevant, also credit other organisations involved in collection of this particular datastream (as listed in 'credit' in the metadata record).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Temperature of the water body
+
+
+
+
+ 42
+
+
+ -2
+
+
+
+ http://vocab.nerc.ac.uk/collection/P06/current/UPAA
+ Degrees Celsius
+
+
+
+
+
+
+
+
+ Not measured with Weddell Seals (non-CTD tag)
+
+
+
+
+ Practical salinity of the water body
+
+
+
+
+
+ http://vocab.aodn.org.au/def/unitsofmeasure/entity/481
+ Practical Salinity Unit
+
+
+
+
+
+
+
+
+
+
+ Pressure (measured variable) in the water body exerted by overlying sea water and any medium above it
+
+
+
+
+
+ http://vocab.nerc.ac.uk/collection/P06/current/UPDB
+ Decibars
+
+
+
+
+
+
+
+
+
+
+ Latitude north
+
+
+
+
+
+ http://vocab.nerc.ac.uk/collection/P06/current/UAAA
+ Degrees
+
+
+
+
+
+
+
+
+
+
+ Longitude east
+
+
+
+
+
+ http://vocab.nerc.ac.uk/collection/P06/current/UAAA
+ Degrees
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ NetCDF
+
+
+
+
+ 3.5
+
+
+
+
+
+
+
+
+
+
+ http://imos.org.au/animaltracking.html
+
+
+ WWW:LINK-1.0-http--link
+
+
+ Animal Tracking Facility page on IMOS website
+
+
+
+
+
+
+ https://portal.aodn.org.au/search?uuid=06b09398-d3d0-47dc-a54a-a745319fbece
+
+
+ WWW:LINK-1.0-http--link
+
+
+ View and download data though the AODN Portal
+
+
+
+
+
+
+ http://oceancurrent.imos.org.au/aatams.php
+
+
+ WWW:LINK-1.0-http--downloaddata
+
+
+ View profile plots from Oceancurrent SealCTDs page
+
+
+
+
+
+
+ http://geoserver-123.aodn.org.au/geoserver/wms
+
+
+ OGC:WMS-1.1.1-http-get-map
+
+
+ imos:aatams_sattag_dm_profile_map
+
+
+ Delayed-mode trajectories
+
+
+
+
+
+
+ http://geoserver-123.aodn.org.au/geoserver/ows
+
+
+ OGC:WFS-1.0.0-http-get-capabilities
+
+
+ aatams_sattag_dm_profile_data
+
+
+ This OGC WFS service returns filtered geographic information. The returned data (CTD profile) is available in multiple formats including CSV.
+
+
+
+
+
+
+ http://geoserver-123.aodn.org.au/geoserver/ows
+
+
+ OGC:WFS-1.0.0-http-get-capabilities
+
+
+ aatams_sattag_dm_location_data
+
+
+ This OGC WFS service returns filtered geographic information. The returned data (Argos locations) is available in multiple formats including CSV.
+
+
+
+
+
+
+ http://geoserver-123.aodn.org.au/geoserver/ows
+
+
+ OGC:WFS-1.0.0-http-get-capabilities
+
+
+ aatams_sattag_dm_dive_profile_data
+
+
+ This OGC WFS service returns filtered geographic information. The returned data (Dive profiles) is available in multiple formats including CSV.
+
+
+
+
+
+
+ http://geoserver-123.aodn.org.au/geoserver/ows
+
+
+ OGC:WFS-1.0.0-http-get-capabilities
+
+
+ aatams_sattag_dm_haulout_data
+
+
+ This OGC WFS service returns filtered geographic information. The returned data (Haulout) is available in multiple formats including CSV.
+
+
+
+
+
+
+ http://geoserver-123.aodn.org.au/geoserver/ows
+
+
+ OGC:WFS-1.0.0-http-get-capabilities
+
+
+ aatams_sattag_dm_summary_data
+
+
+ This OGC WFS service returns filtered geographic information. The returned data (Summary statistics) is available in multiple formats including CSV.
+
+
+
+
+
+
+ https://help.aodn.org.au/web-services/ogc-wfs/
+
+
+ WWW:LINK-1.0-http--link
+
+
+ OGC WFS help documentation
+
+
+
+
+
+
+ https://content.aodn.org.au/Documents/IMOS/Facilities/animal_tracking/IMOS_Animal_Tracking_Best_Practice_Manual_for_SMRU_CTD_Satellite_Relay_Data_Loggers_LATEST.pdf
+
+
+ WWW:LINK-1.0-http--link
+
+
+ Best Practice Manual for SMRU CTD Satellite Relay Data Loggers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The Animal Tracking Facility Satellite Relay Tag data has been supplied to IMOS by participants, via the St Andrews University Sea Mammal Research Unit. Tags used on species: Australian Fur Seal, Australian Sea Lion, New Zealand Fur Seal and Southern Elephant Seal - CTD Satellite Relay Data Loggers (SRDL). Collect conductivity, temperature and depth information. On some Australian Sea Lions - CTD/Fluorometer Satellite Relay Data Loggers (SRDL). Collects conductivity, temperature, fluorescence and depth information. Weddell Seals - Satellite Relay Data Loggers (SRDL). Collect temperature, speed and depth information. CTD-SRDLs The CTD–Satellite Relay Data Loggers (CTD-SRDLs) are built by the Sea Mammal Research Unit (SMRU, University of St. Andrews, UK), incorporating CTD sensors developed by Valeport Ltd (Devon, UK). The sensor head consists of a pressure transducer, a platinum resistance thermometer, and an inductive cell for measuring conductivity. The temperature and conductivity sensors have a precision (repeatability) of 0.005°C and 0.005 mS/cm, respectively. Before being taken into the field, devices are calibrated in the laboratory by Valeport. Some of the CTD-SRDLs (about half) were also tested at sea against a ship-based CTD before the deployment. CTD-SRDLs record hydrographic profiles during the ascent of seals, retaining only the deepest dive in each six-hour time interval, and transmitting profiles in a compressed form (between 10 and 25 data points per profile, depending on the tag program) through the Advanced Research and Global Observation Satellite (ARGOS) system. The accuracy of ARGOS geo-positioning is typically better than ±5 km, because seals never stay at the surface more than a few minutes. New methods are currently under development by the ARGOS team, which should substantially improve the quality of positioning. Hydrographic profiles are post-processed using a unified procedure of editing, adjustment, and validation. A standard set of tests, adapted from Argo standard quality-control procedures, is first run to remove bad profiles, spikes, and outliers. For CTD-SRDLs with profiles in frozen areas, a temperature offset was estimated using the local freezing temperature. A salinity adjustment was also estimated, consisting in a pressure dependent linear correction. This bias is mainly induced by an external field effect on the conductivity sensor, which cannot be corrected a priori because it depends on how the tag has been attached on the seal’s head. Adjustments parameters were estimated for each CTD-SRDLs separately by comparisons of salinity measurements with available data in the World Ocean Database. Because the southern ACC region (south of 55ºS) is associated with a large-scale upwelling of circumpolar deep waters near the surface, the salinity at depth is very stable there, with a low natural variability highly suitable for use as a reference. Salinity data cross-comparisons between different CTD-SRDLs were also used to estimate suitable adjustments for CTD-SRDLs having no profiles available in the southern ACC region. Once calibrated, the accuracy of post-processed CTD-SRDL measurements was estimated to be ±0.03oC in temperature and ±0.05 psu (practical salinity unit) or better in salinity for CTD-SRDLs built after 2007. The achieved accuracy is highly dependent upon availability of ship-based CTD comparisons, and the type of water masses sampled during the deployment time. In best cases, an accuracy of ±0.01 ºC and ±0.02 psu can be obtained. Pre-2007 CTD-SRDLs (about 5% of profiles) used an older technology with a poorer accuracy roughly estimated around ±0.1 ºC and ±0.1 psu.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This dataset collection combines the following datastreams: CTD, Argos, Haulout, Diving, Summary Statistics. Prior to October 2015, these datastreams were described and served separately but with new developments of the portal 1-2-3, they have been combined in a single collection for ease of discovery and data access.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2020-07-24 – title changed from: IMOS - AATAMS Facility - Satellite Relay Tagging Program - Delayed mode data
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ land-sea mammals
+
+
+
+
+
+
+
+
+
+ water temperature sensor
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CTD
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SMRU Ltd Satellite Relay Data Logger 9000x
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 29062
+ iso19115-3.2018
+ 2024-07-24T19:22:28Z
+ 2024-07-24T19:22:28Z
+ n
+
+ 43d5812c-49b6-4f34-817f-5b3e1e39189b
+ 06b09398-d3d0-47dc-a54a-a745319fbece
+ y
+ 7
+ 0
+ 0
+
+ csw
+
+ true
+ true
+ false
+ true
+ true
+ false
+ 1
+ admin
+ IMOS
+ -1
+ https://geonetwork-edge.edge.aodn.org.au/geonetwork
+ /srv/en
+
+
diff --git a/indexer/src/test/resources/canned/sample_incorrect_projection_stac.json b/indexer/src/test/resources/canned/sample_incorrect_projection_stac.json
index a6157598..5524e9bb 100644
--- a/indexer/src/test/resources/canned/sample_incorrect_projection_stac.json
+++ b/indexer/src/test/resources/canned/sample_incorrect_projection_stac.json
@@ -1123,6 +1123,40 @@
"start": "2003-03-31T14:00:00Z",
"end": "2013-03-01T12:59:59Z"
}
+ ],
+ "centroid": [
+ [
+ 71.996,
+ -52.413
+ ],
+ [
+ 72.678,
+ -52.357
+ ],
+ [
+ 71.394,
+ -52.025
+ ],
+ [
+ 72.867,
+ -52.464
+ ],
+ [
+ 77.116,
+ -51.909
+ ],
+ [
+ 76.019,
+ -51.817
+ ],
+ [
+ 76.454,
+ -51.782
+ ],
+ [
+ 75.502,
+ -51.8
+ ]
]
},
"contacts": [
diff --git a/indexer/src/test/resources/canned/sample_malform_date_stac.json b/indexer/src/test/resources/canned/sample_malform_date_stac.json
index 3da5fc5a..db97ddd9 100644
--- a/indexer/src/test/resources/canned/sample_malform_date_stac.json
+++ b/indexer/src/test/resources/canned/sample_malform_date_stac.json
@@ -1,87 +1,497 @@
{
- "title" : "Australian Fisheries Management Authority: Fisheries Spatial Management Through Time",
- "description" : "Information relating to Australian fisheries closures imposed by AFMA (Australian Fisheries Management Authority) and gazetted through ComLaw have been collated and tabulated with mapable GIS references in an ORACLE data base. This database allows searching, viewing and GIS mapping of the Australian spatial fisheries management through time. Mapping views of fisheries closures can be created for time, fisheries and gear types. Changes in spatial management through time will be mapable using a time-series of mapping views.\n The data is currently complete for the time-period of 2005 to Feb 2013. It is intended to continue this records as new gazettes are released as part of annual stock assessment updates. Non-fisheries closures (MPA, CMR) are also intended to be included but this is dependent on continued funding and demand for their use.\n\n Disclaimer: These data have been collated and made accessible for scientific research only, they may not be complete or representing the most up-to-date data. For the most recent spatial management arrangements for legal and commercial purposes, refer to the relevant current ComLaw documents or contact AFMA.",
- "extent" : {
- "bbox" : [ [ 67.0, -71.0, 180.0, -8.0 ], [ 67.0, -71.0, 180.0, -8.0 ] ],
- "temporal" : [ [ "2004-12-31T13:00:00Z", "2013-02-28T12:59:59Z" ], [ "2004-12-31T13:00:00Z", "2013-02-28T12:59:59Z" ] ]
+ "title": "Australian Fisheries Management Authority: Fisheries Spatial Management Through Time",
+ "description": "Information relating to Australian fisheries closures imposed by AFMA (Australian Fisheries Management Authority) and gazetted through ComLaw have been collated and tabulated with mapable GIS references in an ORACLE data base. This database allows searching, viewing and GIS mapping of the Australian spatial fisheries management through time. Mapping views of fisheries closures can be created for time, fisheries and gear types. Changes in spatial management through time will be mapable using a time-series of mapping views.\n The data is currently complete for the time-period of 2005 to Feb 2013. It is intended to continue this records as new gazettes are released as part of annual stock assessment updates. Non-fisheries closures (MPA, CMR) are also intended to be included but this is dependent on continued funding and demand for their use.\n\n Disclaimer: These data have been collated and made accessible for scientific research only, they may not be complete or representing the most up-to-date data. For the most recent spatial management arrangements for legal and commercial purposes, refer to the relevant current ComLaw documents or contact AFMA.",
+ "extent": {
+ "bbox": [
+ [
+ 67.0,
+ -71.0,
+ 180.0,
+ -8.0
+ ],
+ [
+ 67.0,
+ -71.0,
+ 180.0,
+ -8.0
+ ]
+ ],
+ "temporal": [
+ [
+ "2004-12-31T13:00:00Z",
+ "2013-02-28T12:59:59Z"
+ ],
+ [
+ "2004-12-31T13:00:00Z",
+ "2013-02-28T12:59:59Z"
+ ]
+ ]
},
- "summaries" : {
- "score" : 1,
- "status" : "onGoing",
- "credits" : [ ],
- "statement" : "Shapefiles obtained from AFMA. Closures gazetted under ComLaw -- details collated into a data base. Additional closures extracted from CommLaw documents",
- "revision" : "2015-03-06T12:10:44",
- "update_frequency" : "other",
- "proj:geometry" : {
- "geometries" : [ {
- "type" : "Polygon",
- "coordinates" : [ [ [ 67, -71 ], [ 180, -71 ], [ 180, -8 ], [ 67, -8 ], [ 67, -71 ] ] ]
- } ],
- "type" : "GeometryCollection"
+ "summaries": {
+ "score": 1,
+ "status": "onGoing",
+ "credits": [],
+ "statement": "Shapefiles obtained from AFMA. Closures gazetted under ComLaw -- details collated into a data base. Additional closures extracted from CommLaw documents",
+ "revision": "2015-03-06T12:10:44",
+ "update_frequency": "other",
+ "proj:geometry": {
+ "geometries": [
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67,
+ -71
+ ],
+ [
+ 180,
+ -71
+ ],
+ [
+ 180,
+ -8
+ ],
+ [
+ 67,
+ -8
+ ],
+ [
+ 67,
+ -71
+ ]
+ ]
+ ]
+ }
+ ],
+ "type": "GeometryCollection"
},
- "temporal" : [ {
- "start" : "2004-12-31T13:00:00Z",
- "end" : "2013-02-28T12:59:59Z"
- } ]
+ "temporal": [
+ {
+ "start": "2004-12-31T13:00:00Z",
+ "end": "2013-02-28T12:59:59Z"
+ }
+ ],
+ "centroid": [
+ [
+ 72.109,
+ -65.454
+ ],
+ [
+ 71.999,
+ -56.001
+ ],
+ [
+ 72.021,
+ -45.972
+ ],
+ [
+ 72.0,
+ -36.0
+ ],
+ [
+ 72.0,
+ -26.0
+ ],
+ [
+ 72.0,
+ -16.0
+ ],
+ [
+ 72.0,
+ -9.5
+ ],
+ [
+ 81.731,
+ -64.421
+ ],
+ [
+ 82.0,
+ -56.0
+ ],
+ [
+ 82.0,
+ -46.0
+ ],
+ [
+ 82.0,
+ -36.0
+ ],
+ [
+ 82.0,
+ -26.0
+ ],
+ [
+ 82.0,
+ -16.0
+ ],
+ [
+ 82.0,
+ -9.5
+ ],
+ [
+ 91.945,
+ -63.835
+ ],
+ [
+ 92.0,
+ -56.0
+ ],
+ [
+ 92.0,
+ -46.0
+ ],
+ [
+ 92.0,
+ -36.0
+ ],
+ [
+ 92.0,
+ -26.0
+ ],
+ [
+ 92.0,
+ -16.0
+ ],
+ [
+ 92.0,
+ -9.5
+ ],
+ [
+ 101.933,
+ -63.634
+ ],
+ [
+ 102.0,
+ -56.0
+ ],
+ [
+ 102.0,
+ -46.0
+ ],
+ [
+ 102.0,
+ -36.0
+ ],
+ [
+ 102.0,
+ -26.0
+ ],
+ [
+ 102.0,
+ -16.0
+ ],
+ [
+ 101.999,
+ -9.5
+ ],
+ [
+ 112.026,
+ -63.781
+ ],
+ [
+ 112.0,
+ -56.0
+ ],
+ [
+ 112.0,
+ -46.0
+ ],
+ [
+ 111.739,
+ -36.184
+ ],
+ [
+ 110.656,
+ -26.07
+ ],
+ [
+ 111.989,
+ -15.988
+ ],
+ [
+ 111.821,
+ -9.603
+ ],
+ [
+ 121.873,
+ -63.958
+ ],
+ [
+ 122.0,
+ -56.0
+ ],
+ [
+ 122.0,
+ -46.0
+ ],
+ [
+ 122.327,
+ -37.317
+ ],
+ [
+ 121.031,
+ -14.816
+ ],
+ [
+ 121.972,
+ -9.613
+ ],
+ [
+ 131.868,
+ -63.74
+ ],
+ [
+ 132.0,
+ -56.0
+ ],
+ [
+ 132.0,
+ -46.0
+ ],
+ [
+ 131.726,
+ -36.683
+ ],
+ [
+ 128.439,
+ -13.467
+ ],
+ [
+ 132.019,
+ -9.506
+ ],
+ [
+ 142.226,
+ -64.029
+ ],
+ [
+ 142.0,
+ -56.0
+ ],
+ [
+ 141.818,
+ -46.173
+ ],
+ [
+ 140.866,
+ -38.814
+ ],
+ [
+ 139.28,
+ -14.299
+ ],
+ [
+ 141.961,
+ -9.686
+ ],
+ [
+ 152.081,
+ -64.833
+ ],
+ [
+ 152.0,
+ -56.0
+ ],
+ [
+ 152.11,
+ -46.1
+ ],
+ [
+ 153.155,
+ -36.802
+ ],
+ [
+ 154.4,
+ -25.248
+ ],
+ [
+ 152.094,
+ -15.905
+ ],
+ [
+ 152.633,
+ -9.525
+ ],
+ [
+ 162.157,
+ -65.601
+ ],
+ [
+ 162.0,
+ -56.0
+ ],
+ [
+ 161.985,
+ -45.997
+ ],
+ [
+ 162.0,
+ -36.0
+ ],
+ [
+ 161.962,
+ -26.043
+ ],
+ [
+ 161.974,
+ -15.983
+ ],
+ [
+ 162.096,
+ -9.513
+ ],
+ [
+ 172.007,
+ -65.993
+ ],
+ [
+ 172.0,
+ -56.0
+ ],
+ [
+ 172.275,
+ -46.422
+ ],
+ [
+ 171.634,
+ -35.722
+ ],
+ [
+ 172.005,
+ -26.005
+ ],
+ [
+ 172.032,
+ -15.992
+ ],
+ [
+ 172.0,
+ -9.5
+ ],
+ [
+ 178.5,
+ -66.0
+ ],
+ [
+ 178.5,
+ -56.0
+ ],
+ [
+ 178.5,
+ -45.999
+ ],
+ [
+ 178.548,
+ -35.86
+ ],
+ [
+ 178.5,
+ -26.0
+ ],
+ [
+ 178.504,
+ -15.923
+ ],
+ [
+ 178.5,
+ -9.5
+ ],
+ [
+ 142.388,
+ -8.248
+ ]
+ ]
},
- "contacts" : [ {
- "roles" : [ "pointOfContact", "about" ],
- "organization" : "CSIRO Oceans & Atmosphere - Hobart",
- "name" : "Fuller, Mike",
- "position" : "Senior Experimental Scientist (Oceans & Atmosphere)",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- }, {
- "roles" : [ "pointOfContact", "metadata" ],
- "organization" : "CSIRO Oceans & Atmosphere - Hobart",
- "name" : "CSIRO O&A, Information & Data Centre",
- "position" : "Data Requests",
- "emails" : [ ],
- "addresses" : [ ],
- "phones" : [ ],
- "links" : [ ]
- } ],
- "languages" : [ {
- "code" : "eng",
- "name" : "English"
- } ],
- "links" : [ {
- "href" : "https://creativecommons.org/licenses/by/4.0/",
- "rel" : "related",
- "type" : "text/html",
- "title" : "Documentation Link"
- } ],
- "license" : "Data is made available under a Creative Commons Attribution 4.0 International Licence, please see link. Data is supplied 'as is' without any warranty or guarantee except as required by law to be given to you. The data may not be free of error, comprehensive, current or appropriate for your particular purpose. You accept all risk and responsibility for its use. ATTRIBUTION STATEMENT: The dataset [Insert-dataset-name-here] downloaded on [Insert-DD-Mmm-YYYY-here] was provided by CSIRO.",
- "providers" : [ {
- "name" : "CSIRO Oceans & Atmosphere - Hobart",
- "roles" : [ "pointOfContact" ]
- } ],
- "themes" : [ {
- "concepts" : [ {
- "id" : "Global / Oceans | Indian Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:4"
- }, {
- "id" : "Global / Oceans | Pacific Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:5"
- }, {
- "id" : "Global / Oceans | Southern Ocean",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:6"
- }, {
- "id" : "Marine Features (Australia) | Australian EEZ",
- "url" : "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1001"
- } ],
- "scheme" : "place",
- "description" : "AODN GEN",
- "title" : "AODN Geographic Extent Names"
- } ],
- "id" : "10955a94-8737-08e4-e053-08114f8c5e74",
- "search_suggestions" : {
- "abstract_phrases" : [ ]
+ "contacts": [
+ {
+ "roles": [
+ "pointOfContact",
+ "about"
+ ],
+ "organization": "CSIRO Oceans & Atmosphere - Hobart",
+ "name": "Fuller, Mike",
+ "position": "Senior Experimental Scientist (Oceans & Atmosphere)",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ },
+ {
+ "roles": [
+ "pointOfContact",
+ "metadata"
+ ],
+ "organization": "CSIRO Oceans & Atmosphere - Hobart",
+ "name": "CSIRO O&A, Information & Data Centre",
+ "position": "Data Requests",
+ "emails": [],
+ "addresses": [],
+ "phones": [],
+ "links": []
+ }
+ ],
+ "languages": [
+ {
+ "code": "eng",
+ "name": "English"
+ }
+ ],
+ "links": [
+ {
+ "href": "https://creativecommons.org/licenses/by/4.0/",
+ "rel": "related",
+ "type": "text/html",
+ "title": "Documentation Link"
+ }
+ ],
+ "license": "Data is made available under a Creative Commons Attribution 4.0 International Licence, please see link. Data is supplied 'as is' without any warranty or guarantee except as required by law to be given to you. The data may not be free of error, comprehensive, current or appropriate for your particular purpose. You accept all risk and responsibility for its use. ATTRIBUTION STATEMENT: The dataset [Insert-dataset-name-here] downloaded on [Insert-DD-Mmm-YYYY-here] was provided by CSIRO.",
+ "providers": [
+ {
+ "name": "CSIRO Oceans & Atmosphere - Hobart",
+ "roles": [
+ "pointOfContact"
+ ]
+ }
+ ],
+ "themes": [
+ {
+ "concepts": [
+ {
+ "id": "Global / Oceans | Indian Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:4"
+ },
+ {
+ "id": "Global / Oceans | Pacific Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:5"
+ },
+ {
+ "id": "Global / Oceans | Southern Ocean",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:6"
+ },
+ {
+ "id": "Marine Features (Australia) | Australian EEZ",
+ "url": "https://marlin.csiro.au/geonetwork/srv/eng/xml.keyword.get?thesaurus=register.place.urn:aodn.org.au:geographicextents&id=urn:aodn.org.au:geographicextents:concept:1001"
+ }
+ ],
+ "scheme": "place",
+ "description": "AODN GEN",
+ "title": "AODN Geographic Extent Names"
+ }
+ ],
+ "id": "10955a94-8737-08e4-e053-08114f8c5e74",
+ "search_suggestions": {
+ "abstract_phrases": []
},
- "sci:citation" : "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"Data is made available under a Creative Commons Attribution 4.0 International Licence, please see link. Data is supplied 'as is' without any warranty or guarantee except as required by law to be given to you. The data may not be free of error, comprehensive, current or appropriate for your particular purpose. You accept all risk and responsibility for its use. ATTRIBUTION STATEMENT: The dataset [Insert-dataset-name-here] downloaded on [Insert-DD-Mmm-YYYY-here] was provided by CSIRO.\"]}",
- "type" : "Collection",
- "stac_version" : "1.0.0",
- "stac_extensions" : [ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json", "https://stac-extensions.github.io/contacts/v0.1.1/schema.json", "https://stac-extensions.github.io/projection/v1.1.0/schema.json", "https://stac-extensions.github.io/language/v1.0.0/schema.json", "https://stac-extensions.github.io/themes/v1.0.0/schema.json", "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json" ]
+ "sci:citation": "{\"suggestedCitation\":null,\"useLimitations\":null,\"otherConstraints\":[\"Data is made available under a Creative Commons Attribution 4.0 International Licence, please see link. Data is supplied 'as is' without any warranty or guarantee except as required by law to be given to you. The data may not be free of error, comprehensive, current or appropriate for your particular purpose. You accept all risk and responsibility for its use. ATTRIBUTION STATEMENT: The dataset [Insert-dataset-name-here] downloaded on [Insert-DD-Mmm-YYYY-here] was provided by CSIRO.\"]}",
+ "type": "Collection",
+ "stac_version": "1.0.0",
+ "stac_extensions": [
+ "https://stac-extensions.github.io/scientific/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/contacts/v0.1.1/schema.json",
+ "https://stac-extensions.github.io/projection/v1.1.0/schema.json",
+ "https://stac-extensions.github.io/language/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/themes/v1.0.0/schema.json",
+ "https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json"
+ ]
}
diff --git a/indexer/src/test/resources/canned/sample_multiple_temporal1_stac.json b/indexer/src/test/resources/canned/sample_multiple_temporal1_stac.json
index 465c59a4..966cd211 100644
--- a/indexer/src/test/resources/canned/sample_multiple_temporal1_stac.json
+++ b/indexer/src/test/resources/canned/sample_multiple_temporal1_stac.json
@@ -259,16 +259,14 @@
],
"type": "GeometryCollection"
},
- "temporal": [
- {
- "start": "1980-02-27T13:00:00Z",
- "end": "1982-02-28T12:59:59Z"
- },
- {
- "start": "1984-02-27T13:00:00Z",
- "end": null
- }
- ]
+ "temporal" : [ {
+ "start" : "1980-02-27T13:00:00Z",
+ "end" : "1982-02-28T12:59:59Z"
+ }, {
+ "start" : "1984-02-27T13:00:00Z",
+ "end" : null
+ } ],
+ "centroid" : [ ]
},
"contacts": [
{
diff --git a/indexer/src/test/resources/canned/sample_multiple_temporal2_stac.json b/indexer/src/test/resources/canned/sample_multiple_temporal2_stac.json
index d9084ebe..32462237 100644
--- a/indexer/src/test/resources/canned/sample_multiple_temporal2_stac.json
+++ b/indexer/src/test/resources/canned/sample_multiple_temporal2_stac.json
@@ -259,16 +259,14 @@
],
"type": "GeometryCollection"
},
- "temporal": [
- {
- "start": "1980-02-27T13:00:00Z",
- "end": "1982-02-28T12:59:59Z"
- },
- {
- "start": "1984-02-27T13:00:00Z",
- "end": "1985-02-28T12:59:59Z"
- }
- ]
+ "temporal" : [ {
+ "start" : "1980-02-27T13:00:00Z",
+ "end" : "1982-02-28T12:59:59Z"
+ }, {
+ "start" : "1984-02-27T13:00:00Z",
+ "end" : "1985-02-28T12:59:59Z"
+ } ],
+ "centroid" : [ ]
},
"contacts": [
{
diff --git a/indexer/src/test/resources/canned/sample_multiple_temporal_null_stac.json b/indexer/src/test/resources/canned/sample_multiple_temporal_null_stac.json
index 80554393..fcfdf3d1 100644
--- a/indexer/src/test/resources/canned/sample_multiple_temporal_null_stac.json
+++ b/indexer/src/test/resources/canned/sample_multiple_temporal_null_stac.json
@@ -37,7 +37,7 @@
"creation": "2017-07-13T11:23:44",
"revision": "2017-07-13T11:23:44",
"dataset_provider": "IMOS",
- "update_frequency":"other",
+ "update_frequency": "other",
"proj:geometry": {
"geometries": [
{
@@ -70,7 +70,93 @@
],
"type": "GeometryCollection"
},
- "temporal": []
+ "temporal": [],
+ "centroid": [
+ [
+ 116.989,
+ -39.164
+ ],
+ [
+ 113.503,
+ -29.848
+ ],
+ [
+ 116.404,
+ -17.739
+ ],
+ [
+ 116.944,
+ -11.534
+ ],
+ [
+ 127.0,
+ -39.0
+ ],
+ [
+ 128.46,
+ -33.0
+ ],
+ [
+ 124.296,
+ -15.192
+ ],
+ [
+ 126.75,
+ -11.437
+ ],
+ [
+ 136.541,
+ -39.511
+ ],
+ [
+ 133.792,
+ -33.185
+ ],
+ [
+ 139.021,
+ -15.414
+ ],
+ [
+ 137.55,
+ -11.162
+ ],
+ [
+ 147.661,
+ -40.436
+ ],
+ [
+ 151.732,
+ -33.444
+ ],
+ [
+ 149.199,
+ -17.646
+ ],
+ [
+ 147.263,
+ -11.555
+ ],
+ [
+ 153.0,
+ -39.0
+ ],
+ [
+ 153.77,
+ -28.934
+ ],
+ [
+ 153.0,
+ -19.0
+ ],
+ [
+ 153.0,
+ -11.52
+ ],
+ [
+ 148.788,
+ -9.035
+ ]
+ ]
},
"contacts": [
{
diff --git a/pom.xml b/pom.xml
index 63141e59..bc669926 100644
--- a/pom.xml
+++ b/pom.xml
@@ -153,6 +153,11 @@
gt-referencing
${org.geotools.version}
+
+ org.geotools
+ gt-shapefile
+ 22.2
+
org.geotools
diff --git a/stacmodel/src/main/java/au/org/aodn/stac/model/SummariesModel.java b/stacmodel/src/main/java/au/org/aodn/stac/model/SummariesModel.java
index 3529cf19..9809cebb 100644
--- a/stacmodel/src/main/java/au/org/aodn/stac/model/SummariesModel.java
+++ b/stacmodel/src/main/java/au/org/aodn/stac/model/SummariesModel.java
@@ -5,6 +5,7 @@
import lombok.Builder;
import lombok.Data;
+import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
@@ -40,7 +41,7 @@ public class SummariesModel {
* Use to generate the vector tile, the STAC format is not optimized and hard to work with for Elastic search
*/
@JsonProperty("proj:geometry")
- protected Map geometry;
+ protected Map, ?> geometry;
/**
* Use for effective search on temporal.
*/
@@ -64,4 +65,7 @@ public class SummariesModel {
*/
@JsonProperty("organisation_vocabs")
protected List organisationVocabs;
+
+ @JsonProperty("centroid")
+ protected List> centroid;
}