diff --git a/ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/model/VocabModel.java b/ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/model/VocabModel.java index 90b70f71..6e16bb3a 100644 --- a/ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/model/VocabModel.java +++ b/ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/model/VocabModel.java @@ -1,6 +1,7 @@ package au.org.aodn.ardcvocabs.model; import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; import lombok.*; import java.util.List; @@ -13,8 +14,19 @@ @JsonInclude(JsonInclude.Include.NON_NULL) public class VocabModel { protected String label; + @JsonProperty("display_label") + protected String displayLabel; + @JsonProperty("hidden_labels") + protected List hiddenLabels; + @JsonProperty("alt_labels") + protected List altLabels; + @JsonProperty("is_latest_label") + protected Boolean isLatestLabel; + @JsonProperty("replaced_by") + protected String replacedBy; protected String definition; protected String about; protected List broader; protected List narrower; + protected String version; } diff --git a/ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/service/ArdcVocabServiceImpl.java b/ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/service/ArdcVocabServiceImpl.java index 5257d37f..a736a6e0 100644 --- a/ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/service/ArdcVocabServiceImpl.java +++ b/ardcvocabs/src/main/java/au/org/aodn/ardcvocabs/service/ArdcVocabServiceImpl.java @@ -15,6 +15,10 @@ import java.util.*; import java.util.function.BiFunction; import java.util.function.Function; +import java.util.stream.StreamSupport; +import java.util.stream.Collectors; +import java.util.regex.Matcher; +import java.util.regex.Pattern; public class ArdcVocabServiceImpl implements ArdcVocabService { @@ -26,9 +30,59 @@ public class ArdcVocabServiceImpl implements ArdcVocabService { protected RestTemplate restTemplate; protected RetryTemplate retryTemplate; - protected Function label = (node) -> node.has("prefLabel") ? node.get("prefLabel").get("_value").asText() : null; - protected Function about = (node) -> node.has("_about") ? node.get("_about").asText() : null; - protected Function definition = (node) -> node.has("definition") ? node.get("definition").asText() : null; + protected Function extractSingleText(String key) { + return (node) -> { + JsonNode labelNode = node.get(key); + if (labelNode != null) { + if (labelNode.has("_value")) { + return labelNode.get("_value").asText(); + } + if (labelNode instanceof TextNode) { + return labelNode.asText(); + } + } + return null; + }; + } + protected Function> extractMultipleTexts(String key) { + return (node) -> { + JsonNode labelNode = node.get(key); + if (labelNode != null && labelNode.isArray()) { + return StreamSupport.stream(labelNode.spliterator(), false) + .filter(Objects::nonNull) + .map(i -> i.get("_value").asText()) + .collect(Collectors.toList()); + } + return null; + }; + } + + // Reusing the utility methods for specific labels + protected Function label = extractSingleText("prefLabel"); + protected Function displayLabel = extractSingleText("displayLabel"); + protected Function> hiddenLabels = extractMultipleTexts("hiddenLabel"); + protected Function> altLabels = extractMultipleTexts("altLabel"); + protected Function about = extractSingleText("_about"); + protected Function definition = extractSingleText("definition"); + protected Function isLatestLabel = (node) -> !(node.has("isReplacedBy") || (node.has("scopeNote") && extractSingleText("scopeNote").apply(node).toLowerCase().contains("no longer exists"))); + protected Function isReplacedBy = (node) -> node.has("isReplacedBy") && node.has("scopeNote") && extractSingleText("scopeNote").apply(node).toLowerCase().contains("replaced by"); + + private String extractReplacedVocabUri(String scopeNote) { + String regex = "Replaced by (https?://[\\w./-]+)"; + Pattern pattern = Pattern.compile(regex); + Matcher matcher = pattern.matcher(scopeNote); + + if (matcher.find()) { + String result = matcher.group(1); + if (result.endsWith(".")) { + result = result.substring(0, result.length() - 1); + } + return result; + } + + return null; + } + protected BiFunction isNodeValid = (node, item) -> node != null && !node.isEmpty() && node.has(item) && !node.get(item).isEmpty(); public ArdcVocabServiceImpl(RestTemplate restTemplate, RetryTemplate retryTemplate) { @@ -54,8 +108,16 @@ protected VocabModel buildVocabByResourceUri(String vocabUri, String vocabApiBas .label(label.apply(target)) .definition(definition.apply(target)) .about(vocabUri) + .displayLabel(displayLabel.apply(target)) + .hiddenLabels(hiddenLabels.apply(target)) + .altLabels(altLabels.apply(target)) + .isLatestLabel(isLatestLabel.apply(target)) .build(); + if (!vocab.getIsLatestLabel() && isReplacedBy.apply(target)) { + vocab.setReplacedBy(extractReplacedVocabUri(extractSingleText("scopeNote").apply(target))); + } + List narrowerNodes = new ArrayList<>(); if (isNodeValid.apply(target, "narrower")) { for (JsonNode j : target.get("narrower")) { @@ -130,8 +192,16 @@ protected Map> getVocabLeafNodes(String vocabApiBase, V .label(label.apply(target)) .definition(definition.apply(target)) .about(about.apply(target)) + .displayLabel(displayLabel.apply(target)) + .hiddenLabels(hiddenLabels.apply(target)) + .altLabels(altLabels.apply(target)) + .isLatestLabel(isLatestLabel.apply(target)) .build(); + if (!vocab.getIsLatestLabel() && isReplacedBy.apply(target)) { + vocab.setReplacedBy(extractReplacedVocabUri(extractSingleText("scopeNote").apply(target))); + } + List vocabNarrower = new ArrayList<>(); if(target.has("narrower") && !target.get("narrower").isEmpty()) { for(JsonNode currentNode : target.get("narrower")) { diff --git a/ardcvocabs/src/test/resources/databag/aodn_discovery_parameter_vocabs.json b/ardcvocabs/src/test/resources/databag/aodn_discovery_parameter_vocabs.json index 4888bb40..2c0cac0c 100644 --- a/ardcvocabs/src/test/resources/databag/aodn_discovery_parameter_vocabs.json +++ b/ardcvocabs/src/test/resources/databag/aodn_discovery_parameter_vocabs.json @@ -12,14 +12,23 @@ { "label": "Pressure (measured variable) exerted by the atmosphere and correction to sea level", "definition": "Measurement as a phenomenon (as opposed to a co-ordinate) of the force per unit area exerted by the atmosphere determined in-situ at a known altitude and converted to the value at sea level assuming an isothermal layer.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/77" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/77", + "hidden_labels": [ + "ATMS" + ], + "is_latest_label": true }, { "label": "Pressure (measured variable) exerted by the atmosphere", "definition": "Measurement as a phenomenon (as opposed to a co-ordinate) of the force per unit area exerted by the atmosphere determined in-situ at a known altitude.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CAPHZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CAPHZZ01", + "hidden_labels": [ + "ATMP" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Visibility", @@ -28,14 +37,23 @@ "narrower": [ { "label": "Horizontal visibility in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/390" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/390", + "hidden_labels": [ + "VIS" + ], + "is_latest_label": true }, { "label": "Present weather in the atmosphere", "definition": "Visual observation using WMO code table 4677 or 4501", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/397" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/397", + "hidden_labels": [ + "WX" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Air-Sea Fluxes", @@ -45,53 +63,107 @@ { "label": "Net shortwave heat flux", "definition": "The net shortwave heat flux is the difference between the downwelling radiation from the sun as modified by the gases and clouds of the atmosphere and the radiation returned from the sea surface, which is either reflected by the surface or backscattered from within the water column.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/10" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/10", + "hidden_labels": [ + "SW_NET" + ], + "is_latest_label": true }, { "label": "Net heat flux", "definition": "Net surface heat flux across the air-sea interface.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/11" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/11", + "hidden_labels": [ + "HEAT_NET" + ], + "is_latest_label": true }, { "label": "Net mass flux", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/12" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/12", + "hidden_labels": [ + "MASS_NET" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as photons (PAR wavelengths) in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/572" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/572", + "hidden_labels": [ + "RAD_PAR" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as energy (solar (300-3000nm) wavelengths) in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/576" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/576", + "hidden_labels": [ + "SW" + ], + "is_latest_label": true }, { "label": "Sensible heat flux", "definition": "Heat exchange due to difference in temperature between air and water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/6" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/6", + "hidden_labels": [ + "HS" + ], + "alt_labels": [ + "surface upward sensible heat flux" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as energy in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/651" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/651", + "hidden_labels": [ + "Ed" + ], + "is_latest_label": true }, { "label": "Latent heat flux", "definition": "Heat loss due to evaporation", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/7" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/7", + "hidden_labels": [ + "HL" + ], + "alt_labels": [ + "surface upward latent heat flux" + ], + "is_latest_label": true }, { "label": "Sensible heat flux due to precipitation", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/8" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/8", + "hidden_labels": [ + "H_RAIN" + ], + "alt_labels": [ + "upward heat flux due to rainfall" + ], + "is_latest_label": true }, { "label": "Net longwave heat flux", "definition": "The net longwave heat flux is the net flux of the greybody emissions from the sea surface, cloud layers and the gases of the atmosphere.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/9" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/9", + "hidden_labels": [ + "LW_NET" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as energy (longwave) in the atmosphere", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/LWRDZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/LWRDZZ01", + "hidden_labels": [ + "LW" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "UV radiation", @@ -100,9 +172,14 @@ "narrower": [ { "label": "Downwelling vector irradiance as energy (ultra-violet wavelengths) in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/733" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/733", + "hidden_labels": [ + "RAD_UV" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Wind", @@ -112,45 +189,76 @@ { "label": "Wind speed of gust in the atmosphere", "definition": "Maximum speed of the wind (distance moved per unit time by a parcel of air) parallel to the ground during a gust event (generally regarded as an increase over sustained speed of more than 5m/s lasting less than 20 seconds).", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/395" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/395", + "hidden_labels": [ + "WSPD_GUST" + ], + "is_latest_label": true }, { "label": "Wind to direction in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/396" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/396", + "hidden_labels": [ + "WDIR" + ], + "is_latest_label": true }, { "label": "Wind stress on the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/406" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/406", + "hidden_labels": [ + "TAU" + ], + "is_latest_label": true }, { "label": "Wind direction (relative to moving platform) in the atmosphere", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/ERWDZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/ERWDZZ01", + "is_latest_label": true }, { "label": "Wind speed (relative to moving platform) in the atmosphere", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/ERWSZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/ERWSZZ01", + "is_latest_label": true }, { "label": "Eastward wind velocity in the atmosphere", "definition": "The component of the wind blowing towards true east. The value could result from any kind of measurement or prediction.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/ESEWZZXX" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/ESEWZZXX", + "hidden_labels": [ + "UWND" + ], + "is_latest_label": true }, { "label": "Northward wind velocity in the atmosphere", "definition": "The component of the wind blowing towards true north. The value could result from any kind of measurement or prediction.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/ESNSZZXX" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/ESNSZZXX", + "hidden_labels": [ + "VWND" + ], + "is_latest_label": true }, { "label": "Wind speed in the atmosphere", "definition": "Sustained speed of the wind (distance moved per unit time by a parcel of air) parallel to the ground at a given place and time", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/ESSAZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/ESSAZZ01", + "hidden_labels": [ + "WSPD" + ], + "is_latest_label": true }, { "label": "Wind from direction in the atmosphere", "definition": "Direction relative to true north from which the wind is blowing", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/EWDAZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/EWDAZZ01", + "hidden_labels": [ + "WDIRF" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Air temperature", @@ -160,18 +268,31 @@ { "label": "Dew point temperature of the atmosphere", "definition": "The temperature to which air must cool to become saturated with water vapour", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CDEWZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CDEWZZ01", + "hidden_labels": [ + "DEWT" + ], + "is_latest_label": true }, { "label": "Temperature of the atmosphere", "definition": "The degree of hotness of the atmosphere expressed against a standard scale. Includes both IPTS-68 and ITS-90 scales.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CTMPZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CTMPZZ01", + "hidden_labels": [ + "AIRT" + ], + "is_latest_label": true }, { "label": "Wet bulb temperature of the atmosphere", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CWETZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CWETZZ01", + "hidden_labels": [ + "WETT" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Humidity", @@ -181,22 +302,36 @@ { "label": "Dew point temperature of the atmosphere", "definition": "The temperature to which air must cool to become saturated with water vapour", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CDEWZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CDEWZZ01", + "hidden_labels": [ + "DEWT" + ], + "is_latest_label": true }, { "label": "Specific humidity of the atmosphere", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CHUMSS01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CHUMSS01", + "is_latest_label": true }, { "label": "Relative humidity of the atmosphere", "definition": "The ratio of the amount of water vapour in the air compared to the maximum amount of water vapour that can theoretically be held at the air's temperature", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CRELZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CRELZZ01", + "hidden_labels": [ + "RELH" + ], + "is_latest_label": true }, { "label": "Wet bulb temperature of the atmosphere", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CWETZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CWETZZ01", + "hidden_labels": [ + "WETT" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Precipitation and evaporation", @@ -205,29 +340,45 @@ "narrower": [ { "label": "Thickness of precipitation amount (liquid water equivalent) in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/386" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/386", + "hidden_labels": [ + "RAIN_AMOUNT" + ], + "is_latest_label": true }, { "label": "Precipitation duration (liquid water equivalent) in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/405" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/405", + "hidden_labels": [ + "RAIN_DURATION" + ], + "is_latest_label": true }, { "label": "Hail duration in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/637" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/637", + "is_latest_label": true }, { "label": "Thickness of hail amount in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/638" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/638", + "is_latest_label": true }, { "label": "Hail intensity in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/639" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/639", + "is_latest_label": true }, { "label": "Precipitation rate (liquid water equivalent) in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/94" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/94", + "hidden_labels": [ + "RRATE" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] }, @@ -238,7 +389,8 @@ "narrower": [ { "label": "pH (total scale) of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/27" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/27", + "is_latest_label": true }, { "label": "Oxygen", @@ -248,18 +400,31 @@ { "label": "Concentration of oxygen {O2} per unit volume of the water body", "definition": "Concentration of dissolved oxygen per unit volume of the water column. Oxygen may be expressed in terms of mass, volume or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/372" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/372", + "hidden_labels": [ + "DOX1" + ], + "is_latest_label": true }, { "label": "Concentration of oxygen {O2} per unit mass of the water body", "definition": "Concentration of dissolved oxygen per unit mass of the water column. Oxygen may be expressed in terms of mass, volume or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/373" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/373", + "hidden_labels": [ + "DOXY" + ], + "is_latest_label": true }, { "label": "Saturation of oxygen {O2} in the water body [dissolved phase]", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/84" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/84", + "hidden_labels": [ + "DOXS" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Alkalinity", @@ -269,13 +434,16 @@ { "label": "Total alkalinity per unit mass of the water body", "definition": "Concentration (moles or mass) of acid-neutralising bases per unit mass of the water column", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/MDMAP014" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/MDMAP014", + "is_latest_label": true }, { "label": "Concentration of carbonate ions per unit mass of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/26" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/26", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Suspended particulate material", @@ -284,17 +452,30 @@ "narrower": [ { "label": "Concentration of suspended particulate material per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/654" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/654", + "hidden_labels": [ + "SPM" + ], + "is_latest_label": true }, { "label": "Concentration of suspended particulate material (organic) per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/655" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/655", + "hidden_labels": [ + "SPM_org" + ], + "is_latest_label": true }, { "label": "Concentration of suspended particulate material (inorganic) per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/656" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/656", + "hidden_labels": [ + "SPM_inorg" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Nutrient", @@ -304,69 +485,102 @@ { "label": "Concentration of nitrate {NO3} per unit volume of the water body", "definition": "Concentration of nitrate per unit volume of the water column. Nitrate may be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/374" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/374", + "hidden_labels": [ + "NTRA" + ], + "is_latest_label": true }, { "label": "Concentration of nitrate {NO3} per unit mass of the water body", "definition": "Concentration (moles or mass) of nitrogen as nitrate per unit mass of the water column", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/375" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/375", + "hidden_labels": [ + "NTR2" + ], + "is_latest_label": true }, { "label": "Concentration of silicate {SiO4} per unit volume of the water body", "definition": "Concentration of silicate per unit volume of the water column. Silicate may be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/376" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/376", + "hidden_labels": [ + "SLCA" + ], + "is_latest_label": true }, { "label": "Concentration of ammonium {NH4} per unit volume of the water body", "definition": "Concentration of ammonium per unit volume of the water column. Ammonium may be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/377" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/377", + "is_latest_label": true }, { "label": "Concentration of silicate {SiO4} per unit mass of the water body", "definition": "Concentration (moles or mass) of silicon as silicate per unit mass of the water column", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/378" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/378", + "hidden_labels": [ + "SLC2" + ], + "is_latest_label": true }, { "label": "Concentration of phosphate {PO4} per unit volume of the water body", "definition": "Concentration of phosphate per unit volume of the water column. Phosphate may be expressed in terms of mass or quantity of substance", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/379" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/379", + "hidden_labels": [ + "PHO2" + ], + "is_latest_label": true }, { "label": "Concentration of phosphate {PO4} per unit mass of the water body", "definition": "Concentration of phosphate dissolved per unit mass of the water column. Solute may be expressed in terms of mass, volume or quantity of substance", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/380" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/380", + "hidden_labels": [ + "PHOS" + ], + "is_latest_label": true }, { "label": "Concentration of nitrate and nitrite {NO3 and NO2} per unit mass of the water body", "definition": "Concentration (moles or mass) of nitrogen as both nitrate and nitrite per unit mass of the water column.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/45" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/45", + "is_latest_label": true }, { "label": "Concentration of nitrate and nitrite {NO3 and NO2} per unit volume of the water body", "definition": "Concentration of nitrate and nitrite per unit volume of the water column. May be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/46" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/46", + "is_latest_label": true }, { "label": "Concentration of total phosphorus per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/47" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/47", + "is_latest_label": true }, { "label": "Concentration of total phosphorus per unit mass of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/48" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/48", + "is_latest_label": true }, { "label": "Concentration of nitrite {NO2} per unit mass of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/49" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/49", + "is_latest_label": true }, { "label": "Concentration of nitrite {NO2} per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/50" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/50", + "is_latest_label": true }, { "label": "Concentration of phosphate (water soluble reactive) per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/53" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/53", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Carbon", @@ -376,52 +590,66 @@ { "label": "Concentration of carbon (total inorganic) per unit mass of the water body", "definition": "Concentration of dissolved inorganic carbon per unit mass of the water column. Solute may be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/1" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/1", + "hidden_labels": [ + "TCO2" + ], + "is_latest_label": true }, { "label": "Partial pressure of carbon dioxide in the atmosphere", "definition": "The partial pressure of carbon dioxide in air", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/422" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/422", + "is_latest_label": true }, { "label": "Partial pressure of carbon dioxide in the water body", "definition": "The partial pressure of carbon dioxide in air in equilibrium with a water sample", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/425" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/425", + "is_latest_label": true }, { "label": "Fugacity anomaly (water - air) of carbon dioxide in the water body", "definition": "The difference in the CO2 fugacity (effective partial pressure allowing for non-ideal gas) between air in equilibrium with seawater and the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/427" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/427", + "is_latest_label": true }, { "label": "Fugacity of carbon dioxide (at 100% humidity) in the atmosphere", "definition": "The fugacity (effective partial pressure allowing for non-ideal gas) of carbon dioxide in the atmosphere assuming a humidity of 100 per cent.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/FCO2WTAT" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/FCO2WTAT", + "is_latest_label": true }, { "label": "Fugacity of carbon dioxide (at 100% humidity) in the water body", "definition": "Fugacity (partial pressure corrected for non-ideality of gases) of carbon dioxide in air that is in equilibrium with a seawater sample", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/FCO2XXXX" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/FCO2XXXX", + "is_latest_label": true }, { "label": "Mole fraction of carbon dioxide (dry air) in the atmosphere", "definition": "The proportion as a ratio of quantity of matter of CO2 in a sample of atmosphere expressed on a dry air basis", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/XCO2DRAT" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/XCO2DRAT", + "is_latest_label": true }, { "label": "Mole fraction of carbon dioxide (dry air) in the equilibrated marine sample", "definition": "The proportion as a ratio of quantity of matter of CO2 in a sample of air equilibrated with seawater expressed on a dry air basis", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/XCO2WBDY" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/XCO2WBDY", + "is_latest_label": true }, { "label": "Saturation state of aragonite in the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/24" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/24", + "is_latest_label": true }, { "label": "Saturation state of calcite in the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/25" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/25", + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] }, @@ -437,92 +665,164 @@ "narrower": [ { "label": "Concentration of inferred chlorophyll from relative fluorescence per unit mass of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/893" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/893", + "is_latest_label": true }, { "label": "Concentration of inferred chlorophyll from relative fluorescence per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/894" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/894", + "is_latest_label": true }, { "label": "Concentration of total chlorophyll-a per unit volume of the water body", "definition": "The amount (mass or moles) of the following pigments (divinyl chlorophyll-a, chlorophyll-a, chlorophyllide-a, chlorophyll-a allomers and chlorophyll-a prime) in a known volume of any water body.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/13" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/13", + "hidden_labels": [ + "TOT_CPHL_a" + ], + "is_latest_label": true }, { "label": "Concentration of total chlorophyll-c per unit volume of the water body", "definition": "The amount (mass or moles) of the following pigments (chlorophyll-c1, chlorophyll-c2, chlorophyll-c1c2, chlorophyll-c3) in a known volume of any water body.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/14" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/14", + "hidden_labels": [ + "TOT_CPHL_c" + ], + "is_latest_label": true }, { "label": "Concentration of total chlorophyll-a plus chlorophyll-b plus chlorophyll-c per unit volume of the water body", "definition": "The amount (mass or moles) of total chlorophyll-a (divinyl chlorophyll-a, chlorophyll-a, chlorophyllide-a, chlorophyll-a allomers and chlorophyll-a prime) plus total chlorophyll-b (divinyl chlorophyll-b, chlorophyll-b) plus total chlorophyll-c (chlorophyll-c1, chlorophyll-c2, chlorophyll-c1c2, chlorophyll-c3) in a known volume of any water body.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/15" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/15", + "hidden_labels": [ + "TOT_CPHL" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll-b per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/745" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/745", + "hidden_labels": [ + "CPHL_B" + ], + "is_latest_label": true }, { "label": "Concentration of divinyl chlorophyll-b per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/746" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/746", + "hidden_labels": [ + "DV_CPHL_B" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll-a per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/750" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/750", + "hidden_labels": [ + "CPHL_A" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll-a plus divinyl chlorophyll-a per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/752" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/752", + "hidden_labels": [ + "DV_CPHL_A_AND_CPHL_A" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll-b plus divinyl chlorophyll-b per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/753" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/753", + "hidden_labels": [ + "DV_CPHL_B_AND_CPHL_B" + ], + "is_latest_label": true }, { "label": "Concentration of divinyl chlorophyll-a per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/754" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/754", + "hidden_labels": [ + "DV_CPHL_A" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyllide-a per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/757" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/757", + "hidden_labels": [ + "CPHLIDE_A" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll-c2 per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/758" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/758", + "hidden_labels": [ + "CPHL_C2" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll-c1 per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/759" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/759", + "hidden_labels": [ + "CPHL_C1" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll-c1c2 per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/760" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/760", + "hidden_labels": [ + "CPHL_C1C2" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll-c3 per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/761" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/761", + "hidden_labels": [ + "CPHL_C3" + ], + "is_latest_label": true }, { "label": "Concentration of chlorophyll per unit mass of the water body", "definition": "The mass of all types of chlorophyll per unit mass of the water column held in particles of any size", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CHLTMASS" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CHLTMASS", + "is_latest_label": true }, { "label": "Concentration of chlorophyll per unit volume of the water body", "definition": "The mass of all types of chlorophyll per unit volume of the water column held in particles of any size", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CHLTVOLU" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CHLTVOLU", + "hidden_labels": [ + "CPHL" + ], + "is_latest_label": true }, { "label": "Fluorescence of the water body", "definition": "The amount of radiation generated in the water column in response to higher energy radiation transmission expressed relative to an unspecified baseline", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/FLUOZZZZ" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/FLUOZZZZ", + "hidden_labels": [ + "FLU2" + ], + "is_latest_label": true }, { "label": "Concentration of total chlorophyll-b per unit volume of the water body", "definition": "The amount (mass or moles) of the following pigments (divinyl chlorophyll-b and chlorophyll-b) in a known volume of any water body.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/52" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/52", + "hidden_labels": [ + "Tot_CPHL_b" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Other Pigment", @@ -532,177 +832,335 @@ { "label": "Light absorption coefficient of dissolved organic matter", "definition": "The proportion of the incident light that is absorbed by the dissolved component of a sample from any body of fresh or salt water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/890" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/890", + "alt_labels": [ + "Ag" + ], + "is_latest_label": true }, { "label": "Light absorption coefficient of phytoplankton", "definition": "The proportion of the incident light that is absorbed by the algal (phytoplankton) component of a sample from any body of fresh or salt water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/891" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/891", + "alt_labels": [ + "Aph" + ], + "is_latest_label": true }, { "label": "Light absorption coefficient of nonalgal particles", "definition": "The proportion of the incident light that is absorbed by the detrital or non-algal component of a sample from any body of fresh or salt water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/892" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/892", + "alt_labels": [ + "Ad" + ], + "is_latest_label": true }, { "label": "Concentration of photoprotective carotenoids per unit volume of the water body", "definition": "The amount (mass or moles) of the following pigments (alloxanthin, diadinoxanthin, diatoxanthin, Zeaxanthin, alpha carotene, beta carotene) in a known volume of any water body.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/16" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/16", + "hidden_labels": [ + "PPC" + ], + "is_latest_label": true }, { "label": "Concentration of photosynthetic carotenoids per unit volume of the water body", "definition": "The amount (mass or moles) of the following pigments (19-butanoyloxyfucoxanthin, fucoxanthin, 19-hexanoyloxyfucoxanthin, peridinin) in a known volume of any water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/17" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/17", + "hidden_labels": [ + "PSC" + ], + "is_latest_label": true }, { "label": "Concentration of photosynthetic pigments per unit volume of the water body", "definition": "The amount (mass or moles) of photosynthetic carotenoids (19-butanoyloxyfucoxanthin, fucoxanthin, 19-hexanoyloxyfucoxanthin, peridinin) plus total chlorophyll-a pigments (divinyl chlorophyll-a, chlorophyll-a, chlorophyllide-a, chlorophyll-a allomers and chlorophyll-a prime) plus total chlorophyll-b pigments (divinyl chlorophyll-b, chlorophyll-b) plus total chlorophyll-c pigments (chlorophyll-c1, chlorophyll-c2, chlorophyll-c1c2, chlorophyll-c3) in a known volume of any water body.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/18" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/18", + "hidden_labels": [ + "PSP" + ], + "is_latest_label": true }, { "label": "Concentration of total accessory pigments per unit volume of the water body", "definition": "The amount (mass or moles) of photosynthetic carotenoids (19-butanoyloxyfucoxanthin, fucoxanthin, 19-hexanoyloxyfucoxanthin, peridinin) plus photoprotective carotenoids (alloxanthin, diadinoxanthin, diatoxanthin, Zeaxanthin, alpha carotene, beta carotene) plus total chlorophyll-b pigments (divinyl chlorophyll-b, chlorophyll-b) plus total chlorophyll-c pigments (chlorophyll-c1, chlorophyll-c2, chlorophyll-c1c2, chlorophyll-c3) in a known volume of any water body.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/19" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/19", + "hidden_labels": [ + "Tacc" + ], + "is_latest_label": true }, { "label": "Concentration of total pigment per unit volume of the water body", "definition": "The amount (mass or moles) of all pigments in a known volume of any water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/20" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/20", + "hidden_labels": [ + "Tpg" + ], + "is_latest_label": true }, { "label": "Concentration of total diagnostic pigments per unit volume of the water body", "definition": "The amount (mass or moles) of photosynthetic carotenoids (19-butanoyloxyfucoxanthin, fucoxanthin, 19-hexanoyloxyfucoxanthin, peridinin) plus total chlorophyll-b pigments (divinyl chlorophyll-b, chlorophyll-b) plus alloxanthin and zeaxanthin in a known volume of any water body.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/21" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/21", + "hidden_labels": [ + "Dp" + ], + "is_latest_label": true }, { "label": "Concentration of echinenone per unit mass of the water body", "definition": "The amount (mass or moles) of the specified pigment determined by HPLC assay of a sample collected by dissolution in acteone of the residue collected by GF/F filtration of a known volume of any water body. The quoted value either results from a single determination or the average of replicate determinations", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/478" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/478", + "hidden_labels": [ + "ECHIN" + ], + "is_latest_label": true }, { "label": "Concentration of antheraxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/658" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/658", + "hidden_labels": [ + "ANTH" + ], + "is_latest_label": true }, { "label": "Concentration of canthaxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/659" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/659", + "hidden_labels": [ + "CANTHA" + ], + "is_latest_label": true }, { "label": "Concentration of lutein per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/660" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/660", + "hidden_labels": [ + "LUT" + ], + "is_latest_label": true }, { "label": "Concentration of neoxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/734" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/734", + "hidden_labels": [ + "NEO" + ], + "is_latest_label": true }, { "label": "Concentration of prasinoxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/735" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/735", + "hidden_labels": [ + "PRAS" + ], + "is_latest_label": true }, { "label": "Concentration of violaxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/736" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/736", + "hidden_labels": [ + "VIOLA" + ], + "is_latest_label": true }, { "label": "Concentration of astaxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/737" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/737", + "hidden_labels": [ + "ASTA" + ], + "is_latest_label": true }, { "label": "Concentration of dinoxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/738" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/738", + "hidden_labels": [ + "DINO" + ], + "is_latest_label": true }, { "label": "Concentration of diatoxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/739" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/739", + "hidden_labels": [ + "DIATO" + ], + "is_latest_label": true }, { "label": "Concentration of zeaxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/740" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/740", + "hidden_labels": [ + "ZEA" + ], + "is_latest_label": true }, { "label": "Concentration of lycopene per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/741" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/741", + "hidden_labels": [ + "LYCO" + ], + "is_latest_label": true }, { "label": "Concentration of diadinoxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/742" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/742", + "hidden_labels": [ + "DIADINO" + ], + "is_latest_label": true }, { "label": "Concentration of gyroxanthin diester per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/743" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/743", + "hidden_labels": [ + "GYRO" + ], + "is_latest_label": true }, { "label": "Concentration of diadinochrome per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/744" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/744", + "hidden_labels": [ + "DIADCHR" + ], + "is_latest_label": true }, { "label": "Concentration of 19-hexanoyloxyfucoxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/747" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/747", + "hidden_labels": [ + "HEX_FUCO" + ], + "is_latest_label": true }, { "label": "Concentration of pheophytin-a per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/748" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/748", + "hidden_labels": [ + "PHYTIN_A" + ], + "is_latest_label": true }, { "label": "Concentration of pheophytin-b per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/749" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/749", + "hidden_labels": [ + "PHYTIN_B" + ], + "is_latest_label": true }, { "label": "Concentration of pyropheophytin-a per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/751" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/751", + "hidden_labels": [ + "PYTOPHYTIN_A" + ], + "is_latest_label": true }, { "label": "Concentration of pyropheophorbide-a per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/755" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/755", + "hidden_labels": [ + "PYROPHIDE_A" + ], + "is_latest_label": true }, { "label": "Concentration of pheophorbide-a per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/756" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/756", + "hidden_labels": [ + "PHIDE_A" + ], + "is_latest_label": true }, { "label": "Concentration of 19-butanoyloxyfucoxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/762" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/762", + "hidden_labels": [ + "BUT_FUCO" + ], + "is_latest_label": true }, { "label": "Concentration of 4-keto-19-hexanoyloxyfucoxanthin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/763" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/763", + "hidden_labels": [ + "KETO_HEX_FUCO" + ], + "is_latest_label": true }, { "label": "Concentration of alpha-carotene per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/764" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/764", + "hidden_labels": [ + "BETA_EPI_CAR" + ], + "is_latest_label": true }, { "label": "Concentration of beta-carotene per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/765" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/765", + "hidden_labels": [ + "BETA_BETA_CAR" + ], + "is_latest_label": true }, { "label": "Concentration of alpha-carotene and beta-carotene per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/766" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/766", + "hidden_labels": [ + "ALPHA_BETA_CAR" + ], + "is_latest_label": true }, { "label": "Concentration of Mg-2,4-divinyl pheoporphyrin a5 monomethyl ester per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/767" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/767", + "hidden_labels": [ + "MG_DVP" + ], + "is_latest_label": true }, { "label": "Concentration of alloxanthin per unit volume of the water body", "definition": "Concentration of the carotenoid pigment alloxanthin per unit volume of a water body. The pigment is contained in suspended particles of unspecified size", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/ALLOXXPX" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/ALLOXXPX", + "hidden_labels": [ + "ALLO" + ], + "is_latest_label": true }, { "label": "Concentration of fucoxanthin per unit volume of the water body", "definition": "Concentration of the carotenoid pigment fucoxanthin per unit volume of a water body. The pigment is contained in suspended particles of unspecified size", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/FUCXZZZZ" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/FUCXZZZZ", + "hidden_labels": [ + "FUCO" + ], + "is_latest_label": true }, { "label": "Concentration of peridinin per unit volume of the water body", "definition": "Concentration of the carotenoid pigment peridinin per unit volume of a water body. The pigment is contained in suspended particles of unspecified size", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/PERDXXXX" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/PERDXXXX", + "hidden_labels": [ + "PERID" + ], + "is_latest_label": true }, { "label": "Concentration of phycoerythrin per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/51" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/51", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Ocean Biota", @@ -712,40 +1170,52 @@ { "label": "Biovolume", "definition": "The volume of a biological object described elsewhere in the metadata (e.g.: single-species populations, all species within a phytoplankton sample …) occurring in a given volume of water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/22" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/22", + "is_latest_label": true }, { "label": "Mean unit biovolume", "definition": "The average volume of individual organisms (cells or colonies).", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/23" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/23", + "is_latest_label": true }, { "label": "Phytoplankton Colour Index", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/407" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/407", + "hidden_labels": [ + "PCI" + ], + "is_latest_label": true }, { "label": "Abundance of biota", "definition": "The relative representation of flora and fauna in a particular sample or region.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/488" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/488", + "is_latest_label": true }, { "label": "Biotic taxonomic identification", "definition": "The identification of the biotic elements to the relevant scientific classification group (taxa), e.g. genus or species.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/489" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/489", + "is_latest_label": true }, { "label": "Dry weight biomass per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/570" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/570", + "is_latest_label": true }, { "label": "Wet weight biomass per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/571" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/571", + "is_latest_label": true }, { "label": "Detection of acoustic tag", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/596" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/596", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Suspended particulate material", @@ -754,17 +1224,30 @@ "narrower": [ { "label": "Concentration of suspended particulate material per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/654" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/654", + "hidden_labels": [ + "SPM" + ], + "is_latest_label": true }, { "label": "Concentration of suspended particulate material (organic) per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/655" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/655", + "hidden_labels": [ + "SPM_org" + ], + "is_latest_label": true }, { "label": "Concentration of suspended particulate material (inorganic) per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/656" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/656", + "hidden_labels": [ + "SPM_inorg" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Nutrient", @@ -774,69 +1257,102 @@ { "label": "Concentration of nitrate {NO3} per unit volume of the water body", "definition": "Concentration of nitrate per unit volume of the water column. Nitrate may be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/374" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/374", + "hidden_labels": [ + "NTRA" + ], + "is_latest_label": true }, { "label": "Concentration of nitrate {NO3} per unit mass of the water body", "definition": "Concentration (moles or mass) of nitrogen as nitrate per unit mass of the water column", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/375" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/375", + "hidden_labels": [ + "NTR2" + ], + "is_latest_label": true }, { "label": "Concentration of silicate {SiO4} per unit volume of the water body", "definition": "Concentration of silicate per unit volume of the water column. Silicate may be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/376" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/376", + "hidden_labels": [ + "SLCA" + ], + "is_latest_label": true }, { "label": "Concentration of ammonium {NH4} per unit volume of the water body", "definition": "Concentration of ammonium per unit volume of the water column. Ammonium may be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/377" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/377", + "is_latest_label": true }, { "label": "Concentration of silicate {SiO4} per unit mass of the water body", "definition": "Concentration (moles or mass) of silicon as silicate per unit mass of the water column", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/378" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/378", + "hidden_labels": [ + "SLC2" + ], + "is_latest_label": true }, { "label": "Concentration of phosphate {PO4} per unit volume of the water body", "definition": "Concentration of phosphate per unit volume of the water column. Phosphate may be expressed in terms of mass or quantity of substance", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/379" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/379", + "hidden_labels": [ + "PHO2" + ], + "is_latest_label": true }, { "label": "Concentration of phosphate {PO4} per unit mass of the water body", "definition": "Concentration of phosphate dissolved per unit mass of the water column. Solute may be expressed in terms of mass, volume or quantity of substance", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/380" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/380", + "hidden_labels": [ + "PHOS" + ], + "is_latest_label": true }, { "label": "Concentration of nitrate and nitrite {NO3 and NO2} per unit mass of the water body", "definition": "Concentration (moles or mass) of nitrogen as both nitrate and nitrite per unit mass of the water column.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/45" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/45", + "is_latest_label": true }, { "label": "Concentration of nitrate and nitrite {NO3 and NO2} per unit volume of the water body", "definition": "Concentration of nitrate and nitrite per unit volume of the water column. May be expressed in terms of mass or quantity of substance.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/46" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/46", + "is_latest_label": true }, { "label": "Concentration of total phosphorus per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/47" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/47", + "is_latest_label": true }, { "label": "Concentration of total phosphorus per unit mass of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/48" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/48", + "is_latest_label": true }, { "label": "Concentration of nitrite {NO2} per unit mass of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/49" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/49", + "is_latest_label": true }, { "label": "Concentration of nitrite {NO2} per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/50" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/50", + "is_latest_label": true }, { "label": "Concentration of phosphate (water soluble reactive) per unit volume of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/53" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/53", + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] }, @@ -852,14 +1368,20 @@ "narrower": [ { "label": "Sea-floor depth below surface of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/574" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/574", + "hidden_labels": [ + "BOT_DEPTH" + ], + "is_latest_label": true }, { "label": "Height above surface of the water body", "definition": "Surface references mean sea level, which means the time mean of sea surface elevation at a given location over an arbitrary period sufficient to eliminate the tidal signals.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/44" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/44", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Wave", @@ -869,179 +1391,352 @@ { "label": "Spectral significant height of waves on the water body", "definition": "Significant wave height approximated as four times the square root of the first moment of the wave power spectrum.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/2" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/2", + "hidden_labels": [ + "WSSH" + ], + "alt_labels": [ + "Hmo" + ], + "is_latest_label": true }, { "label": "Period at the peak spectral energy of waves on the water body", "definition": "Period of the peak of the energy spectrum analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/3" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/3", + "hidden_labels": [ + "WPPE" + ], + "alt_labels": [ + "Tp" + ], + "is_latest_label": true }, { "label": "Direction at spectral maximum of waves on the water body", "definition": "Direction (related to true north) from which the peak period waves are coming from analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/4" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/4", + "hidden_labels": [ + "WPDI" + ], + "is_latest_label": true }, { "label": "Significant height of waves on the water body", "definition": "The average height of the highest one third of the waves, where the height is defined as the vertical distance from a wave trough to the following wave crest.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/411" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/411", + "hidden_labels": [ + "VAVH", + "WHTH" + ], + "is_latest_label": true }, { "label": "Average height of waves on the water body", "definition": "The mean height of waves on the water body analysed by zero crossing method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/412" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/412", + "hidden_labels": [ + "WMSH" + ], + "is_latest_label": true }, { "label": "Root mean square height of waves on the water body", "definition": "The root mean square wave height analysed by zero crossing method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/413" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/413", + "hidden_labels": [ + "HRMS" + ], + "is_latest_label": true }, { "label": "Average height of the highest 1/10th of waves on the water body", "definition": "The mean of the highest ten per cent of trough to crest distances measured during the observation period.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/414" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/414", + "hidden_labels": [ + "WHTE" + ], + "is_latest_label": true }, { "label": "Average zero crossing period of the highest 1/3rd of waves on the water body", "definition": "The average period of the highest 1/3 of waves measured during a recording burst", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/417" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/417", + "hidden_labels": [ + "WPTH" + ], + "is_latest_label": true }, { "label": "Maximum height of waves on the water body", "definition": "The maximum vertical distance between a wave crest and the immediately preceding or following through during a specified observation period.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/GCMXZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/GCMXZZ01", + "hidden_labels": [ + "WMXH" + ], + "is_latest_label": true }, { "label": "Directional spreading of waves on the water body", "definition": "Sea surface wave mean directional spread analysed by spectral method.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/GSPRZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/GSPRZZ01", + "hidden_labels": [ + "SSDS", + "WMDS" + ], + "is_latest_label": true }, { "label": "Period of swell waves on the water body", "definition": "Period between successive swell maxima.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/GSZZXXXX" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/GSZZXXXX", + "is_latest_label": true }, { "label": "Average crest period of waves on the water body", "definition": "Sea surface wave mean crest period analysed by zero crossing method.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/GTCAZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/GTCAZZ01", + "hidden_labels": [ + "TCREST" + ], + "is_latest_label": true }, { "label": "Direction of waves on the water body", "definition": "Direction from which waves are coming relative to True North.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/GWDRZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/GWDRZZ01", + "hidden_labels": [ + "SSWMD", + "VDIR" + ], + "is_latest_label": true }, { "label": "Significant height of swell waves on the water body", "definition": "The average height of the highest one third of the swell waves, where the height is defined as the vertical distance from a wave trough to the following wave crest.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/28" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/28", + "hidden_labels": [ + "SWSH", + "SWSSH" + ], + "alt_labels": [ + "HS_Swell" + ], + "is_latest_label": true }, { "label": "Period at spectral maximum of swell waves first component on the water body", "definition": "Period of the highest swell wave peak analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/29" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/29", + "hidden_labels": [ + "SWPP" + ], + "alt_labels": [ + "Tp_Swell" + ], + "is_latest_label": true }, { "label": "Direction at spectral maximum of swell waves first component on the water body", "definition": "Direction from which the most energetic waves are coming in the swell wave component of a sea.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/30" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/30", + "hidden_labels": [ + "SWPD" + ], + "alt_labels": [ + "Dp_Swell" + ], + "is_latest_label": true }, { "label": "Significant height of wind sea waves on the water body", "definition": "The average height of the highest one third of the wind sea waves, where the height is defined as the vertical distance from a wave trough to the following wave crest.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/31" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/31", + "hidden_labels": [ + "WWSH", + "WWSSH" + ], + "alt_labels": [ + "Hs_Windsea" + ], + "is_latest_label": true }, { "label": "Period at spectral maximum of wind sea waves on the water body", "definition": "Period of the highest wind sea wave peak analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/32" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/32", + "hidden_labels": [ + "WWPP" + ], + "alt_labels": [ + "Tp_Windsea" + ], + "is_latest_label": true }, { "label": "Direction at spectral maximum of wind sea waves on the water body", "definition": "Direction (related to true north) from which the peak period wind sea waves are coming from analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/33" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/33", + "hidden_labels": [ + "WWPD" + ], + "alt_labels": [ + "Dp_Windsea" + ], + "is_latest_label": true }, { "label": "Maximum zero crossing period of waves on the water body", "definition": "The maximum period of the waves analysed by zero crossing method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/34" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/34", + "hidden_labels": [ + "WMPP" + ], + "alt_labels": [ + "Tmax" + ], + "is_latest_label": true }, { "label": "Average height of the highest 1/3rd of waves on the water body", "definition": "The mean of the highest third of waves on the water body analysed by zero crossing method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/35" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/35", + "hidden_labels": [ + "WHTH" + ], + "alt_labels": [ + "H1/3" + ], + "is_latest_label": true }, { "label": "Average zero crossing period of waves on the water body", "definition": "The period of the significant wave analysed by zero crossing method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/36" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/36", + "hidden_labels": [ + "WPMH" + ], + "alt_labels": [ + "Tmean" + ], + "is_latest_label": true }, { "label": "Average zero crossing period of the highest 1/10th waves on the water body", "definition": "The average period of the highest tenth of waves measured during a recording burst.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/37" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/37", + "hidden_labels": [ + "WPTE" + ], + "alt_labels": [ + "T1/10" + ], + "is_latest_label": true }, { "label": "Variance spectral density of waves on the water body", "definition": "Fourier Analysis on directional sea level elevation, also named 'Directional Spectral density' or 'Directional Power spectral density'.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/38" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/38", + "is_latest_label": true }, { "label": "Directional variance spectral density of waves on the water body", "definition": "Sea surface wave directional variance spectral density is the variance of the amplitude of the waves within given ranges of direction and wave frequency.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/39" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/39", + "is_latest_label": true }, { "label": "Period at second highest energy spectrum peak of waves on the water body", "definition": "Period of the second highest peak of the energy spectrum analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/40" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/40", + "hidden_labels": [ + "Tp2" + ], + "is_latest_label": true }, { "label": "Zeroth spectral moment of waves on the water body", "definition": "The variance spectral density of the zeroth frequency moment.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/41" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/41", + "hidden_labels": [ + "M0" + ], + "is_latest_label": true }, { "label": "Direction of wind sea waves on the water body", "definition": "Direction from which wind sea waves are coming relative to True North.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/42" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/42", + "hidden_labels": [ + "WWAV" + ], + "is_latest_label": true }, { "label": "Spectral directional spread of wave peak on the water body", "definition": "Sea surface wave peak directional spread analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/61" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/61", + "hidden_labels": [ + "WPDS" + ], + "is_latest_label": true }, { "label": "Period of the highest wave on the water body", "definition": "Period corresponding to the wave with maximum height in the record analysed by zero crossing method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/60" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/60", + "hidden_labels": [ + "THMAX" + ], + "is_latest_label": true }, { "label": "Mean period at spectral second frequency moment of waves on the water body", "definition": "The square root of ratio of the zeroth and second-order moment of the non-directional wave spectrum analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/62" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/62", + "hidden_labels": [ + "WPSM" + ], + "is_latest_label": true }, { "label": "Mean period at spectral first frequency moment of waves on the water body", "definition": "The square root of ratio of the zeroth and first-order moment of the non-directional wave spectrum analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/63" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/63", + "hidden_labels": [ + "WPFM" + ], + "is_latest_label": true }, { "label": "Average direction at spectral maximum of waves on the water body", "definition": "Average direction (related to true north) from which the peak period waves are coming from analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/64" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/64", + "hidden_labels": [ + "WMPD" + ], + "is_latest_label": true }, { "label": "Direction at spectral maximum of swell waves on the water body", "definition": "Direction (related to true north) towards which the peak period swell waves are heading, analysed by spectral method.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/65" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/65", + "hidden_labels": [ + "DP_PART" + ], + "is_latest_label": true }, { "label": "Wavelength at spectral maximum of swell waves on the water body", "definition": "The wavelength of the peak period swell waves analysed by spectral method. The wavelength is the horizontal distance between repeated features on the waveform such as crests, troughs or upward passes through the mean level.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/66" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/66", + "hidden_labels": [ + "WP_PART" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Density", @@ -1050,9 +1745,14 @@ "narrower": [ { "label": "Density of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/401" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/401", + "hidden_labels": [ + "DENS" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Water pressure", @@ -1062,19 +1762,32 @@ { "label": "Pressure (measured variable) in the water body exerted by overlying sea water and any medium above it", "definition": "The force per unit area exerted by the overlying sea water, sea ice, air and any other medium that may be present on a sensor located in the water column.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/565" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/565", + "hidden_labels": [ + "PRES" + ], + "is_latest_label": true }, { "label": "Pressure (measured variable) in the water body exerted by overlying sea water only", "definition": "The force per unit area exerted by the overlying sea water on a sensor located in the water column. Excludes the pressure due to sea ice, air and any other medium that may be present.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/566" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/566", + "hidden_labels": [ + "PRES_REL" + ], + "is_latest_label": true }, { "label": "Pressure (measured variable) exerted by the atmosphere", "definition": "Measurement as a phenomenon (as opposed to a co-ordinate) of the force per unit area exerted by the atmosphere determined in-situ at a known altitude.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CAPHZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CAPHZZ01", + "hidden_labels": [ + "ATMP" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Turbidity", @@ -1084,9 +1797,14 @@ { "label": "Turbidity of the water body", "definition": "Estimate of suspended sediment concentration based on the proportion of a light transmission in the water column that is reflected back to a co-located receiver.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/TURBXXXX" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/TURBXXXX", + "hidden_labels": [ + "TURB" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Current", @@ -1096,36 +1814,59 @@ { "label": "Current speed in the water body", "definition": "The speed of Eulerian flow in the water column", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/383" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/383", + "hidden_labels": [ + "CSPD" + ], + "is_latest_label": true }, { "label": "Eastward geostrophic current velocity in the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/640" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/640", + "is_latest_label": true }, { "label": "Northward geostrophic current velocity in the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/641" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/641", + "is_latest_label": true }, { "label": "Current direction in the water body", "definition": "The direction towards which Eulerian current in the water column is flowing.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/LCDAZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/LCDAZZ01", + "hidden_labels": [ + "CDIR" + ], + "is_latest_label": true }, { "label": "Eastward current velocity in the water body", "definition": "Speed of Eulerian current flow towards due east.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/LCEWZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/LCEWZZ01", + "hidden_labels": [ + "UCUR" + ], + "is_latest_label": true }, { "label": "Northward current velocity in the water body", "definition": "Speed of Eulerian current flow towards true north", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/LCNSZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/LCNSZZ01", + "hidden_labels": [ + "VCUR" + ], + "is_latest_label": true }, { "label": "Upward current velocity in the water body", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/LRZAZZZZ" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/LRZAZZZZ", + "hidden_labels": [ + "WCUR" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Air-Sea Fluxes", @@ -1135,53 +1876,107 @@ { "label": "Net shortwave heat flux", "definition": "The net shortwave heat flux is the difference between the downwelling radiation from the sun as modified by the gases and clouds of the atmosphere and the radiation returned from the sea surface, which is either reflected by the surface or backscattered from within the water column.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/10" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/10", + "hidden_labels": [ + "SW_NET" + ], + "is_latest_label": true }, { "label": "Net heat flux", "definition": "Net surface heat flux across the air-sea interface.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/11" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/11", + "hidden_labels": [ + "HEAT_NET" + ], + "is_latest_label": true }, { "label": "Net mass flux", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/12" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/12", + "hidden_labels": [ + "MASS_NET" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as photons (PAR wavelengths) in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/572" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/572", + "hidden_labels": [ + "RAD_PAR" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as energy (solar (300-3000nm) wavelengths) in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/576" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/576", + "hidden_labels": [ + "SW" + ], + "is_latest_label": true }, { "label": "Sensible heat flux", "definition": "Heat exchange due to difference in temperature between air and water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/6" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/6", + "hidden_labels": [ + "HS" + ], + "alt_labels": [ + "surface upward sensible heat flux" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as energy in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/651" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/651", + "hidden_labels": [ + "Ed" + ], + "is_latest_label": true }, { "label": "Latent heat flux", "definition": "Heat loss due to evaporation", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/7" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/7", + "hidden_labels": [ + "HL" + ], + "alt_labels": [ + "surface upward latent heat flux" + ], + "is_latest_label": true }, { "label": "Sensible heat flux due to precipitation", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/8" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/8", + "hidden_labels": [ + "H_RAIN" + ], + "alt_labels": [ + "upward heat flux due to rainfall" + ], + "is_latest_label": true }, { "label": "Net longwave heat flux", "definition": "The net longwave heat flux is the net flux of the greybody emissions from the sea surface, cloud layers and the gases of the atmosphere.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/9" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/9", + "hidden_labels": [ + "LW_NET" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as energy (longwave) in the atmosphere", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/LWRDZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/LWRDZZ01", + "hidden_labels": [ + "LW" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Optical properties", @@ -1191,101 +1986,183 @@ { "label": "Light absorption coefficient of dissolved organic matter", "definition": "The proportion of the incident light that is absorbed by the dissolved component of a sample from any body of fresh or salt water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/890" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/890", + "alt_labels": [ + "Ag" + ], + "is_latest_label": true }, { "label": "Light absorption coefficient of phytoplankton", "definition": "The proportion of the incident light that is absorbed by the algal (phytoplankton) component of a sample from any body of fresh or salt water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/891" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/891", + "alt_labels": [ + "Aph" + ], + "is_latest_label": true }, { "label": "Light absorption coefficient of nonalgal particles", "definition": "The proportion of the incident light that is absorbed by the detrital or non-algal component of a sample from any body of fresh or salt water.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/892" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/892", + "alt_labels": [ + "Ad" + ], + "is_latest_label": true }, { "label": "Light extinction coefficient (490nm wavelength) in the water body", "definition": "Light extinction coefficient (490nm wavelength) in the water body by radiometer and computation from variation of light intensity with depth.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/5" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/5", + "hidden_labels": [ + "k490" + ], + "alt_labels": [ + "Diffuse Attenuation Coefficient at 490nm" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as photons (PAR wavelengths) in the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/573" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/573", + "hidden_labels": [ + "PAR" + ], + "is_latest_label": true }, { "label": "Colored Dissolved Organic Matter", "definition": "The amount of colored organic compounds (sometimes called yellow substance or gelbstoff) dissolved in a specified amount of water from any body of fresh or salt water", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/629" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/629", + "hidden_labels": [ + "CDOM" + ], + "is_latest_label": true }, { "label": "Water-leaving radiance from the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/646" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/646", + "hidden_labels": [ + "Lw" + ], + "is_latest_label": true }, { "label": "Water-leaving radiance from the water body corrected for viewing angle dependance", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/647" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/647", + "hidden_labels": [ + "Lw_Q" + ], + "is_latest_label": true }, { "label": "Normalised water-leaving radiance from the water body determined from Lw", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/648" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/648", + "hidden_labels": [ + "Lwn" + ], + "is_latest_label": true }, { "label": "Normalised water-leaving radiance from the water body determined from Lw_Q", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/649" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/649", + "hidden_labels": [ + "Lwn_fQ" + ], + "is_latest_label": true }, { "label": "Downwelling vector irradiance as energy in the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/650" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/650", + "hidden_labels": [ + "Ed" + ], + "is_latest_label": true }, { "label": "Sky radiance as energy in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/652" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/652", + "hidden_labels": [ + "Lsky" + ], + "is_latest_label": true }, { "label": "Upwelling radiance as energy in the atmosphere", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/653" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/653", + "hidden_labels": [ + "Lu" + ], + "is_latest_label": true }, { "label": "Secchi depth", "definition": "Estimate of the transparency of the surface water based upon the distance below the ship at which a standard black and white disk becomes visible.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/729" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/729", + "is_latest_label": true }, { "label": "Total absorption coefficient in the water body", "definition": "Inherent optical property of natural waters. Describes the intensity loss of a light beam through a unit volume of water due to absorption.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/59" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/59", + "hidden_labels": [ + "a" + ], + "is_latest_label": true }, { "label": "Total attenuation coefficient in the water body", "definition": "Inherent optical property of natural waters. Describes the intensity loss of a light beam through a unit volume of water due to scattering and absorption.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/58" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/58", + "hidden_labels": [ + "c" + ], + "is_latest_label": true }, { "label": "Total backscattering coefficient in the water body", "definition": "Inherent optical property of natural waters. Describes the reflection of light from a unit volume of water back to the incident direction. Integral of the volume scattering function in the backward direction from 90 to 180 degrees.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/54" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/54", + "hidden_labels": [ + "bb" + ], + "is_latest_label": true }, { "label": "Particle backscattering coefficient in the water body", "definition": "Inherent optical property of natural waters. Describes the reflection of light by particles from a unit volume of water back to the incident direction. Integral of the particle volume scattering function in the backward direction from 90 to 180 degrees.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/55" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/55", + "hidden_labels": [ + "bbp" + ], + "is_latest_label": true }, { "label": "Total volume scattering function in the water body", "definition": "Inherent optical property of natural waters. Describes the angular dependence of scattered light from an incident light beam.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/56" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/56", + "hidden_labels": [ + "beta" + ], + "is_latest_label": true }, { "label": "Particle volume scattering function in the water body", "definition": "Inherent optical property of natural waters. Describes the angular dependence of scattered light by particles from an incident light beam.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/57" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/57", + "hidden_labels": [ + "beta_p" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Backscattering", "definition": "This category contains vocabulary terms describing backscattering parameters", - "about": "http://vocab.aodn.org.au/def/parameter_classes/category/47" + "about": "http://vocab.aodn.org.au/def/parameter_classes/category/47", + "is_latest_label": true }, { "label": "Temperature", @@ -1294,23 +2171,34 @@ "narrower": [ { "label": "Temperature anomaly of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/590" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/590", + "is_latest_label": true }, { "label": "Ocean heat content", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/631" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/631", + "is_latest_label": true }, { "label": "Skin temperature of the water body", "definition": "Skin temperature of the water body measure by Advanced Very High Resolution Radiometer (AVHRR)", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/97" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/97", + "hidden_labels": [ + "SST" + ], + "is_latest_label": true }, { "label": "Temperature of the water body", "definition": "The degree of hotness of the water column expressed against a standard scale. Includes both IPTS-68 and ITS-90 scales.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/TEMPPR01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/TEMPPR01", + "hidden_labels": [ + "TEMP" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Acoustics", @@ -1319,23 +2207,34 @@ "narrower": [ { "label": "Acoustic signal return amplitude from the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/399" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/399", + "is_latest_label": true }, { "label": "Sound recorded in the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/597" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/597", + "is_latest_label": true }, { "label": "Volume backscattering coefficient", "definition": "Echosounder provides two basic measurements: (1) the time delay between transmission of a sound pulse and reception of a return echo from an acoustic target (for example fish), and (2) the intensity of the returning echo. The intensity of returning echo from the fish is dependent on the intensity of sound transmitted by the echosounder, the loss of intensity as the sound wave travels through water (both to the fish and back to the echosounder), and the backscattering cross-section (or target strength) of the fish. Backscattering cross-section determines what proportion of incident sound intensity is reflected from the fish, back to the echosounder. The derived parameter ‘volume backscattering coefficient’ is the summation of backscattering cross-section from all acoustic targets present within the sampling volume scaled to 1 m3.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/728" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/728", + "hidden_labels": [ + "Sv" + ], + "is_latest_label": true }, { "label": "Sound velocity in the water body", "definition": "The rate at which sound travels through the water column", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/SVELXXXX" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/SVELXXXX", + "hidden_labels": [ + "SSPD" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Salinity", @@ -1344,23 +2243,34 @@ "narrower": [ { "label": "Practical salinity anomaly of the water body", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/591" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/591", + "is_latest_label": true }, { "label": "Specific electrical conductivity of the water body", "definition": "Conductance is a temperature corrected value, and approximates what the AC (Actual Conductivity) of a solution would be at 25 degrees Celsisus.", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/730" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/730", + "is_latest_label": true }, { "label": "Electrical conductivity of the water body", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/CNDCZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/CNDCZZ01", + "hidden_labels": [ + "CNDC" + ], + "is_latest_label": true }, { "label": "Practical salinity of the water body", "definition": "The quantity of dissolved ions (predominantly salt in seawater) expressed on a scale (PSS-78) based on the conductivity ratio of a seawater sample to a standard KCl solution.", - "about": "http://vocab.nerc.ac.uk/collection/P01/current/PSLTZZ01" + "about": "http://vocab.nerc.ac.uk/collection/P01/current/PSLTZZ01", + "hidden_labels": [ + "PSAL" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Sea surface height", @@ -1369,22 +2279,27 @@ "narrower": [ { "label": "Sea surface height anomaly", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/642" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/642", + "is_latest_label": true }, { "label": "Sea surface height above geoid", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/643" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/643", + "is_latest_label": true }, { "label": "Sea surface height above reference datum", - "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/43" + "about": "http://vocab.aodn.org.au/def/discovery_parameter/entity/43", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Depth", "definition": "This category contains vocabulary terms describing depth parameters", - "about": "http://vocab.aodn.org.au/def/parameter_classes/category/58" + "about": "http://vocab.aodn.org.au/def/parameter_classes/category/58", + "is_latest_label": true } ] } diff --git a/ardcvocabs/src/test/resources/databag/aodn_organisation_vocabs.json b/ardcvocabs/src/test/resources/databag/aodn_organisation_vocabs.json index 8fd6440b..2dbed99f 100644 --- a/ardcvocabs/src/test/resources/databag/aodn_organisation_vocabs.json +++ b/ardcvocabs/src/test/resources/databag/aodn_organisation_vocabs.json @@ -7,12 +7,17 @@ { "label": "Pawsey Supercomputing Centre", "definition": "The centre comprises a purpose-built building, housing supercomputers and associated works at Kensington, Western Australia. The primary aim of the centre is to host new supercomputing facilities and expertise to support SKA (Square Kilometre Array) pathfinder research, geosciences and other high-end science.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/109" + "about": "http://vocab.aodn.org.au/def/organisation/entity/109", + "is_latest_label": true }, { "label": "Sydney Institute of Marine Science (SIMS)", "definition": "The Sydney Institute of Marine Science (SIMS) conducts multidisciplinary marine research across five core research themes  - Urbanisation, Biodiversity, Climate Change, Ocean Resources, and Marine Management. SIMS is also the operator of the NSW node of the Australian Government’s Integrated Marine Observing System – IMOS.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/121" + "about": "http://vocab.aodn.org.au/def/organisation/entity/121", + "hidden_labels": [ + "SIMS" + ], + "is_latest_label": true }, { "label": "Curtin University", @@ -22,39 +27,78 @@ { "label": "Muresk Institute, Curtin University", "definition": "Muresk Institute is an education and training facility situated in the Wheatbelt (approximately 100km east of Perth). The Institute boasts modern education and training, conference and specialised research facilities. In 2012 the responsibility for Muresk’s operation was transferred from Curtin University to the State Government.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/179" + "about": "http://vocab.aodn.org.au/def/organisation/entity/179", + "display_label": "Muresk Institute", + "hidden_labels": [ + "Muresk Institute" + ], + "is_latest_label": false }, { "label": "Department of Environment and Agriculture, Curtin University", "definition": "The Department of Environment and Agriculture caters for students who are interested in agriculture, biology, conserving biodiversity and the environment, or management of the coastal zone.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/182" + "about": "http://vocab.aodn.org.au/def/organisation/entity/182", + "display_label": "Department of Environment and Agriculture", + "hidden_labels": [ + "Department of Environment and Agriculture" + ], + "is_latest_label": true }, { "label": "Department of Applied Geology, Curtin University", "definition": "The Department of Applied Geology is part of the Western Australian School of Mines, one of six schools in Curtin's Faculty of Science and Engineering, and is one of Australia's leading providers of geoscience education and research. It is located at Curtin's metropolitan Bentley Campus and in Kalgoorlie at the heart of the West Australian goldfields. The present Department formed in 2006 when the Bentley-based Department of Applied Geology merged with the WA School of Mines.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/183" + "about": "http://vocab.aodn.org.au/def/organisation/entity/183", + "display_label": "Department of Applied Geology", + "hidden_labels": [ + "Department of Applied Geology" + ], + "is_latest_label": true }, { "label": "Department of Spatial Sciences, Curtin University", "definition": "Spatial sciences involves a range of disciplines focussed around location on the Earth's (or moon's) surface including, but not limited to, surveying, geographic information science (GISc), global navigation and satellite systems (GNSS), geodesy, photogrammetry and laser scanning, and remote sensing.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/185" + "about": "http://vocab.aodn.org.au/def/organisation/entity/185", + "display_label": "Department of Spatial Sciences", + "hidden_labels": [ + "Department of Spatial Sciences" + ], + "is_latest_label": true }, { "label": "Centre for Marine Science and Technology (CMST), Curtin University", "definition": "Founded in 1985, the Centre for Marine Science and Technology (CMST) comprises a multi-skilled group of scientists and engineers committed to the development of technical ocean-related skills in Australia. CMST’s expertise fits into four major categories: Hydrodynamics, Underwater Acoustics, Marine Ecology and Stereoscopic Imaging. The centre works in close cooperation with Curtin’s Department of Imaging and Applied Physics, Department of Applied Geology, Remote Sensing Group, Aquatic Science Group, and the Department of Environmental Biology, plus WA:ERA, IMOS, the Australian Maritime College, and many others.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/186" + "about": "http://vocab.aodn.org.au/def/organisation/entity/186", + "display_label": "Centre for Marine Science and Technology (CMST)", + "hidden_labels": [ + "CMST", + "Centre for Marine Science and Technology (CMST)" + ], + "is_latest_label": true }, { "label": "Remote Sensing and Satellite Research Group (RSSRG), Curtin University", "definition": "The Remote Sensing and Satellite Research Group (RSSRG), based at Curtin University in Bentley, Western Australia, is part of a national and international network of scientists that undertake quantitative research in the field of Earth observations from space.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/187" + "about": "http://vocab.aodn.org.au/def/organisation/entity/187", + "display_label": "Remote Sensing and Satellite Research Group (RSSRG)", + "hidden_labels": [ + "RSSRG", + "Remote Sensing and Satellite Research Group (RSSRG)" + ], + "is_latest_label": true }, { "label": "School of Public Health (SoPH), Curtin University", "definition": "The School of Public Health at Curtin University was established in 1979, and currently offers 11 disciplines, including all core public health disciplines. Many of the programs include an international component or perspective.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/188" + "about": "http://vocab.aodn.org.au/def/organisation/entity/188", + "display_label": "School of Public Health (SoPH)", + "hidden_labels": [ + "School of Public Health (SoPH)", + "SoPH" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Flinders University", @@ -64,29 +108,57 @@ { "label": "Airborne Research Australia (ARA)", "definition": "Airborne Research Australia (ARA) is a Research Centre at Flinders University and Australia's National Research Aircraft Facility located at Parafield Airport in Adelaide, South Australia. ARA was established in 1996 with funding from the Commonwealth Government's Major National Research Facilities Programme and Flinders University.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/190" + "about": "http://vocab.aodn.org.au/def/organisation/entity/190", + "hidden_labels": [ + "ARA" + ], + "is_latest_label": true }, { "label": "School of Earth Sciences, Flinders University", "definition": "This school became part of the School of Chemistry, Physics and Earth Sciences (SoCPES), which is now known as the School of the Environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/191" + "about": "http://vocab.aodn.org.au/def/organisation/entity/191", + "display_label": "School of Earth Sciences", + "hidden_labels": [ + "School of Earth Sciences" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/193" }, { "label": "School of the Environment, Flinders University", "definition": "The School of the Environment is an interdisciplinary community delivering research in environmental, water, coastal and spatial sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/192" + "about": "http://vocab.aodn.org.au/def/organisation/entity/192", + "display_label": "School of the Environment", + "hidden_labels": [ + "School of the Environment" + ], + "is_latest_label": true }, { "label": "School of Chemistry, Physics and Earth Sciences (SoCPES), Flinders University", "definition": "University research and teaching department formed by the merger of the School of Earth Sciences with other departments.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/193" + "about": "http://vocab.aodn.org.au/def/organisation/entity/193", + "display_label": "School of Chemistry, Physics and Earth Sciences (SoCPES)", + "hidden_labels": [ + "School of Chemistry, Physics and Earth Sciences (SoCPES)", + "SoCPES" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/192" }, { "label": "School of Biological Sciences, Flinders University", "definition": "The School of Biological Sciences is an integrated community researching and teaching biology. Our foundations are collaborative clusters in Biodiversity and Ecology, Marine Biology and Aquaculture (including the Lincoln Marine Science Centre), and Molecular Biology and Biotechnology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/410" + "about": "http://vocab.aodn.org.au/def/organisation/entity/410", + "display_label": "School of Biological Sciences", + "hidden_labels": [ + "School of Biological Sciences" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "The Australian National University (ANU)", @@ -96,62 +168,138 @@ { "label": "Department of Earth and Marine Sciences (DEMS), The Australian National University (ANU)", "definition": "The Australian National University (ANU) Department of Earth and Marine Sciences (previously Department of Geology) is a centre of excellence for teaching and research in areas of environmental, earth and marine science. It maintains a diverse range of interests, preparing students for careers in science, law and the humanities, offering both undergraduate and postgraduate studies. The primary focus is on both environmental science and earth processes. The Institute of Scientific Information (ISI) has ranked ANU geoscience the top university program in Australia, and amongst the top 10 universities worldwide. The Department is the only teaching department of Earth Sciences in Canberra, and its location provides a unique opportunity to collaborate with government departments such as Geoscience Australia and the Bureau of Rural Sciences. Thus, there is access to some of the most advanced equipment available for experimental work, and opportunities that no other university in Australia can offer. The Department is an active member of the Cooperative Research Centre for Landscape Environments and Mineral Exploration which sees some staff involved in teaching and research in hydrology, regolith geochemistry and biogeochemistry. The Department also holds the Office for the Consortium of Marine Geoscience Institutions for Australia and is the successor of the [now defunct] Australian Ocean Drilling Program with new aims for promoting marine geoscience in this country.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/195" + "about": "http://vocab.aodn.org.au/def/organisation/entity/195", + "display_label": "Department of Earth and Marine Sciences (DEMS)", + "hidden_labels": [ + "DEMS", + "Department of Earth and Marine Sciences (DEMS)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/196" }, { "label": "Research School of Earth Sciences (RSES), The Australian National University (ANU)", "definition": "Since January 2008 the Research School of Earth Sciences (RSES) incorporates the former Department of Earth and Marine Sciences of the Faculty of Science and now provides teaching at undergraduate and postgraduate levels, and higher degree research programs within a world-class institution. The Research School now has two locations. The main administration and much of the research facilities are housed in the Jaeger Building (Building 61), but teaching activities are concentrated at the D.A. Brown Building (Building 47) about 10 minutes away by foot.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/196" + "about": "http://vocab.aodn.org.au/def/organisation/entity/196", + "display_label": "Research School of Earth Sciences (RSES)", + "hidden_labels": [ + "RSES", + "Research School of Earth Sciences (RSES)" + ], + "is_latest_label": true }, { "label": "Department of Geology, The Australian National University (ANU)", "definition": "This former school became part of the Department of Earth and Marine Sciences (DEMS).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/197" + "about": "http://vocab.aodn.org.au/def/organisation/entity/197", + "display_label": "Department of Geology", + "hidden_labels": [ + "Department of Geology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/195" }, { "label": "School of Botany and Zoology (BoZo), The Australian National University (ANU)", "definition": "In 2009, the School of Botany and Zoology (BoZo) was merged with the Research School of Biological Sciences, and the School of Biochemistry and Molecular Biology to form the Research School of Biology. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/198" + "about": "http://vocab.aodn.org.au/def/organisation/entity/198", + "display_label": "School of Botany and Zoology (BoZo)", + "hidden_labels": [ + "BoZo", + "School of Botany and Zoology (BoZo)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/200" }, { "label": "Research School of Biological Sciences (RSBS), The Australian National University (ANU)", "definition": "The Research School of Biological Sciences (RSBS) was formed in the 1960s at the The Australian National University. In 2009, RSBS was merged with the School of Botany and Zoology, and the School of Biochemistry and Molecular Biology to form the Research School of Biology. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/199" + "about": "http://vocab.aodn.org.au/def/organisation/entity/199", + "display_label": "Research School of Biological Sciences (RSBS)", + "hidden_labels": [ + "RSBS", + "Research School of Biological Sciences (RSBS)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/200" }, { "label": "Research School of Biology (RSB), The Australian National University (ANU)", "definition": "The ANU Research School of Biology carries out research, research training, undergraduate and coursework Masters teaching in a wide range of biological and biomedical sciences. The School comprises three divisions: Biomedical Science and Biochemistry; Evolution, Ecology and Genetics; and Plant Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/200" + "about": "http://vocab.aodn.org.au/def/organisation/entity/200", + "display_label": "Research School of Biology (RSB)", + "hidden_labels": [ + "RSB", + "Research School of Biology (RSB)" + ], + "is_latest_label": true }, { "label": "School of Archaeology and Anthropology, The Australian National University (ANU)", "definition": "The School of Archaeology and Anthropology combines five streams of social research and teaching — anthropology, archaeology, biological anthropology and the interdisciplinary fields of development studies and heritage and museum studies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/201" + "about": "http://vocab.aodn.org.au/def/organisation/entity/201", + "display_label": "School of Archaeology and Anthropology", + "hidden_labels": [ + "School of Archaeology and Anthropology" + ], + "is_latest_label": true }, { "label": "Research School of Pacific and Asian Studies (RSPAS), The Australian National University (ANU)", "definition": "The Research School of Pacific and Asian Studies (RSPAS) was originally founded in 1946, in 2010, the RSPAS was reduced in status in line with other changes to other research schools across the ANU. Shortly afterwards a new College of Asia and the Pacific was established, which took over much of the work of the former RSPAS. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/202" + "about": "http://vocab.aodn.org.au/def/organisation/entity/202", + "display_label": "Research School of Pacific and Asian Studies (RSPAS)", + "hidden_labels": [ + "RSPAS", + "Research School of Pacific and Asian Studies (RSPAS)" + ], + "is_latest_label": false }, { "label": "Research School of Asia and the Pacific (RSAP), The Australian National University (ANU)", "definition": "The Research School of Asia and the Pacific (RSAP) is the institutional focus of the College of Asia and the Pacific's research efforts.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/203" + "about": "http://vocab.aodn.org.au/def/organisation/entity/203", + "display_label": "Research School of Asia and the Pacific (RSAP)", + "hidden_labels": [ + "RSAP", + "Research School of Asia and the Pacific (RSAP)" + ], + "is_latest_label": true }, { "label": "Centre for Resource and Environmental Studies (CRES), The Australian National University (ANU)", "definition": "The Centre for Resource and Environmental Studies (CRES), was founded in 1973. CRES was combined with the School of Resources, Environment and Society (SRES) to form The Fenner School of Environment and Society in 2007. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/204" + "about": "http://vocab.aodn.org.au/def/organisation/entity/204", + "display_label": "Centre for Resource and Environmental Studies (CRES)", + "hidden_labels": [ + "CRES", + "Centre for Resource and Environmental Studies (CRES)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/207" }, { "label": "Asia Pacific School of Economics and Government (APSEG), The Australian National University (ANU)", "definition": "The Asia Pacific School of Economics and Government, is now incorporated as part of the Crawford School of Public Policy (CSPP).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/205" + "about": "http://vocab.aodn.org.au/def/organisation/entity/205", + "display_label": "Asia Pacific School of Economics and Government (APSEG)", + "hidden_labels": [ + "APSEG", + "Asia Pacific School of Economics and Government (APSEG)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/206" }, { "label": "Crawford School of Public Policy (CSPP), The Australian National University (ANU)", "definition": "The Crawford School of Public Policy is a graduate public policy school within the ANU College of Asia and the Pacific.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/206" + "about": "http://vocab.aodn.org.au/def/organisation/entity/206", + "display_label": "Crawford School of Public Policy (CSPP)", + "hidden_labels": [ + "CSPP", + "Crawford School of Public Policy (CSPP)" + ], + "is_latest_label": true }, { "label": "Fenner School of Environment and Society, The Australian National University (ANU)", @@ -161,16 +309,40 @@ { "label": "Integrated Catchment Assessment and Management Centre (iCAM), Fenner School of Environment and Society, The Australian National University (ANU)", "definition": "iCAM (the Integrated Catchment Assessment and Management Centre) is a highly interdisciplinary research group consisting of social scientists, economists, hydrologists and interdisciplinary modellers. iCAM’s mission is to develop and integrate the knowledge required to clarify management and policy options for sustaining vital water and related resources.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/208" + "about": "http://vocab.aodn.org.au/def/organisation/entity/208", + "display_label": "Integrated Catchment Assessment and Management Centre (iCAM)", + "hidden_labels": [ + "Integrated Catchment Assessment and Management Centre (iCAM)", + "iCAM" + ], + "alt_labels": [ + "Integrated Catchment Assessment and Management Centre (iCAM), The Australian National University (ANU)" + ], + "is_latest_label": true } - ] + ], + "display_label": "Fenner School of Environment and Society", + "hidden_labels": [ + "Fenner School of Environment and Society" + ], + "is_latest_label": true }, { "label": "North Australia Research Unit (NARU), The Australian National University (ANU)", "definition": "The North Australia Research Unit (NARU) was established in 1973 to specialise in research in north Australia and to provide a base and logistic support for Canberra-based members of The Australian National University (ANU) and members of other Australian and overseas institutions undertaking research in North Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/209" + "about": "http://vocab.aodn.org.au/def/organisation/entity/209", + "display_label": "North Australia Research Unit (NARU)", + "hidden_labels": [ + "NARU", + "North Australia Research Unit (NARU)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "ANU" + ], + "is_latest_label": true }, { "label": "The University of New South Wales (UNSW)", @@ -180,17 +352,41 @@ { "label": "School of Mathematics and Statistics (SMS), The University of New South Wales (UNSW)", "definition": "The School's program cover a wide spectrum of courses in Pure and Applied Mathematics and Statistics.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/211" + "about": "http://vocab.aodn.org.au/def/organisation/entity/211", + "display_label": "School of Mathematics and Statistics (SMS)", + "hidden_labels": [ + "SMS", + "School of Mathematics and Statistics (SMS)" + ], + "alt_labels": [ + "School of Mathematics and Statistics (SMS), UNSW Sydney" + ], + "is_latest_label": true }, { "label": "School of Biotechnology and Biomolecular Sciences (BABS), The University of New South Wales (UNSW)", "definition": "The School of BABS teaches undergraduates, mentors postgraduate research students and conducts research in the disciplines of biotechnology, biochemistry, genetics, molecular biology, microbiology, environmental microbiology, medical microbiology and immunology. BABS hosts or is a major player in a number of innovative centres and research initiatives: Ramaciotti Centre for Genomics, NSW Systems Biology Initiative, Centre for Marine BioInnovation and the Environmental Microbiology Initiative.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/212" + "about": "http://vocab.aodn.org.au/def/organisation/entity/212", + "display_label": "School of Biotechnology and Biomolecular Sciences (BABS)", + "hidden_labels": [ + "BABS", + "School of Biotechnology and Biomolecular Sciences (BABS)" + ], + "alt_labels": [ + "School of Biotechnology and Biomolecular Sciences (BABS), UNSW Sydney" + ], + "is_latest_label": true }, { "label": "School of Physical, Environmental and Mathematical Science (PEMS), The University of New South Wales (UNSW)", "definition": "The School of Physical, Environmental and Mathematical Sciences encompasses the disciplines of Chemistry, Geography, Mathematics, Statistics, Oceanography and Physics. The School of PEMS is one of four Schools at UNSW Canberra, the academic component of the Australian Defence Force Academy located in Canberra.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/213" + "about": "http://vocab.aodn.org.au/def/organisation/entity/213", + "display_label": "School of Physical, Environmental and Mathematical Science (PEMS)", + "hidden_labels": [ + "PEMS", + "School of Physical, Environmental and Mathematical Science (PEMS)" + ], + "is_latest_label": true }, { "label": "School of Biological, Earth and Environmental Sciences (BEES), The University of New South Wales (UNSW)", @@ -200,19 +396,57 @@ { "label": "Climate Change Research Centre (CCRC), School of Biological, Earth and Environmental Sciences (BEES), The University of New South Wales (UNSW)", "definition": "This is a multi-disciplinary research centre comprising one of the largest university research facilities of its kind in Australia, administered within the School of Biological, Earth and Environmental Sciences (BEES) in the Faculty of Science.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/454" + "about": "http://vocab.aodn.org.au/def/organisation/entity/454", + "display_label": "Climate Change Research Centre (CCRC)", + "hidden_labels": [ + "CCRC", + "Climate Change Research Centre (CCRC)" + ], + "alt_labels": [ + "Climate Change Research Centre (CCRC), The University of New South Wales (UNSW)", + "Climate Change Research Centre (CCRC), UNSW Sydney" + ], + "is_latest_label": true }, { "label": "Centre for Marine Science and Innovation (CMSI), School of Biological, Earth and Environmental Sciences (BEES), The University of New South Wales (UNSW)", "definition": "The CMSI focuses on researching fundamental knowledge on the functions, processes, interactions and changes in the marine environment and use this to develop innovative solutions for management, conservation and economic developments. It's expertise and experience cover a multidisciplinary mix of ecological and biological sciences, physical and biological oceanography, environmental impact assessment, as well as coastal geomorphology and engineering.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/601" + "about": "http://vocab.aodn.org.au/def/organisation/entity/601", + "display_label": "Centre for Marine Science and Innovation (CMSI)", + "hidden_labels": [ + "CMSI", + "Centre for Marine Science and Innovation (CMSI)" + ], + "alt_labels": [ + "Centre for Marine Science and Innovation (CMSI), The University of New South Wales (UNSW)", + "Centre for Marine Science and Innovation (CMSI), UNSW Sydney" + ], + "is_latest_label": true } - ] + ], + "display_label": "School of Biological, Earth and Environmental Sciences (BEES)", + "hidden_labels": [ + "BEES", + "School of Biological, Earth and Environmental Sciences (BEES)" + ], + "alt_labels": [ + "School of Biological, Earth and Environmental Sciences (BEES), UNSW Sydney" + ], + "is_latest_label": true }, { "label": "Evolution and Ecology Research Centre (E&ERC), The University of New South Wales (UNSW)", "definition": "The Evolution & Ecology Research Centre was established in 2007, to provide a cohesive and cooperative environment for the University's effort in evolution and ecology research and research training. It draws together staff and students from the School of Biological, Earth and Environmental Sciences, the School of Biotechnology and Biomolecular Sciences, School of Mathematics and Statistics, School of Economics and Humanities & Languages at UNSW in Sydney.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/490" + "about": "http://vocab.aodn.org.au/def/organisation/entity/490", + "display_label": "Evolution and Ecology Research Centre (E&ERC)", + "hidden_labels": [ + "E&ERC", + "Evolution and Ecology Research Centre (E&ERC)" + ], + "alt_labels": [ + "Evolution and Ecology Research Centre (E&ERC), UNSW Sydney" + ], + "is_latest_label": true }, { "label": "School of Civil and Environmental Engineering, The University of New South Wales (UNSW)", @@ -222,11 +456,37 @@ { "label": "Water Research Laboratory (WRL), School of Civil and Environmental Engineering, The University of New South Wales (UNSW)", "definition": "The Water Research Laboratory (WRL) - is a world-leading academic research and consulting laboratory that endeavours to tackle the most challenging and pressing water-engineering problems faced by the world today relating to water and the environment. It is based on four hectares on Sydney's Northern Beaches.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/523" + "about": "http://vocab.aodn.org.au/def/organisation/entity/523", + "display_label": "Water Research Laboratory (WRL)", + "hidden_labels": [ + "WRL", + "Water Research Laboratory (WRL)" + ], + "alt_labels": [ + "Water Research Laboratory (WRL), The University of New South Wales (UNSW)", + "Water Research Laboratory (WRL), UNSW Sydney" + ], + "is_latest_label": true } - ] + ], + "display_label": "School of Civil and Environmental Engineering", + "hidden_labels": [ + "School of Civil and Environmental Engineering" + ], + "alt_labels": [ + "School of Civil and Environmental Engineering, UNSW Sydney" + ], + "is_latest_label": true } - ] + ], + "display_label": "UNSW Sydney", + "hidden_labels": [ + "UNSW" + ], + "alt_labels": [ + "UNSW Sydney" + ], + "is_latest_label": true }, { "label": "The University of Newcastle (UON)", @@ -235,50 +495,97 @@ "narrower": [ { "label": "School of Environmental and Life Sciences, The University of Newcastle (UON)", - "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/216" + "about": "http://vocab.aodn.org.au/def/organisation/entity/216", + "display_label": "School of Environmental and Life Sciences", + "hidden_labels": [ + "School of Environmental and Life Sciences" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UON" + ], + "is_latest_label": true }, { "label": "The University of Queensland (UQ)", - "definition": "", "about": "http://vocab.aodn.org.au/def/organisation/entity/217", "narrower": [ { "label": "School of Biological Sciences (SBS), The University of Queensland (UQ)", "definition": "The School of Biological Sciences at The University of Queensland is situated on the St Lucia campus in Brisbane and is part of the Faculty of Science. Research is conducted in evolution, global change biology, ecology, aquaculture, behaviour, physiology, entomology, zoology, botany, genomics, development and conservation biology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/218" + "about": "http://vocab.aodn.org.au/def/organisation/entity/218", + "display_label": "School of Biological Sciences (SBS)", + "hidden_labels": [ + "SBS", + "School of Biological Sciences (SBS)" + ], + "is_latest_label": true }, { "label": "School of Economics, The University of Queensland (UQ)", "definition": "The School of Economics at the University of Queensland, is situated on the St Lucia campus, and is part of the Faculty of Business, Economics and Law.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/219" + "about": "http://vocab.aodn.org.au/def/organisation/entity/219", + "display_label": "School of Economics", + "hidden_labels": [ + "School of Economics" + ], + "is_latest_label": true }, { "label": "National Research Centre for Environmental Toxicology (entox), The University of Queensland (UQ)", "definition": "Entox is a joint venture of the University of Queensland and the Queensland Department of Health. The centre's aim is to provide leading-edge science to improve human health through a healthy environment. This organisation is now part of the Queensland Alliance for Environmental Health Sciences (QAEHS).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/220" + "about": "http://vocab.aodn.org.au/def/organisation/entity/220", + "display_label": "National Research Centre for Environmental Toxicology (entox)", + "hidden_labels": [ + "National Research Centre for Environmental Toxicology (entox)", + "entox" + ], + "is_latest_label": false }, { "label": "Division of Civil Engineering, The University of Queensland (UQ)", "definition": "This Division of Civil Engineering is now known as the School of Civil Engineering.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/221" + "about": "http://vocab.aodn.org.au/def/organisation/entity/221", + "display_label": "Division of Civil Engineering", + "hidden_labels": [ + "Division of Civil Engineering" + ], + "is_latest_label": false }, { "label": "Global Change Institute (GCI), The University of Queensland (UQ)", "definition": "Established in 2010, the Global Change Institute (CGI) at The University of Queensland, Australia, is an independent source of innovative research, ideas and advice for addressing the challenges of a changing world. GCI works to address the impacts of climate change, technological innovation and population growth through collaborative research across four key themes: Clean Energy, Food Systems, Healthy Oceans and Sustainable Water.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/222" + "about": "http://vocab.aodn.org.au/def/organisation/entity/222", + "display_label": "Global Change Institute (GCI)", + "hidden_labels": [ + "GCI", + "Global Change Institute (GCI)" + ], + "is_latest_label": true }, { "label": "School of Veterinary Science (SVS), The University of Queensland (UQ)", "definition": "The school was founded in 1936, and the large and diverse group of academic and clinical staff in the School has established an outstanding record of teaching and research to benefit farm and companion animals, their owners and industry sectors. Major contributions have been in tropical/sub-tropical animal health and medicine.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/223" + "about": "http://vocab.aodn.org.au/def/organisation/entity/223", + "display_label": "School of Veterinary Science (SVS)", + "hidden_labels": [ + "SVS", + "School of Veterinary Science (SVS)" + ], + "is_latest_label": true }, { "label": "Research Computing Centre (RCC), The University of Queensland (UQ)", "definition": "The Research Computing Centre (RCC), established in 2011, provides coordinated management and support of The University of Queensland’s sustained and substantial investment in eResearch.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/479" + "about": "http://vocab.aodn.org.au/def/organisation/entity/479", + "display_label": "Research Computing Centre (RCC)", + "hidden_labels": [ + "RCC", + "Research Computing Centre (RCC)" + ], + "is_latest_label": true }, { "label": "School of Earth and Environmental Sciences, The University of Queensland (UQ)", @@ -288,9 +595,20 @@ { "label": "Remote Sensing Research Centre (RSRC), School of Earth and Environmental Sciences, The University of Queensland (UQ)", "definition": "The Remote Sensing Research Centre uses earth observation data, also called remotely sensed data, collected from ground, submarine, airborne and satellite sensors, along with field data and various processing algorithms and programming codes, to measure, map and monitor biophysical properties in terrestrial, atmospheric and aquatic environments. The information we produce is developed in association with scientists and managers to better understand and manage the earth’s environments and resources.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/482" + "about": "http://vocab.aodn.org.au/def/organisation/entity/482", + "display_label": "Remote Sensing Research Centre (RSRC)", + "hidden_labels": [ + "RSRC", + "Remote Sensing Research Centre (RSRC)" + ], + "is_latest_label": true } - ] + ], + "display_label": "School of Earth and Environmental Sciences", + "hidden_labels": [ + "School of Earth and Environmental Sciences" + ], + "is_latest_label": true }, { "label": "School of Geography, Planning and Environmental Management, The University of Queensland (UQ)", @@ -300,36 +618,82 @@ { "label": "Remote Sensing Research Centre (RSRC), School of Geography, Planning and Environmental Management, The University of Queensland (UQ)", "definition": "The Remote Sensing Research Centre uses earth observation data, also called remotely sensed data, collected from ground, submarine, airborne and satellite sensors, along with field data and various processing algorithms and programming codes, to measure, map and monitor biophysical properties in terrestrial, atmospheric and aquatic environments. The information we produce is developed in association with scientists and managers to better understand and manage the earth’s environments and resources.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/481" + "about": "http://vocab.aodn.org.au/def/organisation/entity/481", + "display_label": "Remote Sensing Research Centre (RSRC)", + "hidden_labels": [ + "RSRC", + "Remote Sensing Research Centre (RSRC)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/482" }, { "label": "Centre for Remote Sensing and Spatial Information Science (CRSSIS), School of Geography, Planning and Environmental Management, The University of Queensland (UQ)", "definition": "This former centre was renamed the Remote Sensing Research Centre. It was part of the fomer School of Geography, Planning and Environmental Management. The school taught undergraduate and graduate programs in remote sensing and image processing, while the centre’s doctoral students and research staff focused on building remote sensing based tools for understanding, monitoring, modeling and managing terrestrial, coastal and atmospheric environments. The centre’s research was used directly in operational monitoring by local, state and national environmental management agencies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/483" + "about": "http://vocab.aodn.org.au/def/organisation/entity/483", + "display_label": "Centre for Remote Sensing and Spatial Information Science (CRSSIS)", + "hidden_labels": [ + "CRSSIS", + "Centre for Remote Sensing and Spatial Information Science (CRSSIS)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/481" } - ] + ], + "display_label": "School of Geography, Planning and Environmental Management", + "hidden_labels": [ + "School of Geography, Planning and Environmental Management" + ], + "is_latest_label": true }, { "label": "School of Chemical Engineering, The University of Queensland (UQ)", "definition": "The School of Chemical Engineering, is situated on the St Lucia campus. It teaches in the disciplines of chemical, biological, environmental, materials and metallurgical engineering, and into postgraduate programs in growing fields including water, energy and petroleum engineering.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/566" + "about": "http://vocab.aodn.org.au/def/organisation/entity/566", + "display_label": "School of Chemical Engineering", + "hidden_labels": [ + "School of Chemical Engineering" + ], + "is_latest_label": true }, { "label": "School of Mathematics and Physics (SMP), The University of Queensland (UQ)", "definition": "The school of Mathematics and Physics teaches across the disciplines of mathematics, statistics and physics.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/582" + "about": "http://vocab.aodn.org.au/def/organisation/entity/582", + "display_label": "School of Mathematics and Physics (SMP)", + "hidden_labels": [ + "SMP", + "School of Mathematics and Physics (SMP)" + ], + "is_latest_label": true }, { "label": "School of Chemistry and Molecular Biosciences (SCMB), The University of Queensland (UQ)", "definition": "The school of Chemistry and Molecular Biosciences teaches across the disciplines of chemistry, biochemistry, microbiology and parasitology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/602" + "about": "http://vocab.aodn.org.au/def/organisation/entity/602", + "display_label": "School of Chemisty and Molecular Biosciences (SCMB)", + "hidden_labels": [ + "SCMB", + "School of Chemisty and Molecular Biosciences (SCMB)" + ], + "is_latest_label": true }, { "label": "School of Biomedical Sciences (SBMS), The University of Queensland (UQ)", "definition": "The school of Biomedical Sciences strives to understand how the interaction between the genome and the cell, contribute to the function of the human body in health and disease.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/605" + "about": "http://vocab.aodn.org.au/def/organisation/entity/605", + "display_label": "School of Biomedical Sciences (SBMS)", + "hidden_labels": [ + "SBMS", + "School of Biomedical Sciences (SBMS)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UQ" + ], + "is_latest_label": true }, { "label": "The University of Sydney (USYD)", @@ -338,23 +702,41 @@ "narrower": [ { "label": "School of Geosciences, The University of Sydney (USYD)", - "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/225" + "about": "http://vocab.aodn.org.au/def/organisation/entity/225", + "display_label": "School of Geosciences", + "hidden_labels": [ + "School of Geosciences" + ], + "is_latest_label": true }, { "label": "Centre for Research on Ecological Impacts of Coastal Cities (EICC), The University of Sydney (USYD)", - "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/226" + "about": "http://vocab.aodn.org.au/def/organisation/entity/226", + "display_label": "Centre for Research on Ecological Impacts of Coastal Cities (EICC)", + "hidden_labels": [ + "Centre for Research on Ecological Impacts of Coastal Cities (EICC)", + "EICC" + ], + "is_latest_label": true }, { "label": "University of Sydney Institute of Marine Science (USIMS)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/227" + "about": "http://vocab.aodn.org.au/def/organisation/entity/227", + "hidden_labels": [ + "USIMS" + ], + "is_latest_label": true }, { "label": "Discipline of Anatomy and Histology, The University of Sydney (USYD)", "definition": "The Discipline of Anatomy and Histology is an education and research institution. Anatomy and Histology maintains a large catalogue of specimens for education and research. Research tools include a high-resolution transmission electron microscope and confocal microscope and excellent specimen preparation facilities.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/228" + "about": "http://vocab.aodn.org.au/def/organisation/entity/228", + "display_label": "Discipline of Anatomy and Histology", + "hidden_labels": [ + "Discipline of Anatomy and Histology" + ], + "is_latest_label": true }, { "label": "School of Aerospace, Mechanical and Mechatronic Engineering, The University of Sydney (USYD)", @@ -364,31 +746,72 @@ { "label": "Australian Centre for Field Robotics (ACFR), School of Aerospace, Mechanical and Mechatronic Engineering, The University of Sydney (USYD)", "definition": "The Australian Centre for Field Robotics (ACFR) is based in the School of Aerospace, Mechanical and Mechatronic Engineering at The University of Sydney, and is dedicated to the research, development, application and dissemination of autonomous and intelligent robots and systems for operation in outdoor environments.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/230" + "about": "http://vocab.aodn.org.au/def/organisation/entity/230", + "display_label": "Australian Centre for Field Robotics (ACFR)", + "hidden_labels": [ + "ACFR", + "Australian Centre for Field Robotics (ACFR)" + ], + "alt_labels": [ + "Australian Centre for Field Robotics (ACFR), The University of Sydney (USYD)" + ], + "is_latest_label": true } - ] + ], + "display_label": "School of Aerospace, Mechanical and Mechatronic Engineering", + "hidden_labels": [ + "School of Aerospace, Mechanical and Mechatronic Engineering" + ], + "is_latest_label": true }, { "label": "School of Biological Sciences, The University of Sydney (USYD)", "definition": "The School of Biological Sciences study areas encompass: molecular biology; genetics; cell biology; physiology; behaviour; biodiversity; ecology and evolution of Australian plants and animals; and student-learning in biology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/231" + "about": "http://vocab.aodn.org.au/def/organisation/entity/231", + "display_label": "School of Biological Sciences", + "hidden_labels": [ + "School of Biological Sciences" + ], + "is_latest_label": true }, { "label": "Ocean Technology Group (OTG), The University of Sydney (USYD)", "definition": "The Ocean Technology Group carries out research into aspects of ocean engineering, and is a member of The University of Sydney Institute of Marine Science.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/232" + "about": "http://vocab.aodn.org.au/def/organisation/entity/232", + "display_label": "Ocean Technology Group (OTG)", + "hidden_labels": [ + "OTG", + "Ocean Technology Group (OTG)" + ], + "is_latest_label": true }, { "label": "Department of Geography, The University of Sydney (USYD)", "definition": "The Department of Geography merged with the Department of Geology and Geophysics in 1998, to form the current School of Geosciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/233" + "about": "http://vocab.aodn.org.au/def/organisation/entity/233", + "display_label": "Department of Geography", + "hidden_labels": [ + "Department of Geography" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/225" }, { "label": "Ocean Science Institute, The University of Sydney (USYD)", "definition": "Marine Science at the University of Sydney dates back to the 1880's. The Marine Studies Centre and the Ocean Science Institute were established in 1970, and these were replaced by the University of Sydney Institute of Marine Science (USIMS) in 2002.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/234" + "about": "http://vocab.aodn.org.au/def/organisation/entity/234", + "display_label": "Ocean Science Institute", + "hidden_labels": [ + "Ocean Science Institute" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/227" } - ] + ], + "hidden_labels": [ + "USYD" + ], + "is_latest_label": true }, { "label": "The University of Western Australia (UWA)", @@ -398,124 +821,265 @@ { "label": "School of Environmental Systems Engineering, The University of Western Australia (UWA)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/236" + "about": "http://vocab.aodn.org.au/def/organisation/entity/236", + "display_label": "School of Environmental Systems Engineering", + "hidden_labels": [ + "School of Environmental Systems Engineering" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/237" }, { "label": "School of Civil, Environmental and Mining Engineering (CEME), The University of Western Australia (UWA)", "definition": "The School offers coursework and research opportunities in all major areas of Civil, Environmental and Mining Engineering, with a focus on research in Engineering for Remote Operations.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/237" + "about": "http://vocab.aodn.org.au/def/organisation/entity/237", + "display_label": "School of Civil, Environmental and Mining Engineering (CEME)", + "hidden_labels": [ + "CEME", + "School of Civil, Environmental and Mining Engineering (CEME)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/561" }, { "label": "Centre for Water Research (CWR), The University of Western Australia (UWA)", "definition": "This centre was established in 1982 and contributed to the understanding of the transport and mixing processes in stratified lakes, estuaries and coastal seas. It was shut in 2015.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/238" + "about": "http://vocab.aodn.org.au/def/organisation/entity/238", + "display_label": "Centre for Water Research (CWR)", + "hidden_labels": [ + "CWR", + "Centre for Water Research (CWR)" + ], + "is_latest_label": false }, { "label": "Department of Botany, The University of Western Australia (UWA)", "definition": "This former department is now known as the School of Plant Biology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/239" + "about": "http://vocab.aodn.org.au/def/organisation/entity/239", + "display_label": "Department of Botany", + "hidden_labels": [ + "Department of Botany" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/240" }, { "label": "School of Plant Biology (SPB), The University of Western Australia (UWA)", "definition": "The School of Plant Biology is a research intensive school focusing on cropping, marine and natural terrestrial systems.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/240" + "about": "http://vocab.aodn.org.au/def/organisation/entity/240", + "display_label": "School of Plant Biology (SPB)", + "hidden_labels": [ + "SPB", + "School of Plant Biology (SPB)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/541" }, { "label": "UWA Oceans Institute (OI), The University of Western Australia (UWA)", "definition": "The UWA Oceans Institute brings together UWA's researchers into a multidisciplinary, integrated research focus. It's goal is to capitalise on UWA's existing research strengths – in areas such as oceanography, ecology, engineering, resource management, and governance.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/241" + "about": "http://vocab.aodn.org.au/def/organisation/entity/241", + "display_label": "UWA Oceans Institute (OI)", + "hidden_labels": [ + "OI", + "UWA Oceans Institute (OI)" + ], + "is_latest_label": true }, { "label": "Department of Zoology, The University of Western Australia (UWA)", "definition": "This former departments is now known as the School of Animal Biology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/242" + "about": "http://vocab.aodn.org.au/def/organisation/entity/242", + "display_label": "Department of Zoology", + "hidden_labels": [ + "Department of Zoology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/243" }, { "label": "School of Animal Biology (SAB), The University of Western Australia (UWA)", "definition": "The School offers coursework and research opportunities in animals and industry, animal structure and function, ecology, evolutionary biology, experimental and regenerative neurosciences, marine biology, neuroecology, science communication and wildlife management.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/243" + "about": "http://vocab.aodn.org.au/def/organisation/entity/243", + "display_label": "School of Animal Biology (SAB)", + "hidden_labels": [ + "SAB", + "School of Animal Biology (SAB)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/541" }, { "label": "School of Earth and Environment (SEE), The University of Western Australia (UWA)", "definition": "The School offers coursework and research opportunities spanning geosciences, geography and planning, soil science, environmental science and more.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/244" + "about": "http://vocab.aodn.org.au/def/organisation/entity/244", + "display_label": "School of Earth and Environment (SEE)", + "hidden_labels": [ + "SEE", + "School of Earth and Environment (SEE)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/562" }, { "label": "Centre of Excellence in Natural Resource Management (CENRM), The University of Western Australia (UWA)", "definition": "The centre's research focuses on enhancing the environmental, economic, social and cultural well-being of south-western Australia and elsewhere. The Centre is located in Western Australia's Great Southern region, a global hotspot of biodiversity. The centre complements its research through applied consultancy, education and communication.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/245" + "about": "http://vocab.aodn.org.au/def/organisation/entity/245", + "display_label": "Centre of Excellence in Natural Resource Management (CENRM)", + "hidden_labels": [ + "CENRM", + "Centre of Excellence in Natural Resource Management (CENRM)" + ], + "is_latest_label": true }, { "label": "Harry Perkins Institute of Medical Research", "definition": "The Harry Perkins Institute of Medical Research was established in 1998 as the Western Australian Institute for Medical Research (WAIMR) with the vision of creating a multi-site Institute that would enhance collaboration between Western Australian medical researchers. The University of Western Australia, Royal Perth Hospital and Sir Charles Gairdner Hospital were our founding partners and in July 2003, Fremantle Hospital also became a partner. In October 2013, WAIMR changed its name to the Harry Perkins Institute of Medical Research to honour our inaugural Chairman, Harry Perkins AO.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/246" + "about": "http://vocab.aodn.org.au/def/organisation/entity/246", + "is_latest_label": true }, { "label": "Centre for Marine Futures, The University of Western Australia (UWA)", "definition": "The Centre for Marine Futures applies innovative science to a wide range of marine environmental challenges.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/247" + "about": "http://vocab.aodn.org.au/def/organisation/entity/247", + "display_label": "Centre for Marine Futures", + "hidden_labels": [ + "Centre for Marine Futures" + ], + "is_latest_label": true }, { "label": "Department of Geography, The University of Western Australia (UWA)", "definition": "This former department is now part of the School of Earth and Environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/248" + "about": "http://vocab.aodn.org.au/def/organisation/entity/248", + "display_label": "Department of Geography", + "hidden_labels": [ + "Department of Geography" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/244" }, { "label": "School of Pathology and Laboratory Medicine, The University of Western Australia (UWA)", "definition": "This school was formed in January 2008, adding to the University's reputation for excellence in both medical teaching and research. Located at Queen Elizabeth II Medical Centre and Royal Perth Hospital, we give students hospital-based learning, while staff and postgraduates can access to major research facilities.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/249" + "about": "http://vocab.aodn.org.au/def/organisation/entity/249", + "display_label": "School of Pathology and Laboratory Medicine", + "hidden_labels": [ + "School of Pathology and Laboratory Medicine" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/564" }, { "label": "School of Agricultural and Resource Economics, The University of Western Australia (UWA)", "definition": "The school focuses on the interaction of people with natural resources, with expertise in natural resource management, bioeconomic modelling, agricultural risk management and policy analysis.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/250" + "about": "http://vocab.aodn.org.au/def/organisation/entity/250", + "display_label": "School of Agricultural and Resource Economics", + "hidden_labels": [ + "School of Agricultural and Resource Economics" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/563" }, { "label": "School of Social Sciences, The University of Western Australia (UWA)", "definition": "The school offers a learning and research environment spanning social and cultural studies in Australia, Europe and Asia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/251" + "about": "http://vocab.aodn.org.au/def/organisation/entity/251", + "display_label": "School of Social Sciences", + "hidden_labels": [ + "School of Social Sciences" + ], + "is_latest_label": true }, { "label": "School of Biological Sciences (SBS), The University of Western Australia (UWA)", "definition": "The School of Biological Sciences is a large, multi-disciplinary School with research and teaching focused on understanding and conserving life on earth. It 2018 it replaced the former School of Plant Biology and School of Animal Biology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/541" + "about": "http://vocab.aodn.org.au/def/organisation/entity/541", + "display_label": "School of Biological Sciences (SBS)", + "hidden_labels": [ + "SBS", + "School of Biological Sciences (SBS)" + ], + "is_latest_label": true }, { "label": "Oceans Graduate School (OGS), The University of Western Australia (UWA)", "definition": "The Oceans Graduate School, is one of three Schools in the Faculty of Engineering and Mathematical Sciences, and was established in 2018.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/542" + "about": "http://vocab.aodn.org.au/def/organisation/entity/542", + "display_label": "Oceans Graduate School (OGS)", + "hidden_labels": [ + "OGS", + "Oceans Graduate School (OGS)" + ], + "is_latest_label": true }, { "label": "Centre for Microscopy, Characterisation and Analysis (CMCA), The University of Western Australia (UWA)", "definition": "The centre provides world-class microscopy and microanalysis facilities and expertise to publicly funded researchers and industry.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/556" + "about": "http://vocab.aodn.org.au/def/organisation/entity/556", + "display_label": "Centre for Microscopy, Characterisation and Analysis (CMCA)", + "hidden_labels": [ + "CMCA", + "Centre for Microscopy, Characterisation and Analysis (CMCA)" + ], + "is_latest_label": true }, { "label": "School of Engineering, The University of Western Australia (UWA)", "definition": "The School of Engineering was established in 2018, and includes the following departments: Chemical Engineering; Civil, Environmental and Mining Engineering; Electrical, Electronic and Computer Engineering; and Mechanical Engineering.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/561" + "about": "http://vocab.aodn.org.au/def/organisation/entity/561", + "display_label": "School of Engineering", + "hidden_labels": [ + "School of Engineering" + ], + "is_latest_label": true }, { "label": "School of Earth Sciences (SES), The University of Western Australia (UWA)", "definition": "The School of Earth Sciences was established in 2018. It covers a wide range of fields of study including geology, geophysics, geochemistry, geobiology, geochronology, computer modelling and data analytics.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/562" + "about": "http://vocab.aodn.org.au/def/organisation/entity/562", + "display_label": "School of Earth Sciences (SES)", + "hidden_labels": [ + "SES", + "School of Earth Sciences (SES)" + ], + "is_latest_label": true }, { "label": "UWA School of Agriculture and Environment, The University of Western Australia (UWA)", "definition": "The school was established in 2018. It is a research intensive school that spans the broad disciplines of Agriculture and Resource Economics, Agricultural Science, Environmental Science and Geography and Planning.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/563" + "about": "http://vocab.aodn.org.au/def/organisation/entity/563", + "display_label": "UWA School of Agriculture and Environment", + "hidden_labels": [ + "UWA School of Agriculture and Environment" + ], + "is_latest_label": true }, { "label": "Medical School, The University of Western Australia (UWA)", "definition": "The medical school's divisions span the breadth of medical research.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/564" + "about": "http://vocab.aodn.org.au/def/organisation/entity/564", + "display_label": "Medical School", + "hidden_labels": [ + "Medical School" + ], + "is_latest_label": true }, { "label": "School of Biomedical Sciences, The University of Western Australia (UWA)", "definition": "UWA’s School of Biomedical Sciences encompasses teaching and research in a range of biological, medical and health-related fields.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/565" + "about": "http://vocab.aodn.org.au/def/organisation/entity/565", + "display_label": "School of Biomedical Sciences", + "hidden_labels": [ + "School of Biomedical Sciences" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UWA" + ], + "is_latest_label": true }, { "label": "University of Tasmania (UTAS)", @@ -525,89 +1089,189 @@ { "label": "School of Agricultural Science, University of Tasmania (UTAS)", "definition": "This school became part of the School of Land and Food (SLAF), in 2014.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/253" + "about": "http://vocab.aodn.org.au/def/organisation/entity/253", + "display_label": "School of Agricultural Science", + "hidden_labels": [ + "School of Agricultural Science" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/255" }, { "label": "School of Geography and Environmental Studies, University of Tasmania (UTAS)", "definition": "This school became part of the School of Land and Food (SLAF), in 2014.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/254" + "about": "http://vocab.aodn.org.au/def/organisation/entity/254", + "display_label": "School of Geography and Environmental Studies", + "hidden_labels": [ + "School of Geography and Environmental Studies" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/255" }, { "label": "School of Land and Food (SLAF), University of Tasmania (UTAS)", "definition": "The School of Land and Food was formed in 2014. It brings together the disciplines of geography, spatial science, agricultural science and food systems.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/255" + "about": "http://vocab.aodn.org.au/def/organisation/entity/255", + "display_label": "School of Land and Food (SLAF)", + "hidden_labels": [ + "SLAF", + "School of Land and Food (SLAF)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/546" }, { "label": "School of Zoology, University of Tasmania (UTAS)", "definition": "This school became part of the School of Biological Sciences (SBS), in 2014.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/256" + "about": "http://vocab.aodn.org.au/def/organisation/entity/256", + "display_label": "School of Zoology", + "hidden_labels": [ + "School of Zoology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/258" }, { "label": "School of Plant Science, University of Tasmania (UTAS)", "definition": "This school became part of the School of Biological Sciences (SBS), in 2014.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/257" + "about": "http://vocab.aodn.org.au/def/organisation/entity/257", + "display_label": "School of Plant Science", + "hidden_labels": [ + "School of Plant Science" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/258" }, { "label": "School of Biological Sciences (SBS), University of Tasmania (UTAS)", "definition": "The school of Biological Sciences was formed in 2014, bringing together the former schools of Zoology and Plant Science.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/258" + "about": "http://vocab.aodn.org.au/def/organisation/entity/258", + "display_label": "School of Biological Sciences (SBS)", + "hidden_labels": [ + "SBS", + "School of Biological Sciences (SBS)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/557" }, { "label": "Tasmanian Aquaculture and Fisheries Institute (TAFI)", "definition": "The institute was established, in 1998, as a centre of excellence in applied marine research to support the development and sustainable management of Tasmania's living marine resources. It was a joint venture between the University of Tasmania and the Tasmanian Government, utilising the expertise and facilities of the Department of Primary Industries and Water. It became part of the Institute for Marine and Antarctic Studies in 2010.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/259" + "about": "http://vocab.aodn.org.au/def/organisation/entity/259", + "hidden_labels": [ + "TAFI" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/260" }, { "label": "Institute for Marine and Antarctic Studies (IMAS), University of Tasmania (UTAS)", "definition": "The Institute for Marine and Antarctic Studies (IMAS) was established in 2009. It was created by the University of Tasmania (UTAS) Council to bring together the many strands of marine and Antarctic research currently being pursued in and around Hobart, to encourage the development of strengthened research links and exploit new research opportunities. IMAS brought together staff and students from the Tasmanian Aquaculture and Fisheries Institute (TAFI) , the Institute for Antarctic and Southern Ocean Studies (IASOS), and marine and Antarctic scientists from the academic Schools of UTAS.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/260" + "about": "http://vocab.aodn.org.au/def/organisation/entity/260", + "display_label": "Institute for Marine and Antarctic Studies (IMAS)", + "hidden_labels": [ + "IMAS", + "Institute for Marine and Antarctic Studies (IMAS)" + ], + "is_latest_label": true }, { "label": "School of Aquaculture, University of Tasmania (UTAS)", "definition": "The School of Aquaculture was conducted within the Australian Maritime College at the University of Tasmania, and in 2014 was incorporated into Institute for Marine and Antarctic Studies (IMAS) Launceston.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/261" + "about": "http://vocab.aodn.org.au/def/organisation/entity/261", + "display_label": "School of Aquaculture", + "hidden_labels": [ + "School of Aquaculture" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/260" }, { "label": "Antarctic Climate and Ecosystems Cooperative Research Centre (ACE CRC)", "definition": "The Antarctic Climate and Ecosystems Cooperative Research Centre (ACE CRC) provides a focus for Australia's national effort to understand the variability of Antarctica and the Southern Ocean and their role in Australia's future. The ACE CRC is a partnership dedicated to sustainable management of Antarctic marine ecosystem resources and the study of atmospheric and oceanic processes of the Southern Ocean and their role in global and regional climate change. ACE CRC's Mission Statement: * Extend the existing research base in the Antarctic physical environment into the science of Southern Ocean and Antarctic ecosystem dynamics * Encourage sustainable management of Southern Ocean and Antarctic marine living resources * Connect physical variability and change in the Southern Ocean and Antarctica with their climate impacts on Australia and the surrounding region to permit efficient response and adaptation * Enhance Australian leadership in Antarctic affairs and advance Australia's objectives for its Antarctic Territory and Exclusive Economic Zones * Expand engagement of the international science community in Southern Ocean and Antarctic research relevant to Australia's interests to deliver the knowledge and information needed by our diverse research users * Encourage the realisation of policy and commercial opportunities in Antarctica and the Southern Ocean * Produce expertly-trained scientists with international experience, skills in research, its broad application and its role in enterprise and policy.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/29" + "about": "http://vocab.aodn.org.au/def/organisation/entity/29", + "hidden_labels": [ + "ACE CRC" + ], + "is_latest_label": true }, { "label": "Tasmanian Partnership for Advanced Computing (TPAC)", "definition": "TPAC is located at the University of Tasmania in Hobart, and its partners are the University of Tasmania, CSIRO Oceans and Atmosphere, the Australian Government Antarctic Division, Antarctic Climate and Ecosystems Cooperative Research Centre (ACE CRC), Bureau of Meteorology Research Centre, and the Australian Maritime College.TPAC provides expertise and high performance computing facilities to the Australian and International research community.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/405" + "about": "http://vocab.aodn.org.au/def/organisation/entity/405", + "hidden_labels": [ + "TPAC" + ], + "is_latest_label": true }, { "label": "Tasmanian Institute of Agriculture (TIA), University of Tasmania (UTAS)", "definition": "The Tasmanian Institute of Agriculture (TIA) is a research institute at the University of Tasmania specialising in impact-driven research to support prosperous, innovative and sustainable agriculture and food sectors, and a healthy bioeconomy that supports communities. TIA began in 1996 as a joint venture between the University of Tasmania and the Tasmanian Government, bringing together the human and physical resources of the Tasmanian Government with the scientific research and teaching capacity of the University of Tasmania. In 2018 it took over Agriculture and Food Sciences, from the former School of Land and Food.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/546" + "about": "http://vocab.aodn.org.au/def/organisation/entity/546", + "display_label": "Tasmanian Institute of Agriculture (TIA)", + "hidden_labels": [ + "TIA", + "Tasmanian Institute of Agriculture (TIA)" + ], + "is_latest_label": true }, { "label": "School of Natural Sciences, University of Tasmania (UTAS)", "definition": "The school of Natural Sciences was formed in 2018, bringing together the former school of Biological Sciences and the disciplines of Chemistry, Earth Sciences, Mathematics and Physics which were part of the school of Physical Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/557" + "about": "http://vocab.aodn.org.au/def/organisation/entity/557", + "display_label": "School of Natural Sciences", + "hidden_labels": [ + "School of Natural Sciences" + ], + "is_latest_label": true }, { "label": "School of Technology, Environments and Design, University of Tasmania (UTAS)", "definition": "The School of Technology, Environments and Design is a science, technology and design enterprise of global reach and relevance, integrating social and physical sciences, and underpinned by systematic and technology innovation and design. The school was formed in 2018, and includes Geography and Spatial Sciences, which was part of the School of Land and Food.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/558" + "about": "http://vocab.aodn.org.au/def/organisation/entity/558", + "display_label": "School of Technology, Environments and Design", + "hidden_labels": [ + "School of Technology, Environments and Design" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/662" }, { "label": "Australian Maritime College (AMC), University of Tasmania (UTAS)", "definition": "The Australian Maritime College at the University of Tasmania is the national institute for maritime education, training and research.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/617" + "about": "http://vocab.aodn.org.au/def/organisation/entity/617", + "display_label": "Australian Maritime College (AMC)", + "hidden_labels": [ + "AMC", + "Australian Maritime College (AMC)" + ], + "is_latest_label": true }, { "label": "School of Geography, Planning and Spatial Sciences (GPSS), University of Tasmania (UTAS)", "definition": "The School of Geography, Planning, and Spatial Sciences focuses on complex human-environment interrelations, across scales from the within the household to the entire globe. Through the study of places, landscapes, and regions, geographers and spatial scientists tackle problems such as food and energy security, economic inequality, biodiversity conservation, and climate change.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/662" + "about": "http://vocab.aodn.org.au/def/organisation/entity/662", + "display_label": "School of Geography, Planning and Spatial Sciences (GPSS)", + "hidden_labels": [ + "GPSS", + "School of Geography, Planning and Spatial Sciences (GPSS)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UTAS" + ], + "is_latest_label": true }, { "label": "Central Queensland University (CQU)", "definition": "The University was originally founded in Rockhampton in 1967 and was known as the Queensland Institute of Technology (Capricornia), achieving full university status in 1992. Its main campus is in North Rockhampton, Queensland. Along with locations in regional Queensland (Bundaberg, Emerald, Gladstone, and Mackay), CQUniversity has also expanded its presence throughout Australia with campuses in Adelaide, Brisbane, Melbourne, Noosa and Sydney, Study Centres in Biloela and Yeppoon, a Cairns Distance Education Study Centre, a delivery site in Edithvale, Victoria, and Partner Study Hubs in Cannonvale, Queensland and Geraldton, Western Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/262" + "about": "http://vocab.aodn.org.au/def/organisation/entity/262", + "hidden_labels": [ + "CQU" + ], + "is_latest_label": true }, { "label": "Charles Darwin University (CDU)", @@ -617,17 +1281,34 @@ { "label": "Research Institute for the Environment and Livelihoods (RIEL), Charles Darwin University (CDU)", "definition": "The Research Institute for the Environment and Livelihoods (RIEL) is a Tier 1 institute that consolidates CDU's environmental and natural resource management research.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/265" + "about": "http://vocab.aodn.org.au/def/organisation/entity/265", + "display_label": "Research Institute for the Environment and Livelihoods (RIEL)", + "hidden_labels": [ + "Research Institute for the Environment and Livelihoods (RIEL)" + ], + "is_latest_label": true }, { "label": "School of Environmental and Life Sciences (SELS), Charles Darwin University (CDU)", "definition": "This school became part of the School of Environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/266" + "about": "http://vocab.aodn.org.au/def/organisation/entity/266", + "display_label": "School of Environmental and Life Sciences (SELS)", + "hidden_labels": [ + "SELS", + "School of Environmental and Life Sciences (SELS)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/267" }, { "label": "School of Environment, Charles Darwin University (CDU)", "definition": "The School of Environment is responsible for teaching and research in the fields of: biological science, environmental science, environmental policy and management, chemistry and biochemistry, ecology, spatial science and remote sensing, marine and freshwater ecology, wildlife conservation, management of natural resources.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/267" + "about": "http://vocab.aodn.org.au/def/organisation/entity/267", + "display_label": "School of Environment", + "hidden_labels": [ + "School of Environment" + ], + "is_latest_label": true }, { "label": "Institute of Advanced Studies, Charles Darwin University (CDU)", @@ -637,11 +1318,29 @@ { "label": "School for Environmental Research, Institute of Advanced Studies, Charles Darwin University (CDU)", "definition": "This school became part of the Research Institute for the Environment and Livelihoods (RIEL).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/264" + "about": "http://vocab.aodn.org.au/def/organisation/entity/264", + "display_label": "School for Environmental Research", + "hidden_labels": [ + "School for Environmental Research" + ], + "alt_labels": [ + "School for Environmental Research, Charles Darwin University (CDU)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/265" } - ] + ], + "display_label": "Institute of Advanced Studies", + "hidden_labels": [ + "Institute of Advanced Studies" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "CDU" + ], + "is_latest_label": true }, { "label": "Charles Sturt University (CSU)", @@ -651,9 +1350,18 @@ { "label": "School of Environmental Sciences, Charles Sturt University (CSU)", "definition": "The School of Environmental Sciences, Charles Sturt University (CSU) is located at the Albury-Wodonga campus. It has courses in environmental science, park management, natural resource management, spatial science, and outdoor recreation and ecotourism.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/269" + "about": "http://vocab.aodn.org.au/def/organisation/entity/269", + "display_label": "School of Environmental Sciences", + "hidden_labels": [ + "School of Environmental Sciences" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "CSU" + ], + "is_latest_label": true }, { "label": "Deakin University", @@ -663,19 +1371,38 @@ { "label": "School of Humanities and Social Sciences (SHSS), Deakin University", "definition": "The School of Humanities and Social Sciences, provides for the study of Australian Studies, Anthropology, Criminology, History, International Relations, Politics, Sociology, Middle East Studies, and Philosophy. You can also learn Chinese, Arabic, Indonesian and Spanish.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/271" + "about": "http://vocab.aodn.org.au/def/organisation/entity/271", + "display_label": "School of Humanities and Social Sciences (SHSS)", + "hidden_labels": [ + "SHSS", + "School of Humanities and Social Sciences (SHSS)" + ], + "is_latest_label": true }, { "label": "School of Ecology and Environment, Deakin University", "definition": "Deakin University's School of Ecology and Environment was part of the Faculty of Science and Technology. Areas the School specialised in included: Ecology, Earth science, Environmental Science and Management as well as Aquatic Sciences. The school no longer exists and was incorporated into the School of Life and Environmental Sciences, Faculty of Science and Technology. (Courtesy of Encyclopedia of Australian Science)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/272" + "about": "http://vocab.aodn.org.au/def/organisation/entity/272", + "display_label": "School of Ecology and Environment", + "hidden_labels": [ + "School of Ecology and Environment" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/273" }, { "label": "School of Life and Environmental Sciences (LES), Deakin University", "definition": "The School of Live and Environmental Sciences, has the following study areas: biological science, biomedical science, environmental management and sustainability, fisheries and agriculture, forensic science, marine biology, wildlfie and conservation biology, and zoology and animal science.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/273" + "about": "http://vocab.aodn.org.au/def/organisation/entity/273", + "display_label": "School of Life and Environmental Sciences (LES)", + "hidden_labels": [ + "LES", + "School of Life and Environmental Sciences (LES)" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Edith Cowan University (ECU)", @@ -690,16 +1417,38 @@ { "label": "Centre for Marine Ecosystems Research (CMER), School of Natural Sciences, Edith Cowan University (ECU)", "definition": "The Centre for Marine Ecosystems Research (CMER) uses applied and fundamental research to improve understanding of the ecological processes of coastal marine systems, and how these respond to both natural and human induced pressures.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/276" + "about": "http://vocab.aodn.org.au/def/organisation/entity/276", + "display_label": "Centre for Marine Ecosystems Research (CMER)", + "hidden_labels": [ + "CMER" + ], + "alt_labels": [ + "Centre for Marine Ecosystems Research (CMER)" + ], + "is_latest_label": true }, { "label": "Centre for Ecosystem Management, School of Natural Sciences, Edith Cowan University (ECU)", "definition": "The Centre for Ecosystem Management's researchers have diverse research interests that include freshwater ecosystems, ecological water requirements, conservation biology, ecophysiology, semi-arid environments, the ecology of forests and woodlands and the cultural ecology of wetlands and other landscapes.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/277" + "about": "http://vocab.aodn.org.au/def/organisation/entity/277", + "display_label": "Centre for Ecosystem Management", + "alt_labels": [ + "Centre for Ecosystem Management" + ], + "is_latest_label": true } - ] + ], + "display_label": "School of Natural Sciences", + "hidden_labels": [ + "School of Natural Sciences" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "ECU" + ], + "is_latest_label": true }, { "label": "Griffith University (GU)", @@ -709,24 +1458,56 @@ { "label": "Australian Rivers Institute (ARI), Griffith University (GU)", "definition": "This is Australia’s largest university aquatic ecosystem research groups with globally recognised expertise in river, catchment and coastal ecosystems and the interaction with these systems in society. It brings together 130 staff and post-graduate students at the Nathan and Gold Coast campuses. Research focuses on a \"source to sea\" philosophy delivering six themes: Catchment and river ecosystem processes; Coastal and estuarine ecosystem processes; Integration, modelling and catchment management; Rehabilitation science and environmental flows; Aquatic biodiversity and conservation; and Aquatic ecosystem monitoring and assessment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/342" + "about": "http://vocab.aodn.org.au/def/organisation/entity/342", + "display_label": "Australian Rivers Institute (ARI)", + "hidden_labels": [ + "ARI", + "Australian Rivers Institute (ARI)" + ], + "is_latest_label": true }, { "label": "National Climate Change Adaptation Research Facility (NCCARF), Griffith University (GU)", "definition": "The National Climate Change Adaptation Research Facility (NCCARF) works to support decision makers throughout Australia as they prepare for and manage the risks of climate change and sea-level rise. Based at Griffith University on the Gold Coast, NCCARF has a national focus across Australia to build resilience to climate change in government, NGOs and the private sector.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/411" + "about": "http://vocab.aodn.org.au/def/organisation/entity/411", + "display_label": "National Climate Change Adaptation Research Facility (NCCARF)", + "hidden_labels": [ + "NCCARF", + "National Climate Change Adaptation Research Facility (NCCARF)" + ], + "is_latest_label": true }, { "label": "Environmental Futures Research Institute (EFRI), Griffith School of Environment, Griffith University (GU)", "definition": "Conducting science that matters is the guiding principle of Griffith Sciences’ Environmental Futures Research Institute (EFRI). By exploring new science frontiers, stimulating innovation and influencing public policy, EFRI members are improving the health and well-being of people by developing clean energy sources; advancing knowledge of ecosystems and the impact on human health and wellbeing, combating worldwide food and water shortages; and revealing the full story of the origins of the people in our region and ancient migrations. EFRI's research spans 39 countries, including more than 170 global collaborators across private enterprise, government agencies, plus numerous other universities and specialist research institutes.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/484" + "about": "http://vocab.aodn.org.au/def/organisation/entity/484", + "display_label": "Environmental Futures Research Institute (EFRI)", + "hidden_labels": [ + "EFRI", + "Environmental Futures Research Institute (EFRI)" + ], + "alt_labels": [ + "Environmental Futures Research Institute (EFRI), Griffith University (GU)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/548" }, { "label": "Environmental Futures Research Institute (EFRI), Griffith University (GU)", "definition": "Conducting science that matters is the guiding principle of Griffith Sciences’ Environmental Futures Research Institute (EFRI). By exploring new science frontiers, stimulating innovation and influencing public policy, EFRI members are improving the health and well-being of people by developing clean energy sources; advancing knowledge of ecosystems and the impact on human health and wellbeing, combating worldwide food and water shortages; and revealing the full story of the origins of the people in our region and ancient migrations. EFRI's research spans 39 countries, including more than 170 global collaborators across private enterprise, government agencies, plus numerous other universities and specialist research institutes.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/548" + "about": "http://vocab.aodn.org.au/def/organisation/entity/548", + "display_label": "Environmental Futures Research Institute (EFRI)", + "hidden_labels": [ + "EFRI", + "Environmental Futures Research Institute (EFRI)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "GU" + ], + "is_latest_label": true }, { "label": "James Cook University (JCU)", @@ -736,49 +1517,102 @@ { "label": "School of Tropical Environment Studies and Geography, James Cook University (JCU)", "definition": "This former school became part of the College of Marine and Environmental Sciences (CMES)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/280" + "about": "http://vocab.aodn.org.au/def/organisation/entity/280", + "display_label": "School of Tropical Environment Studies and Geography", + "hidden_labels": [ + "School of Tropical Environment Studies and Geography" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/281" }, { "label": "College of Marine And Environmental Sciences (CMES), James Cook University (JCU)", "definition": "The College of Marine and Environmental Sciences includes four broad groups that reflect core areas of expertise as follows: Aquaculture and Fisheries; Marine Biology; Terrestrial Ecosystems; and Environment Geography and Sustainability.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/281" + "about": "http://vocab.aodn.org.au/def/organisation/entity/281", + "display_label": "College of Marine And Environmental Sciences (CMES)", + "hidden_labels": [ + "CMES", + "College of Marine And Environmental Sciences (CMES)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/603" }, { "label": "Centre for Tropical Waters and Aquatic Research (TropWATER), James Cook University (JCU)", "definition": "The Centre for Tropical Water and Aquatic Ecosystem Research, undertakes research in fields related to water science, resource management and the ecology of water ecosystems.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/282" + "about": "http://vocab.aodn.org.au/def/organisation/entity/282", + "display_label": "Centre for Tropical Waters and Aquatic Research (TropWATER)", + "hidden_labels": [ + "Centre for Tropical Waters and Aquatic Research (TropWATER)", + "TropWATER" + ], + "is_latest_label": true }, { "label": "School of Mathematics, Physics and Information Technology, James Cook University (JCU)", "definition": "The school was formed in 2006, when the School of Information Technology was merged with the School of Maths and Physical Sciences. In 2009, the school was dissolved when the school of Information Technology was detached, and merged with the School of Business. The former School of Maths and Physical Sciences, has now became part of the College of Science, Technology and Engineering.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/283" + "about": "http://vocab.aodn.org.au/def/organisation/entity/283", + "display_label": "School of Mathematics, Physics and Information Technology", + "hidden_labels": [ + "School of Mathematics, Physics and Information Technology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/284" }, { "label": "College of Science, Technology and Engineering (CSTE), James Cook University (JCU)", "definition": "The college covers the fields of physical sciences, earth sciences and engineering. It is structured into four multidisciplinary groupings: Infrastructure and Design; Earth and Oceans; Matters and Materials; and Intelligent Systems, Information and Modelling.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/284" + "about": "http://vocab.aodn.org.au/def/organisation/entity/284", + "display_label": "College of Science, Technology and Engineering (CSTE)", + "hidden_labels": [ + "CSTE", + "College of Science, Technology and Engineering (CSTE)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/603" }, { "label": "College of Business, Law and Governance, James Cook University (JCU)", "definition": "The College of Business, Law and Governance was formed in 2014 to provide new opportunities and collaborations for both education and research. There is a focus on ethics, sustainability and governance, as well as an understanding of complex business systems. The college delivers a range of courses in Cairns, Singapore, Townsville and Brisbane.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/285" + "about": "http://vocab.aodn.org.au/def/organisation/entity/285", + "display_label": "College of Business, Law and Governance", + "hidden_labels": [ + "College of Business, Law and Governance" + ], + "is_latest_label": true }, { "label": "Seagrass-Watch", "definition": "Seagrass-Watch is a global scientific, non-destructive, seagrass assessment and monitoring program. Since it's genesis in 1998 in Australia, Seagrass-Watch has expanded internationally with participants in Micronesia, Papua New Guinea, Solomon Islands, Fiji, New Caledonia, Palau, Japan, China, Viet Nam, Philippines, Thailand, Malaysia, Indonesia, Myanmar, Bangladesh, India, Eritrea, Kuwait, France, Spain, Comoros Islands, Maldives, Carribbean, United States of America and Singapore. Monitoring is now occurring at approximately 259 sites across 17 countries and an additional 9 countries participate but are currently at resource identification stage.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/286" + "about": "http://vocab.aodn.org.au/def/organisation/entity/286", + "is_latest_label": true }, { "label": "College of Science and Engineering (CSE), James Cook University (JCU)", "definition": "As part of the Division of Tropical Environments and Societies, the College of Science and Engineering promotes, supports and administers quality teaching, hands-on experiences, industry placements and research at JCU in the areas of Marine Biology & Aquaculture, Zoology and Ecology, Geoscience, Environmental Management, Information Technology, Physical Sciences, and Engineering. It incorporates the former colleges of Science, Technology and Engineering; and Marine and Environmental Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/603" + "about": "http://vocab.aodn.org.au/def/organisation/entity/603", + "display_label": "College of Science and Engineering (CSE)", + "hidden_labels": [ + "CSE", + "College of Science and Engineering (CSE)" + ], + "is_latest_label": true }, { "label": "ARC Centre of Excellence for Coral Reef Studies, James Cook University (JCU)", "definition": "The ARC Centre of Excellence for Coral Reef Studies undertakes world-best integrated research for sustainable use and management of coral reefs. Funded in July 2005 under the Australian Research Council (ARC) Centres of Excellence program, this prestigious research centre is headquartered at James Cook University, in Townsville. The ARC Centre is a partnership of James Cook University (JCU), the Australian Institute of Marine Science (AIMS), The Australian National University (ANU), the Great Barrier Reef Marine Park Authority (GBRMPA), The University of Queensland (UQ) and The University of Western Australia (UWA). The ARC Centre of Excellence cements Australia’s leading contribution to coral reef sciences, and fosters stronger collaborative links between the major partners and 24 other leading institutions in nine countries.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/618" + "about": "http://vocab.aodn.org.au/def/organisation/entity/618", + "display_label": "ARC Centre of Excellence for Coral Reef Studies", + "hidden_labels": [ + "ARC Centre of Excellence for Coral Reef Studies" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "JCU" + ], + "is_latest_label": true }, { "label": "Macquarie University", @@ -788,14 +1622,25 @@ { "label": "Department of Biological Sciences, Macquarie University", "definition": "This department integrates research and teaching across all levels of biological organisation as well as across a diversity of taxa. It's work links structure with function and processes that influence the evolution and ecology of organisms, using models ranging from microbes through to fungi, plants and animals.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/288" + "about": "http://vocab.aodn.org.au/def/organisation/entity/288", + "display_label": "Department of Biological Sciences", + "hidden_labels": [ + "Department of Biological Sciences" + ], + "is_latest_label": true }, { "label": "Department of Molecular Sciences, Macquarie University", "definition": "The Department of Molecular Sciences (MolSci@MQ) is a research intensive department of academics and students who study and teach chemistry and molecular cell sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/600" + "about": "http://vocab.aodn.org.au/def/organisation/entity/600", + "display_label": "Department of Molecular Sciences", + "hidden_labels": [ + "Department of Molecular Sciences" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Monash University", @@ -805,17 +1650,32 @@ { "label": "Department of Ecology and Evolutionary Biology, Monash University", "definition": "This former department became part of the School of Biological Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/290" + "about": "http://vocab.aodn.org.au/def/organisation/entity/290", + "display_label": "Department of Ecology and Evolutionary Biology", + "hidden_labels": [ + "Department of Ecology and Evolutionary Biology" + ], + "is_latest_label": false }, { "label": "School of Biological Sciences, Monash University", "definition": "The School of Biological Sciences is based at the Clayton campus. It has research strengths in four discipline areas: Evolution, Genetics, Ecology and Conservation Biology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/291" + "about": "http://vocab.aodn.org.au/def/organisation/entity/291", + "display_label": "School of Biological Sciences", + "hidden_labels": [ + "School of Biological Sciences" + ], + "is_latest_label": true }, { "label": "Department of Civil Engineering, Monash University", "definition": "The Department of Civil Engineering is based at the Clayton campus, and was formed in 1961. It provides education and research outputs in the areas of: geomechanics, structures, transport, water and mining.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/292" + "about": "http://vocab.aodn.org.au/def/organisation/entity/292", + "display_label": "Department of Civil Engineering", + "hidden_labels": [ + "Department of Civil Engineering" + ], + "is_latest_label": true }, { "label": "School of Chemistry, Monash University", @@ -825,11 +1685,26 @@ { "label": "Water Studies Centre (WSC), School of Chemistry, Monash University", "definition": "The Water Studies Centre (WSC) was established at the Chisholm Institute of Technology in 1975 as the research and consultancy arm of the former Department of Chemistry and Biology. In 1990 Chisholm Institute merged with Monash University and the WSC became a research centre of the Faculty of Science with close links to the School of Chemistry. In late 1998, the Centre was relocated to new purpose-built premises on the Clayton campus.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/293" + "about": "http://vocab.aodn.org.au/def/organisation/entity/293", + "display_label": "Water Studies Centre (WSC)", + "hidden_labels": [ + "WSC", + "Water Studies Centre (WSC)" + ], + "alt_labels": [ + "Water Studies Centre (WSC), Monash University" + ], + "is_latest_label": true } - ] + ], + "display_label": "School of Chemistry", + "hidden_labels": [ + "School of Chemistry" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Murdoch University", @@ -839,22 +1714,47 @@ { "label": "School of Biological and Environmental Sciences, Murdoch University", "definition": "This former school was renamed the School of Biological Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/295" + "about": "http://vocab.aodn.org.au/def/organisation/entity/295", + "display_label": "School of Biological and Environmental Sciences", + "hidden_labels": [ + "School of Biological and Environmental Sciences" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/296" }, { "label": "School of Biological Sciences, Murdoch University", "definition": "This former school was renamed the School of Biological Sciences and Biotechnology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/296" + "about": "http://vocab.aodn.org.au/def/organisation/entity/296", + "display_label": "School of Biological Sciences", + "hidden_labels": [ + "School of Biological Sciences" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/298" }, { "label": "School of Environmental Science, Murdoch University", "definition": "The school was dissolved in 2013, when it became part of the School of Veterinary and Life Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/297" + "about": "http://vocab.aodn.org.au/def/organisation/entity/297", + "display_label": "School of Environmental Science", + "hidden_labels": [ + "School of Environmental Science" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/299" }, { "label": "School of Biological Sciences and Biotechnology (BSB), Murdoch University", "definition": "The school was dissolved in 2013, when it became part of the School of Veterinary and Life Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/298" + "about": "http://vocab.aodn.org.au/def/organisation/entity/298", + "display_label": "School of Biological Sciences and Biotechnology (BSB)", + "hidden_labels": [ + "BSB", + "School of Biological Sciences and Biotechnology (BSB)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/299" }, { "label": "School of Veterinary and Life Sciences (VLS), Murdoch University", @@ -864,21 +1764,47 @@ { "label": "Centre for Fish and Fisheries Research (CFFR), School of Veterinary and Life Sciences (VLS), Murdoch University", "definition": "The Centre was established in 2000 in recognition of a history of sustained and internationally recognised excellence in research and postgraduate training in fish and fisheries biology. Its studies have focused on the faunas and ecosystems of Western Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/300" + "about": "http://vocab.aodn.org.au/def/organisation/entity/300", + "display_label": "Centre for Fish and Fisheries Research (CFFR)", + "hidden_labels": [ + "CFFR", + "Centre for Fish and Fisheries Research (CFFR)" + ], + "alt_labels": [ + "Centre for Fish and Fisheries Research (CFFR), Murdoch University" + ], + "is_latest_label": true } - ] + ], + "display_label": "School of Veterinary and Life Sciences (VLS)", + "hidden_labels": [ + "School of Veterinary and Life Sciences (VLS)", + "VLS" + ], + "is_latest_label": true }, { "label": "School of Management and Governance, Murdoch University", "definition": "The school has a strong research and a multi-disciplinary focus in management, marketing, economics, finance, accounting, sustainability and politics.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/301" + "about": "http://vocab.aodn.org.au/def/organisation/entity/301", + "display_label": "School of Management and Governance", + "hidden_labels": [ + "School of Management and Governance" + ], + "is_latest_label": true }, { "label": "School of Engineering and Information Technology, Murdoch University", "definition": "The school covers the disciplines of: Engineering, Mathematics and Statistics, Physics, Information Technology, Energy Studies, Extractive Metallurgy and Chemistry.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/302" + "about": "http://vocab.aodn.org.au/def/organisation/entity/302", + "display_label": "School of Engineering and Information Technology", + "hidden_labels": [ + "School of Engineering and Information Technology" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Northern Territory University (NTU)", @@ -888,9 +1814,19 @@ { "label": "School of Biological, Environmental and Chemical Sciences, Northern Territory University (NTU)", "definition": "This school ceased to exist when the Northern Territory University became part of the new Charles Darwin University in 2004.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/304" + "about": "http://vocab.aodn.org.au/def/organisation/entity/304", + "display_label": "School of Biological, Environmental and Chemical Sciences", + "hidden_labels": [ + "School of Biological, Environmental and Chemical Sciences" + ], + "is_latest_label": false } - ] + ], + "hidden_labels": [ + "NTU" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/263" }, { "label": "The University of Adelaide", @@ -900,9 +1836,15 @@ { "label": "School of Biological Sciences, The University of Adelaide", "definition": "The School of Biological Sciences was formed in 2015, and brings together parts of the former schools of Earth and Environmental Sciences (EES), and Molecular and Biomedical Sciences (MBS). The School of Biological Sciences was formed to coordinate and consolidate the University's research and teaching in Ecology and Environmental Science; Genetics and Evolution; and Molecular and Cellular Biology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/306" + "about": "http://vocab.aodn.org.au/def/organisation/entity/306", + "display_label": "School of Biological Sciences", + "hidden_labels": [ + "School of Biological Sciences" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Canberra (UC)", @@ -912,9 +1854,19 @@ { "label": "Institute for Applied Ecology (IAE), University of Canberra (UC)", "definition": "The Institute for Applied Ecology's core purpose is to undertake high quality research which improves our understanding of the environment to enhance decision-making for natural resource management and sustainable development. The Institute undertakes broadly based environmental research across four interrelated science programs: Conservation Ecology, Water Science, Ecochemistry and Toxicology, and Environmental Genetics and Genomics.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/308" + "about": "http://vocab.aodn.org.au/def/organisation/entity/308", + "display_label": "Institute for Applied Ecology (IAE)", + "hidden_labels": [ + "IAE", + "Institute for Applied Ecology (IAE)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UC" + ], + "is_latest_label": true }, { "label": "The University of Melbourne", @@ -924,34 +1876,69 @@ { "label": "School of Botany, The University of Melbourne", "definition": "The school offers training and research opportunities in the fields of: plant cell biology, molecular plant biology and biotechnology, plant diseases, plant physiology, ecology and environmental science, marine botany, plant systematics, and fossils and evolutionary biology. The school became part of the School of Biosciences in 2015.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/310" + "about": "http://vocab.aodn.org.au/def/organisation/entity/310", + "display_label": "School of Botany", + "hidden_labels": [ + "School of Botany" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/312" }, { "label": "Department of Zoology, The University of Melbourne", "definition": "The school's research program ranges from the structure and function of single cells through to the ecology, reproduction, development and evolution of animals. The school became part of the School of Biosciences in 2015.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/311" + "about": "http://vocab.aodn.org.au/def/organisation/entity/311", + "display_label": "Department of Zoology", + "hidden_labels": [ + "Department of Zoology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/312" }, { "label": "School of BioSciences, The University of Melbourne", "definition": "The School of BioSciences came into existence in 2015, consolidating expertise from three disciplines - botany, genetics and zoology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/312" + "about": "http://vocab.aodn.org.au/def/organisation/entity/312", + "display_label": "School of BioSciences", + "hidden_labels": [ + "School of BioSciences" + ], + "is_latest_label": true }, { "label": "Department of Infrastructure Engineering, The University of Melbourne", "definition": "The Department of Infrastructure Engineering sits within the School of Engineering and houses the vital disciplines of Geomatics, Civil Engineering and Environmental Engineering.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/313" + "about": "http://vocab.aodn.org.au/def/organisation/entity/313", + "display_label": "Department of Infrastructure Engineering", + "hidden_labels": [ + "Department of Infrastructure Engineering" + ], + "is_latest_label": true }, { "label": "Department of Civil and Environmental Engineering, The University of Melbourne", "definition": "This former department became part of the Department of Infrastructure Engineering.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/314" + "about": "http://vocab.aodn.org.au/def/organisation/entity/314", + "display_label": "Department of Civil and Environmental Engineering", + "hidden_labels": [ + "Department of Civil and Environmental Engineering" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/313" }, { "label": "School of Anthropology, Geography and Environmental Studies (SAGES), The University of Melbourne", "definition": "This school was part of The Univeristy of Melbourne in the 1990s, and ceased to exist in the mid 2000s.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/315" + "about": "http://vocab.aodn.org.au/def/organisation/entity/315", + "display_label": "School of Anthropology, Geography and Environmental Studies (SAGES)", + "hidden_labels": [ + "SAGES", + "School of Anthropology, Geography and Environmental Studies (SAGES)" + ], + "is_latest_label": false } - ] + ], + "is_latest_label": true }, { "label": "University of the Sunshine Coast (USC)", @@ -961,19 +1948,33 @@ { "label": "School of Health and Sport Sciences, University of the Sunshine Coast (USC)", "definition": "The School’s teaching, research and outreach will focus on the prevention of disease and disability to improve quality of life by influencing the practices of the consumer and or the provider. Research will concentrate on the discovery of new knowledge and the application of new knowledge to programs, policies and practice. The School will focus on the improvement of activities in primary four areas, Research, teaching and learning, student experiences and community engagement and outreach.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/317" + "about": "http://vocab.aodn.org.au/def/organisation/entity/317", + "display_label": "School of Health and Sport Sciences", + "hidden_labels": [ + "School of Health and Sport Sciences" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "USC" + ], + "is_latest_label": true }, { "label": "University of Technology, Sydney (UTS)", "definition": "This university was established in 1988. It has two campuses: Sydney city, and Kuring-gai campus in Lindfield, Sydney.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/318" + "about": "http://vocab.aodn.org.au/def/organisation/entity/318", + "hidden_labels": [ + "UTS" + ], + "is_latest_label": true }, { "label": "BlueNet", "definition": "The BlueNet project was established by a grant from the Australian Government to provide a virtual data centre to support long term curation and management of data for Australia's marine science researchers. BlueNet linked vast data repositories and marine resources that currently reside in academic and government institutions both in Australia and overseas. Funding for the project concluded in 2009, and management of the project is now undertaken by staff from the Australian Ocean Data Network (AODN).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/42" + "about": "http://vocab.aodn.org.au/def/organisation/entity/42", + "is_latest_label": false }, { "label": "Curtin University of Technology", @@ -983,29 +1984,59 @@ { "label": "School of Environmental Biology, Curtin University of Technology", "definition": "The School of Environmental Biology, existed between approximately 1995 and 2003. It changed its name to the Department of Environmental Biology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/180" + "about": "http://vocab.aodn.org.au/def/organisation/entity/180", + "display_label": "School of Environmental Biology", + "hidden_labels": [ + "School of Environmental Biology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/181" }, { "label": "Department of Environmental Biology, Curtin University of Technology", "definition": "The Department of Environmental Biology, existed between approximately 2005 and 2009. It is now known as the Department of Environment and Agriculture.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/181" + "about": "http://vocab.aodn.org.au/def/organisation/entity/181", + "display_label": "Department of Environmental Biology", + "hidden_labels": [ + "Department of Environmental Biology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/182" }, { "label": "School of Surveying and Land Information, Curtin University of Technology", "definition": "The School of Surveying and Land Information, changed its name to the School of Spatial Sciences, Curtin University of Technology in 1997. It is now known as the Department of Spatial Sciences, Curtin University.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/184" + "about": "http://vocab.aodn.org.au/def/organisation/entity/184", + "display_label": "School of Surveying and Land Information", + "hidden_labels": [ + "School of Surveying and Land Information" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/185" }, { "label": "Department of Applied Geology, Curtin University of Technology", "definition": "This department existed under the former name of the Curtin University, it is now known as the Department of Applied Geology, Curtin University.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/457" + "about": "http://vocab.aodn.org.au/def/organisation/entity/457", + "display_label": "Department of Applied Geology", + "hidden_labels": [ + "Department of Applied Geology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/183" } - ] + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/178" }, { "label": "Queensland University of Technology (QUT)", "definition": "The Queensland University of Technology (QUT) is located in the city of Brisbane, Queensland. The university in its current form was founded in 1989, when the then Queensland Institute of Technology (QIT) was granted university status by the 'Queensland University of Technology Act' passed in 1988 and also by the subsequent merger of Brisbane College of Advanced Education with QUT in 1990.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/553" + "about": "http://vocab.aodn.org.au/def/organisation/entity/553", + "hidden_labels": [ + "QUT" + ], + "is_latest_label": true }, { "label": "Southern Cross University (SCU)", @@ -1015,14 +2046,24 @@ { "label": "Faculty of Science and Engineering, Southern Cross University (SCU)", "definition": "The faculty has its base in the heart of subtropical ecosystems - that pass through the reefs, estuarine wetland areas, diverse forest environments, and agricultural areas.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/654" + "about": "http://vocab.aodn.org.au/def/organisation/entity/654", + "display_label": "Faculty of Science and Engineering", + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "SCU" + ], + "is_latest_label": true }, { "label": "University of Wollongong (UOW)", "definition": "This public research university, located in the coastal city of Wollongong, New South Wales, was established in 1975.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/663" + "about": "http://vocab.aodn.org.au/def/organisation/entity/663", + "hidden_labels": [ + "UOW" + ], + "is_latest_label": true } ] }, @@ -1034,7 +2075,11 @@ { "label": "Oregon State University (OSU)", "definition": "Oregon State University (OSU) is a flagship university of the Oregon University System. A coeducational, public research university located in Corvallis, Oregon. The university offers undergraduate, graduate, doctoral degrees and a multitude of research opportunities.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/320" + "about": "http://vocab.aodn.org.au/def/organisation/entity/320", + "hidden_labels": [ + "OSU" + ], + "is_latest_label": true }, { "label": "University of California, San Diego (UCSD)", @@ -1044,9 +2089,18 @@ { "label": "Scripps Institution of Oceanography, University of California, San Diego (UCSD)", "definition": "Scripps Institution of Oceanography (part of the University of California, San Diego) is one of the oldest, largest, and most important centers for marine science research, graduate training, and public service in the world. Research at Scripps Institution of Oceanography encompasses physical, chemical, biological, geological, and geophysical studies of the oceans.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/604" + "about": "http://vocab.aodn.org.au/def/organisation/entity/604", + "display_label": "Scripps Institution of Oceanography", + "alt_labels": [ + "Scripps Institution of Oceanography" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UCSD" + ], + "is_latest_label": true }, { "label": "University of Miami", @@ -1056,9 +2110,16 @@ { "label": "Cooperative Institute for Marine and Atmospheric Studies (CIMAS), University of Miami", "definition": "The Cooperative Institute for Marine and Atmospheric Studies (CIMAS) is a research institute of the University of Miami located in the Rosenstiel School of Marine and Atmospheric Science (RSMAS). CIMAS serves as a mechanism to bring together the research resources of the Partner Universities (including UM/RSMAS) with those of NOAA in order to develop a Center of Excellence that is relevant to understanding the Earth’s oceans and atmosphere within the context of NOAA’s mission. In 2010 CIMAS was restructured in light of its successful submission to a competitive award program to keep pace with changes in scientific and societal priorities as well as changes in both the NOAA and university regional context.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/426" + "about": "http://vocab.aodn.org.au/def/organisation/entity/426", + "display_label": "Cooperative Institute for Marine and Atmospheric Studies (CIMAS)", + "hidden_labels": [ + "CIMAS", + "Cooperative Institute for Marine and Atmospheric Studies (CIMAS)" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Wisconsin-Madison (UW-Madison)", @@ -1068,9 +2129,19 @@ { "label": "Cooperative Institute for Meteorological Satellite Studies (CIMSS), University of Wisconsin-Madison", "definition": "CIMSS is a Cooperative Institute formed through a Memorandum of Understanding between the University of Wisconsin-Madison (UW-Madison), the National Oceanic and Atmospheric Administration (NOAA), and the National Aeronautics and Space Administration (NASA) in 1980. Directed by Dr. Steve Ackerman, CIMSS operates as an institute within the Space Science and Engineering Center (SSEC). CIMSS scientists conduct research using remote sensing systems for meteorological and surface-based applications.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/427" + "about": "http://vocab.aodn.org.au/def/organisation/entity/427", + "display_label": "Cooperative Institute for Meteorological Satellite Studies (CIMSS)", + "hidden_labels": [ + "CIMSSS", + "Cooperative Institute for Meteorological Satellite Studies (CIMSS)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UW-Madison" + ], + "is_latest_label": true }, { "label": "Columbia University", @@ -1080,14 +2151,25 @@ { "label": "Department of Ecology, Evolution and Environmental Biology (E3B), Columbia University", "definition": "The Department of Ecology, Evolution, and Environmental Biology (E3B) at Columbia University was established in 2001. In creating E3B, the university recognized that the fields of ecology, evolutionary biology, and environmental biology constitute a distinct subdivision of the biological sciences with its own set of intellectual foci, theoretical foundations, scales of analysis, and methodologies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/433" + "about": "http://vocab.aodn.org.au/def/organisation/entity/433", + "display_label": "Department of Ecology, Evolution and Environmental Biology (E3B)", + "hidden_labels": [ + "Department of Ecology, Evolution and Environmental Biology (E3B)", + "E3B" + ], + "is_latest_label": true }, { "label": "International Research Institute for Climate and Society (IRI)", "definition": "The mission of the IRI is to enhance society’s capability to understand, anticipate and manage the impacts of climate in order to improve human welfare and the environment, especially in developing countries. The IRI conducts this mission through strategic and applied research, education, capacity building, and by providing forecasts and information products with an emphasis on practical and verifiable utility and partnership.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/434" + "about": "http://vocab.aodn.org.au/def/organisation/entity/434", + "hidden_labels": [ + "IRI" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Washington (UW)", @@ -1097,14 +2179,30 @@ { "label": "School of Aquatic and Fishery Sciences (SAFS), University of Washington (UW)", "definition": "Founded in 1919, the School of Aquatic and Fishery Sciences (SAFS) is dedicated to sustaining healthy marine and freshwater environments. Our faculty conduct innovative research from the organism to the ecosystem scale and are recognized leaders in aquatic biology, sustainable fisheries management, aquatic resource conservation, and resource management. We study natural systems and species and present solutions to foster the sustainable use of aquatic resources.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/428" + "about": "http://vocab.aodn.org.au/def/organisation/entity/428", + "display_label": "School of Aquatic and Fishery Sciences (SAFS)", + "hidden_labels": [ + "SAFS", + "School of Aquatic and Fishery Sciences (SAFS)" + ], + "is_latest_label": true }, { "label": "School of Environmental and Forest Sciences (SEFS), University of Washington (UW)", "definition": "The School of Environmental and Forest Sciences is dedicated to generating and disseminating knowledge for the stewardship of natural and managed environments and the sustainable use of their products and services through teaching, research and outreach.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/429" + "about": "http://vocab.aodn.org.au/def/organisation/entity/429", + "display_label": "School of Environmental and Forest Sciences (SEFS)", + "hidden_labels": [ + "SEFS", + "School of Environmental and Forest Sciences (SEFS)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UW" + ], + "is_latest_label": true }, { "label": "The College of William and Mary", @@ -1114,9 +2212,14 @@ { "label": "WM School of Marine Science at Virginia Institute of Marine Science (VIMS)", "definition": "The School of Marine Science (SMS) at VIMS is the graduate school in marine science for the College of William and Mary. Chartered in 1940, VIMS is currently among the largest marine research and education centers in the United States.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/430" + "about": "http://vocab.aodn.org.au/def/organisation/entity/430", + "hidden_labels": [ + "School of Marine Science" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Ottawa", @@ -1126,9 +2229,15 @@ { "label": "School of Management, University of Ottawa", "definition": "This school is now known as the Tefler School of Management.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/363" + "about": "http://vocab.aodn.org.au/def/organisation/entity/363", + "display_label": "School of Management", + "hidden_labels": [ + "School of Management" + ], + "is_latest_label": false } - ] + ], + "is_latest_label": true }, { "label": "University of California, Los Angeles (UCLA)", @@ -1138,9 +2247,19 @@ { "label": "Department of Ecology and Evolutionary Biology (EEB), University of California, Los Angeles (UCLA)", "definition": "Welcome to the Department of Ecology and Evolutionary Biology at UCLA, home of the Biology Major. Our mission is to provide new knowledge of the ecological and evolutionary processes that produce and sustain life on Earth and to educate the next generation of scholars, professionals, and citizens for the biological, environmental and biotechnological challenges of the future.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/435" + "about": "http://vocab.aodn.org.au/def/organisation/entity/435", + "display_label": "Department of Ecology and Evolutionary Biology (EEB)", + "hidden_labels": [ + "Department of Ecology and Evolutionary Biology (EEB)", + "EEB" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UCLA" + ], + "is_latest_label": true }, { "label": "San Francisco State University (SFSU)", @@ -1150,9 +2269,19 @@ { "label": "Romberg Tiburon Center for Environmental Studies (RTC), San Francisco State University (SFSU)", "definition": "The Center's location is an ideal setting for our scientists and students to conduct their research -- much of which focuses on understanding the natural forces at work in the San Francisco Bay and its surrounding wetland environments. RTC research scientists are also studying natural phenomena in the open ocean; along California's coastline and in remote locations such as the Ross Sea (Antarctica) and the Equatorial Pacific.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/439" + "about": "http://vocab.aodn.org.au/def/organisation/entity/439", + "display_label": "Romberg Tiburon Center for Environmental Studies (RTC)", + "hidden_labels": [ + "RTC", + "Romberg Tiburon Center for Environmental Studies (RTC)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "SFSU" + ], + "is_latest_label": true }, { "label": "University of Illinois at Chicago (UIC)", @@ -1162,9 +2291,18 @@ { "label": "Department of Biological Sciences, University of Illinois at Chicago (UIC)", "definition": "We offer undergraduate and graduate training opportunities in all major areas of biology, including molecular, cellular, and developmental biology, neuroscience, ecology, and evolution. We are currently composed of 32 tenure-track faculty, 6 non-tenure track faculty, 23 staff, 110 graduate students, and together we teach and mentor 2,000 biology majors, and 70 neuroscience majors.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/441" + "about": "http://vocab.aodn.org.au/def/organisation/entity/441", + "display_label": "Department of Biological Sciences", + "hidden_labels": [ + "Department of Biological Sciences" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UIC" + ], + "is_latest_label": true }, { "label": "Nova Southeastern University (NSU)", @@ -1174,9 +2312,18 @@ { "label": "Halmos College of Natural Sciences and Oceanography, Nova Southeastern University (NSU)", "definition": "Nova Southeastern University’s scientists are engaged in exciting interdisciplinary research projects to make discoveries and produce new knowledge in healthcare, biotechnology, life sciences, environment and social sciences. NSU faculty are using more than $76 million in externally provided funding to work on projects that advance the university’s mission of research, academic excellence and public service. They are working on more than 205 basic, applied and clinical research projects to improve patient care, make new drug discoveries, reduce mental health disorders, and examine the forces that impact our oceans. In the fall of 2012 NSU opened the Center for Excellence for Coral Reef Ecosystems Science Research Facility at its Oceanographic Center. Funded by the National Institute of Standards and Technology, America’s largest coral reef research center will be solely dedicated to coral reef ecosystem research.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/442" + "about": "http://vocab.aodn.org.au/def/organisation/entity/442", + "display_label": "Halmos College of Natural Sciences and Oceanography", + "hidden_labels": [ + "Halmos College of Natural Sciences and Oceanography" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "NSU" + ], + "is_latest_label": true }, { "label": "University of Groningen", @@ -1186,14 +2333,26 @@ { "label": "Faculty of Mathematics and Natural Sciences, University of Groningen", "definition": "The Faculty of Mathematics and Natural Sciences harbours a kaleidoscope of disciplines and research strengths. Our programmes in research and education range from nanomaterials and biomachinery to astronomy, from mathematics to pharmacy, from neurosciences to computer science, and from molecular and evolutionary biology to marine biology. Our researchers pursue fundamental key questions while collaborating with partners from industry, the medical world and other realms of society. Frontline research groups explore new fields such as synthetic biologyand sustainable energy use.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/357" + "about": "http://vocab.aodn.org.au/def/organisation/entity/357", + "display_label": "Faculty of Mathematics and Natural Sciences", + "hidden_labels": [ + "Faculty of Mathematics and Natural Sciences", + "Rijksuniversiteit Groningen, Faculteit Wiskunde en Natuurwetenschappen" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "RUG", + "Rijks Universiteit Groningen" + ], + "is_latest_label": true }, { "label": "University of Bordeaux I", "definition": "Sciences and Technologies at the service of Mankind and Environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/334" + "about": "http://vocab.aodn.org.au/def/organisation/entity/334", + "is_latest_label": true }, { "label": "University of Colorado Boulder", @@ -1203,9 +2362,16 @@ { "label": "Institute of Arctic and Alpine Research (INSTAAR), University of Colorado Boulder", "definition": "The Institute of Arctic and Alpine Research (INSTAAR) strives for excellence in research, education, and outreach related to Earth System Science and Global Change in high-latitude, alpine, and other environments. INSTAAR is located at the University of Colorado within the Graduate School and affiliated with departments of Anthropology, CEA Engineering, Environmental Studies, Ecology and Evolutionary Biology, Geography, Geological Sciences, and Atmospheric and Oceanic Sciences (ATOC). INSTAAR also participates in interdepartmental graduate education programs such as Hydrologic Sciences and Oceanography Certificate.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/336" + "about": "http://vocab.aodn.org.au/def/organisation/entity/336", + "display_label": "Institute of Arctic and Alpine Research (INSTAAR)", + "hidden_labels": [ + "INSTAAR", + "Institute of Arctic and Alpine Research (INSTAAR)" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Stanford University", @@ -1215,9 +2381,15 @@ { "label": "Hopkins Marine Station, Stanford University", "definition": "Marine research and teaching laboratory attached to Stanford University and located in Pacific Grove, California.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/338" + "about": "http://vocab.aodn.org.au/def/organisation/entity/338", + "display_label": "Hopkins Marine Station", + "hidden_labels": [ + "Hopkins Marine Station" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Portsmouth", @@ -1227,19 +2399,31 @@ { "label": "Centre for the Economics and Management of Aquatic Resources (CEMARE), University of Portsmouth", "definition": "The Centre for the Economics and Management of Aquatic Resources (CEMARE) is a specialised research centre within the Department of Economics at the University of Portsmouth. It was established in the early 1960s to promote multi-disciplinary research into marine resources, with an emphasis on the economic analysis of fisheries. Since then it has developed into an international centre for the multi-disciplinary research of aquatic resources and is actively involved in research, consultancy, training and advanced studies, particularly in fisheries economics. The areas of expertise have expanded to include aquaculture economics and management, recreational fisheries, freshwater fisheries and coastal zone management. In addition, the Centre provides economic, institutional and legal specialisations within the broad area of the management of aquatic resources. The results of research and consultancies are published in core scientific journals and Centre staff also produce a wide range of in-house publications, copies of which are available on request. CEMARE staff and students enjoy full access to the wide range of library, technical and computing services offered by the University, and the Centre keeps an extensive collection of books, reports and journals, maintained by experienced library and technical staff. CEMARE's collection includes material on fisheries economics, as well as material on related subjects. We also have access to various specialist databases such as ASFA (Aquatic Sciences and Fisheries Abstracts). The Centre has active collaborative links at national, regional and international level with a wide range of government, inter-governmental and non-governmental organisations, as well as with other universities and research organisations. Individual members of CEMARE are affiliated to and active participants of the European Association of Fisheries Economists (EAFE), the International Institute of Fisheries Economics and Trade (IIFET), the Institute of Fisheries Management (IFM), Eurocoast UK, the Royal Institution of Chartered Surveyors (RICS) and the International Association for the Study of Common Property (IASCP). CEMARE staff have substantial experience of research, consultancy and postgraduate training in many aspects of commercial and recreational fisheries, and have primary responsibility for running the Postgraduate Programme in Fisheries Economics and Management.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/340" + "about": "http://vocab.aodn.org.au/def/organisation/entity/340", + "display_label": "Centre for the Economics and Management of Aquatic Resources (CEMARE)", + "hidden_labels": [ + "CEMARE", + "Centre for the Economics and Management of Aquatic Resources (CEMARE)" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "FishBase", "definition": "FishBase is a relational database with information to cater to different professionals such as research scientists, fisheries managers, zoologists and many more. FishBase was developed at the WorldFish Center in collaboration with the Food and Agriculture Organization of the United Nations ( FAO) and many other partners, and with support from the European Commission ( EC). Since 2001 FishBase is supported by a consortium of nine research institutions.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/348" + "about": "http://vocab.aodn.org.au/def/organisation/entity/348", + "is_latest_label": true }, { "label": "International Council for Science (ICSU)", "definition": "The International Council for Science (ICSU) is a non-governmental organisation with a global membership of national scientific bodies (122 Members, representing 142 countries) and International Scientific Unions (31 Members). ICSU’s mission is to strengthen international science for the benefit of society. The main ICSU Secretariat (20 staff in 2012) is based in Paris and ensures the day-to-day planning and operations under the guidance of an elected Executive Board. A small number of Policy Committees assist the Executive Board in its work and a General Assembly of all Members is convened every three years. ICSU has three Regional Offices – Africa, Asia and the Pacific and Latin America and the Caribbean.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/349" + "about": "http://vocab.aodn.org.au/def/organisation/entity/349", + "hidden_labels": [ + "ICSU" + ], + "is_latest_label": true }, { "label": "Ocean Biogeographic Information System (OBIS)", @@ -1249,9 +2433,17 @@ { "label": "Ocean Biogeographic Information System USA (OBIS-USA)", "definition": "OBIS-USA brings together marine biological occurrence data – recorded observations of identifiable marine species at a known time and place, collected primarily from U.S. Waters or with U.S. funding. Coordinated by the Core Science, Analytics, Synthesis, and Libraries (CSASandL) Program of the United States Geological Survey (USGS), OBIS-USA, strives to meet national needs for access to marine data about the organisms and ecosystems. OBIS-USA is part of an international data sharing network (Ocean Biogeographic Information System, OBIS) coordinated by the Intergovernmental Oceanographic Commission, of UNESCO (United Nations Educational, Science and Cultural Organization International Oceanographic Data and Information Exchange. Federal coordination is done in collaboration with the participants of the ad hoc Biodiversity working group organized under the Interagency Working Group on Ocean Partnerships Subcommittee on Ocean Science and Technology. The data contained in OBIS-USA may be used in two different ways. First, using the data dashboard, users can visually examine the full collection of data down to the record level. Second, the Biogeographic Analysis Tool provides an analysis or summary of the biodiversity for defined geographic regions.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/419" + "about": "http://vocab.aodn.org.au/def/organisation/entity/419", + "hidden_labels": [ + "OBIS-USA" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "OBIS" + ], + "is_latest_label": true }, { "label": "Scientific Committee on Antarctic Research (SCAR)", @@ -1261,24 +2453,38 @@ { "label": "SCAR Marine Biodiversity Information Network (SCAR-MarBIN)", "definition": "SCAR-MarBIN (SCAR Marine Biodiversity Information Network) establishes and supports a distributed system of interoperable databases, forming the Antarctic Regional OBIS Node, under the aegis of SCAR (Scientific Committee on Antarctic Research). SCAR-MarBIN compiles and manages existing and new information on Antarctic marine biodiversity by coordinating, supporting, completing and optimizing database networking. This information will in turn be sent to larger biodiversity initiatives such as OBIS - the information component of the Census of Marine Life (COML)- and GBIF (Global Biodiversity Information Facility). SCAR-MarBIN data policy protocols align with the Antarctic Treaty (Art. III.1) and IPY requirements, as well as data management protocols of GBIF and OBIS. SCAR-MarBIN integrates these efforts, giving a single and easy access to relevant marine biodiversity information and maximizing the exploitation of these resources. SCAR-MarBIN will leave a valuable legacy for future generations, in the form of an information tool that will provide a baseline reference for establishing a State of Antarctic Environment, and predicting the future for marine communities around Antarctica, which are currently facing global change.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/399" + "about": "http://vocab.aodn.org.au/def/organisation/entity/399", + "hidden_labels": [ + "SCAR-MarBIN" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "SCAR" + ], + "is_latest_label": true }, { "label": "United Nations Economic and Social Commission for Asia and the Pacific (ESCAP)", "definition": "The United Nations Economic and Social Commission for Asia and the Pacific (ESCAP) is the regional development arm of the United Nations for the Asia-Pacific region. Made up of 53 Member States and 9 Associate Members, with a geographical scope that stretches from Turkey in the west to the Pacific island nation of Kiribati in the east, and from the Russian Federation in the north to New Zealand in the south, the region is home to 4.1 billion people, or two thirds of the world’s population. This makes ESCAP the most comprehensive of the United Nations five regional commissions, and the largest United Nations body serving the Asia-Pacific region with over 600 staff. Established in 1947 with its headquarters in Bangkok, Thailand, ESCAP works to overcome some of the region’s greatest challenges by providing results oriented projects, technical assistance and capacity building to member States.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/352" + "about": "http://vocab.aodn.org.au/def/organisation/entity/352", + "hidden_labels": [ + "ESCAP" + ], + "is_latest_label": true }, { "label": "World Ocean Observatory", "definition": "World Ocean Observatory is the leading organization advocating for the health and sustainability of the ocean through an accessible worldwide network of communication. Through education, partnership, information exchange, public connection, and relentless communications, W2O is committed to building an expansive global community of Citizens of the Ocean to promote and conserve marine resources for the future of all mankind. It's headquarters are in Maine, USA.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/353" + "about": "http://vocab.aodn.org.au/def/organisation/entity/353", + "is_latest_label": true }, { "label": "WorldFish Center", "definition": "Their mission is to reduce poverty and hunger by improving fisheries and aquaculture. They strive to achieve large scale, environmentally sustainable, increases in supply and access to fish at affordable prices for poor consumers in developing countries. With more than 400 staff, there are seven offices across Asia, Africa and the Pacific, with their headquarters in Malaysia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/354" + "about": "http://vocab.aodn.org.au/def/organisation/entity/354", + "is_latest_label": true }, { "label": "University of Zurich", @@ -1288,9 +2494,16 @@ { "label": "Anthropological Institute and Museum (AIM), University of Zurich", "definition": "Work at the Anthropological Institute and Museum (AIM) is aimed at understanding the evolutionary origins of human morphology and behavior. For both research areas we follow a dual approach. The first is to identify the unique features of humans and reconstruct their evolutionary history. The second is to develop explanations for these novel features based on broad biological principles that emerge from studies of living and fossil primates and other animals.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/356" + "about": "http://vocab.aodn.org.au/def/organisation/entity/356", + "display_label": "Anthropological Institute and Museum (AIM)", + "hidden_labels": [ + "AIM", + "Anthropological Institute and Museum (AIM)" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Waikato", @@ -1305,11 +2518,29 @@ { "label": "Centre for Biodiversity and Ecology Research (CBER), Department of Biological Sciences, University of Waikato", "definition": "The centre's mssion statement is as follows: to promote sustainable management and habitat restoration through integrated research into biodiversity and ecology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/359" + "about": "http://vocab.aodn.org.au/def/organisation/entity/359", + "display_label": "Centre for Biodiversity and Ecology Research (CBER)", + "hidden_labels": [ + "CBER", + "Centre for Biodiversity and Ecology Research (CBER)" + ], + "alt_labels": [ + "Centre for Biodiversity and Ecology Research (CBER), University of Waikato" + ], + "is_latest_label": true } - ] + ], + "display_label": "School of Science", + "hidden_labels": [ + "School of Science" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "Te Whare Wananga o Waikato" + ], + "is_latest_label": true }, { "label": "The University of the South Pacific (USP)", @@ -1319,14 +2550,25 @@ { "label": "Institute of Applied Science (IAS), The University of the South Pacific (USP)", "definition": "The Institute of Applied Sciences (IAS) at The University of the South Pacific (USP), interfaces the University's expertise and facilities to the independent island countries of the South Pacific Region. In particular, as a laboratory based institute, it makes these resources available to regional organisations, governments, business, and the people of the region. The Institute of Applied Sciences was established in 1977 (under the name of Institute of Natural Resources) at the Suva campus of The University of the South Pacific with a full time staff of one using the facilities and space provided by the science teaching departments at the University. IAS has now grown to have 18 full time staff and its own laboratories and scientific equipment located in the Marine Science Building at the \"lower\" Laucala Bay Campus by the sea. The various units at IAS are the Analytical Unit, Environment Unit, Food Unit, Marine Natural Products Unit and the South Pacific Herbarium.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/361" + "about": "http://vocab.aodn.org.au/def/organisation/entity/361", + "display_label": "Institute of Applied Science (IAS)", + "hidden_labels": [ + "IAS", + "Institute of Applied Science (IAS)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "USP" + ], + "is_latest_label": true }, { "label": "Norwegian School of Economics and Business Administration", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/366" + "about": "http://vocab.aodn.org.au/def/organisation/entity/366", + "is_latest_label": false }, { "label": "University of Wales Swansea", @@ -1336,69 +2578,114 @@ { "label": "School of Biological Sciences, University of Wales Swansea", "definition": "This school is now known as Department of Biosciences, Swansea University.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/368" + "about": "http://vocab.aodn.org.au/def/organisation/entity/368", + "display_label": "School of Biological Sciences", + "hidden_labels": [ + "School of Biological Sciences" + ], + "is_latest_label": false } - ] + ], + "is_latest_label": false }, { "label": "Universiti Pertanian Malaysia", "definition": "This university is now known as Universiti Putra Malaysia", - "about": "http://vocab.aodn.org.au/def/organisation/entity/369" + "about": "http://vocab.aodn.org.au/def/organisation/entity/369", + "is_latest_label": false }, { "label": "Federal Maritime and Hydrographic Agency (BSH)", "definition": "BSH is the maritime partner to industry, science, and environmental organisations. Over 900 dedicated employees, a budget of some 60 million Euro, and unique competence form a solid basis for our wide range of services: * Services to maritime shipping, including tonnage measurement, law of the flag, International Shipping Register * Promotion of the German commercial fleet * Issue and registration of mariners' certificates * Type-testing and approval of radiocommunications and navigation equipment * Surveys in the North and Baltic Seas performed by BSH vessels * Publication of nautical charts and small-craft charts * Approval of offshore activities, e.g. wind farms, pipelines, submarine cables * Prediction of tides, water levels, and storm surges * Monitoring of the marine environment * Prosecution of environmental offences * Improvement of knowledge of the oceans. With its historical roots in the \"Norddeutsche Seewarte\" (North German Maritime Observatory) which issued detailed sailing directions based on nautical and meteorological observations as early as 1868, the BSH has long ceased to be only a provider of the traditional services to shipping but has focused on additional maritime target groups and applications - e.g. the offshore wind industry and marine environmental protection.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/372" + "about": "http://vocab.aodn.org.au/def/organisation/entity/372", + "hidden_labels": [ + "BSH" + ], + "is_latest_label": true }, { "label": "China Second Institute of Oceanography (CSIO)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/373" + "about": "http://vocab.aodn.org.au/def/organisation/entity/373", + "hidden_labels": [ + "CSIO" + ], + "is_latest_label": true }, { "label": "Carbon Dioxide Information Analysis Center (CDIAC)", "definition": "International data centre for carbonate system parameters such as pH, DIC and pCO2. Located in the Environmental Sciences Division of the Oak Ridge National Laboratory,", - "about": "http://vocab.aodn.org.au/def/organisation/entity/374" + "about": "http://vocab.aodn.org.au/def/organisation/entity/374", + "hidden_labels": [ + "CDIAC" + ], + "is_latest_label": true }, { "label": "IFREMER", "definition": "The Head Office of IFREMER is located in a suburb close to Paris.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/375" + "about": "http://vocab.aodn.org.au/def/organisation/entity/375", + "is_latest_label": true }, { "label": "Indian National Centre For Ocean Information Services (INCOIS)", "definition": "To provide ocean information and advisory services to the society, industry, government and scientific community through sustained ocean observations and constant improvements through systematic and focused research.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/377" + "about": "http://vocab.aodn.org.au/def/organisation/entity/377", + "hidden_labels": [ + "INCOIS" + ], + "is_latest_label": true }, { "label": "Japan Agency for Marine-Earth Science and Technology (JAMSTEC)", "definition": "On April 1, 2004, Japan Agency for Marine-Earth Science and Technology (JAMSTEC) was inaugurated as one of the independent administrative institutions upon re-organized from its former organization, Japan Marine Science and Technology Center. JAMSTEC has the main objective to contribute to the advancement of academic research in addition to the improvement of marine science and technology by proceeding the fundamental research and development on marine, and the cooperative activities on the academic research related to the Ocean for the benefit of the peace and human welfare.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/378" + "about": "http://vocab.aodn.org.au/def/organisation/entity/378", + "hidden_labels": [ + "JAMSTEC" + ], + "is_latest_label": true }, { "label": "Japan Meteorological Agency (JMA)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/379" + "about": "http://vocab.aodn.org.au/def/organisation/entity/379", + "hidden_labels": [ + "JMA" + ], + "is_latest_label": true }, { "label": "Korea Meteorological Administration (KMA)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/380" + "about": "http://vocab.aodn.org.au/def/organisation/entity/380", + "hidden_labels": [ + "KMA" + ], + "is_latest_label": true }, { "label": "Korea Institute Of Ocean Science and Technology (KIOST)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/381" + "about": "http://vocab.aodn.org.au/def/organisation/entity/381", + "hidden_labels": [ + "KIOST" + ], + "is_latest_label": true }, { "label": "GEOMAR Helmholtz Centre for Ocean Research Kiel", "definition": "GEOMAR | Helmholtz Centre for Ocean Research is the successor of the Leibniz Institute of Marine Sciences (IFM-GEOMAR) which was founded in January 2004 through the merger of the Institut für Meereskunde (IfM) and the Research Center for Marine Geosciences (GEOMAR). The institute is a member of the Helmholtz Association and employs more than 750 scientific and technical staff. The institutes’ mandate is the interdisciplinary investigation of all relevant aspects of modern marine sciences, from sea floor geology to marine meteorology. Research is conducted worldwide in all oceans. The institute has four major research divisions: Ocean Circulation and Climate Dynamics, Marine Biogeochemistry, Marine Ecology, and Dynamics of the Ocean Floor.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/382" + "about": "http://vocab.aodn.org.au/def/organisation/entity/382", + "is_latest_label": true }, { "label": "National Institute of Water and Atmospheric Research (NIWA)", "definition": "NIWA conducts commercial and non-commercial research across a broad range of disciplines in the environmental sciences. It also maintains nationally and, in some cases, internationally important environmental monitoring networks, databases, and collections.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/383" + "about": "http://vocab.aodn.org.au/def/organisation/entity/383", + "hidden_labels": [ + "NIWA" + ], + "is_latest_label": true }, { "label": "National Oceanic and Atmospheric Administration (NOAA)", @@ -1408,139 +2695,239 @@ { "label": "Atlantic Oceanographic and Meteorological Laboratory (AOML), National Oceanic and Atmospheric Administration (NOAA)", "definition": "NOAA laboratory located in Miami, Florida largely concerned with ocean-driven meteorology, especially hurricanes.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/370" + "about": "http://vocab.aodn.org.au/def/organisation/entity/370", + "display_label": "Atlantic Oceanographic and Meteorological Laboratory (AOML)", + "hidden_labels": [ + "AOML" + ], + "alt_labels": [ + "Atlantic Oceanographic and Meteorological Laboratory (AOML)" + ], + "is_latest_label": true }, { "label": "NOAA National Marine Fisheries Service", "definition": "NOAA's National Marine Fisheries Service is the federal agency, a division of the Department of Commerce, responsible for the stewardship of the nation's living marine resources and their habitat. NOAA's National Marine Fisheries Service is responsible for the management, conservation and protection of living marine resources within the United States' Exclusive Economic Zone (water three to 200 mile offshore). Using the tools provided by the Magnuson-Stevens Act, NOAA's National Marine Fisheries Service assesses and predicts the status of fish stocks, ensures compliance with fisheries regulations and works to reduce wasteful fishing practices. Under the Marine Mammal Protection Act and the Endangered Species Act, NOAA's National Marine Fisheries Service recovers protected marine species (i.e. whales, turtles) without unnecessarily impeding economic and recreational opportunities. With the help of the six regional offices and eight councils, NOAA's National Marine Fisheries Service is able to work with communities on fishery management issues. NOAA's National Marine Fisheries Service works to promote sustainable fisheries and to prevent lost economic potential associated with overfishing, declining species and degraded habitats. NOAA's National Marine Fisheries Service strives to balance competing public needs.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/392" + "about": "http://vocab.aodn.org.au/def/organisation/entity/392", + "is_latest_label": true }, { "label": "National Weather Service (NWS), National Oceanic and Atmospheric Administration (NOAA)", "definition": "NWS Headquarters is responsible for managing the functions of the entire NWS. Headquarters coordinates programs directly related to weather warnings and forecasting to ensure the compatibility and effectiveness of weather services and ensures climate, water, and weather warnings, forecasts, and data products are provided to government, industry, and the general public. The NWS Headquarters also ensures funding is available to support field needs, manages information technology resources, and ensures a coordinated NOAA program of weather-related activities across NOAA line offices.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/494" + "about": "http://vocab.aodn.org.au/def/organisation/entity/494", + "display_label": "National Weather Service (NWS)", + "hidden_labels": [ + "NWS", + "National Weather Service (NWS)" + ], + "is_latest_label": true }, { "label": "Earth System Research Laboratory (ESRL), National Oceanic and Atmospheric Administration (NOAA)", "definition": "ESRL was formed to pursue a broad and comprehensive understanding of the Earth system. This system comprises many physical, chemical and biological processes that need to be dynamically integrated to better predict their behavior over scales from local to global and periods of minutes to millennia. At ESRL we are working toward a greater stewardship of the Earth through a number of themes aimed at understanding the Earth system processes and changes.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/495" + "about": "http://vocab.aodn.org.au/def/organisation/entity/495", + "display_label": "Earth System Research Laboratory (ESRL)", + "hidden_labels": [ + "ESRL", + "Earth System Research Laboratory (ESRL)" + ], + "is_latest_label": true }, { "label": "Pacific Marine Environmental Laboratory (PMEL), National Oceanic and Atmospheric Administration (NOAA)", "definition": "The Pacific Marine Environmental Laboratory (PMEL) carries out interdisciplinary scientific investigations in oceanography and atmospheric science. Current PMEL programs focus on open ocean observations in support of long-term monitoring and prediction of the ocean environment on time scales from hours to decades. Studies are conducted to improve our understanding of the world’s oceans, to define processes driving the global climate system, and to improve environmental forecasting capabilities for public safety, marine commerce, and fisheries. Results from PMEL research activities contribute to NOAA’s mission goals: 1. Protect, restore, and manage the use of coastal and ocean resources through ecosystem-based management, 2. Understand climate variability and change to enhance society’s ability to plan and respond, 3. Serve society’s needs for weather and water information, and 4. Support the Nation’s commerce with information for safe, efficient, and environmentally sound transportation. PMEL has the capability to collect oceanographic data from any depth at any location in the world’s oceans and distribute these data in real-time over the internet.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/650" + "about": "http://vocab.aodn.org.au/def/organisation/entity/650", + "display_label": "Pacific Marine Environmental Laboratory (PMEL)", + "hidden_labels": [ + "PMEL", + "Pacific Marine Environmental Laboratory (PMEL)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "NOAA" + ], + "is_latest_label": true }, { "label": "Naval Oceanographic Office (NAVO)", "definition": "The Naval Oceanographic Office (NAVO) maximizes seapower by applying relevant oceanographic knowledge in support of U.S. National Security.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/386" + "about": "http://vocab.aodn.org.au/def/organisation/entity/386", + "hidden_labels": [ + "NAVO" + ], + "is_latest_label": true }, { "label": "National Oceanography Centre, Southampton (NOC)", "definition": "The National Oceanography Centre, part of the Natural Environment Research Council (NERC) is one of the few world-class centres of excellence in ocean sciences, earth sciences and ocean technology. This unique combination of interdisciplinary research and teaching resources comprises the University of Southampton's School of Ocean and Earth Science together with 4 specialist NERC research divisions. The scientific mission of the National Oceanography Centre is: To deliver scientific excellence and understanding of the earth and its oceans as a dynamic interdisciplinary system; To provide the highest quality teaching and training in ocean and earth science within an active research environment; To provide large scale national facilities for ocean and earth science.\nThis mission is achieved through integration between staff and facilities of the Natural Environment Research Council and the University of Southampton. Success in this mission will deliver our goal, to establish NOC as a major national and international centre of excellence for research, teaching and training in marine and earth science and in marine technology. Research work is conducted through a variety of organisations. Data are retained in a variety of forms and individual members of staff of the Department should be contacted for particular data. Details of the Department are available from the Departmental Secretary. Degrees of B.Sc., M.Sc. and Ph.D. are awarded in Oceanography.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/387" + "about": "http://vocab.aodn.org.au/def/organisation/entity/387", + "hidden_labels": [ + "NOC" + ], + "is_latest_label": true }, { "label": "PANGAEA - Data Publisher for Earth and Environmental Science", "definition": "The Centre for Marine Environmental Sciences (MARUM) at University Bremen (UniHB), in collaboration with the Alfred Wegener Institute for Polar and Marine Research (AWI), operates PANGAEA®, the Publishing Network for Geoscientific and Environmental Data (www.PANGAEA.de) as a permanent facility, partnering in over 50 research projects at national (Germany), European and international levels. PANGAEA® aims at collecting, scrutinising, and disseminating geo-referenced data about natural and anthropogenic components and functions in ecosystems at scales ranging from individual organisms, mesoscale features (e.g. upwelling, eddies, seamounts, coral reefs), and oceanic basin to global planetary scales. Core services supplied by PANGAEA® are scientific data management, long-term data archiving, data publication, and data dissemination via visualisation and analysis software and via interoperability with other European and international data dissemination systems. Data management includes quality control of metadata and the development of ontologies and vocabularies according to international protocols and standards. PANGAEA® has further defined work flows and technologies to allow automatic ingestion of data from marine observatories based on OGC standards ( (SWE - Sensor Web Enablement). Metadata are extensive and each dataset is citable and accessible by Digital Object Identifier (DOI). Datasets published by PANGAEA® are extremely diverse and include for example water column profiles, sediment core profiles, biogeographic distributions, meteorological and oceanographic time series, vital rate measurements on individual organisms or communities, sea bed photographs, audio and video records, and ROV surveys. PANGAEA® integrates biological data on plankton (including viruses, bacteria, autotrophic and heterotophic protists, crustaceans and jellyfish), fish, corals, micro-, meio- and macrobenthos, marine mammals and birds. In addition to contemporary observations we offer an extensive paleobiogeographic record from marine sediment cores. Biological data include key biodiversity parameters such as taxon-specific abundance and biomass, and also an extensive range of parameters describing the life history and vital rates of marine life. PANGAEA® is accredited as a World Data Centre by the International Council for Sciences (ICSU) World Data System (WDS) and accredited as World Radiation Monitoring Centre (WRMC) by the World Meteorological Organisation (WMO) as part of their WMO Information System. At present PANGAEA® holds metadata and data for more than 300.000 datasets comprising more than 6 billion data items for more than 80.000 different measurement types (parameters), more than 17.000 principal investigators (authors), and around 20.000 references to journal articles. The system is operated in the sense of the Berlin Declaration on Open Access to Knowledge in the Sciences and Humanities which is a follow up to the Budapest Open Access Initiative. Some ongoing projects are under moratorium so that access to data may be restricted, but metadata is always freely accessible.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/388" + "about": "http://vocab.aodn.org.au/def/organisation/entity/388", + "is_latest_label": true }, { "label": "NIOZ Royal Netherlands Institute for Sea Research", "definition": "NIOZ Royal Netherlands Institute for Sea Research is the National Oceanographic Institute of the Netherlands. NIOZ is part of the Netherlands Organization for Scientific Research (NWO). The institute employs around 220 people and the annual budget is approximately €20 million. The mission of NIOZ is to gain and communicate scientific knowledge on seas and oceans for the understanding and sustainability of our planet. The institute also facilitates and supports marine research and education in the Netherlands and Europe. In order to fulfil its mission, the institute performs tasks in three specific fields: Research: The emphasis is on innovative and independent fundamental research in continental seas and open oceans. The institute also carries out research based on societal questions when this merges well with its fundamental work. The senior scientists at NIOZ all participate in international research projects. Education: The institute educates PhD and other students of universities and schools for professional education. Together universities NIOZ also organises courses for PhD students and master students in the marine sciences. A number of our senior scientists is also appointed as professor at Dutch and foreign universities. Facilitary services: NIOZ invites marine scientists from Dutch and foreign institutes and universities to write scientific proposals involving the institute’s research vessels, laboratories, and the large research equipment, which is often designed and built by the institute’s own technical department. The basic oceanographic disciplines at NIOZ are physics, chemistry, biology and geology. Multidisciplinary research is regarded as one of the main strengths of the institute. There are 5 scientific departments: Physical Oceanography, Marine Geology, Marine Organic Biogeochemistry, Biological Oceanography and Marine Ecology.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/389" + "about": "http://vocab.aodn.org.au/def/organisation/entity/389", + "is_latest_label": true }, { "label": "RPS Group", "definition": "RPS is an international consultancy providing advice upon: the exploration and production of energy and other natural resources, the development and management of the built and natural environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/390" + "about": "http://vocab.aodn.org.au/def/organisation/entity/390", + "is_latest_label": true }, { "label": "U.S. Geological Survey (USGS)", "definition": "Mission: The USGS serves the Nation by providing reliable scientific information to describe and understand the Earth; minimize loss of life and property from natural disasters; manage water, biological, energy, and mineral resources; and enhance and protect our quality of life. Vision: USGS has become a world leader in the natural sciences thanks to our scientific excellence and responsiveness to society's needs. As the Nation's largest water, earth, and biological science and civilian mapping agency, the U.S. Geological Survey (USGS) collects, monitors, analyzes, and provides scientific understanding about natural resource conditions, issues, and problems. The diversity of our scientific expertise enables us to carry out large-scale, multi-disciplinary investigations and provide impartial scientific information to resource managers, planners, and other customers.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/391" + "about": "http://vocab.aodn.org.au/def/organisation/entity/391", + "hidden_labels": [ + "USGS" + ], + "is_latest_label": true }, { "label": "Woods Hole Oceanographic Institution (WHOI)", "definition": "Woods Hole Oceanographic Institution is the world's largest private, non-profit oceanographic research institution and a global leader in the study and exploration of the ocean.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/393" + "about": "http://vocab.aodn.org.au/def/organisation/entity/393", + "hidden_labels": [ + "WHOI" + ], + "is_latest_label": true }, { "label": "Korea Ocean Research and Development Institute (KORDI)", "definition": "The Korean Ocean Research and Development Institute (KORDI) with its headquarters in Ansan, Gyeonggi-do, South Korea, has driven development of the marine sciences and technology of Korea for over 40 years since its establishment in 1973. It started functioning with a new name of Korean Institute of Ocean Science and Technology (KIOST) from July 1, 2012. (Courtesy of wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/394" + "about": "http://vocab.aodn.org.au/def/organisation/entity/394", + "hidden_labels": [ + "KORDI" + ], + "is_latest_label": false }, { "label": "Ministry of Fisheries, New Zealand Government", "definition": "The Ministry of Fisheries, was established in 1995, to ensure the sustainable utilisation of fisheries. In April 2012 it was merged into the newly formed Ministry for Primary Industries. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/395" + "about": "http://vocab.aodn.org.au/def/organisation/entity/395", + "hidden_labels": [ + "Ministry of Fisheries" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/402" }, { "label": "Pacific Fisheries Management Inc", "definition": "Pacific Fisheries Management Inc. provides consulting, executive management, policy and strategic planning services for individuals, companies, NGOs and government agencies involved in commercial fisheries. Focus on policy development, program analysis, and the negotiation, coordination and implementation of commercial fishery management programs.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/396" + "about": "http://vocab.aodn.org.au/def/organisation/entity/396", + "is_latest_label": true }, { "label": "ReefQuest Centre for Shark Research", "definition": "Founded in 2001, the ReefQuest Centre for Shark Research is dedicated to shark and ray conservation through its scientific research and public education programs. The Centre maintains research equipment and facilities, reference collections of fossil and extant elasmobranch specimens, a scientific library, elasmobranch data bases, and public education materials. The centre's founder, Aidan Martin died in 2007, so the website is maintained in his honour.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/397" + "about": "http://vocab.aodn.org.au/def/organisation/entity/397", + "is_latest_label": true }, { "label": "Antarctic Biodiversity Information Facility (ANTABIF)", "definition": "Funded by the Belgian Science Policy Office, biodiversity.aq is building an innovative Antarctic biodiversity information system, giving access to a distributed network of contributing database, according to the principles of the Global Biodiversity Information Facility. It is building a new data discovery tool using two complementary networks and will expand these by using an advanced technical architecture, capable of linking with many potential data resources. Biodiversity.aq is recognised as an official SCAR Product and integrates SCAR-MarBIN (Scientific Committee on Antarctic Research - Marine Biodiversity Information Network), with the biodiversity databases managed by the Australian Antarctic Division, bringing together data from marine and terrestrial realms. biodiversity.aq is the data management tool and repository for the biodiversity-related research conducted at the Princess Elisabeth Station. Biodiversity.aq will use the best available technology to integrate, share and disseminate all available information on Antarctic Biodiversity. Its implementation by the Belgian Biodiversity Platform ascertains that biodiversity.aq can take advantage of the relevant experience of the Belgian GBIF node. biodiversity.aq is steered by an International Steering Committee composed of selected experts in the field of Polar biodiversity.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/398" + "about": "http://vocab.aodn.org.au/def/organisation/entity/398", + "hidden_labels": [ + "ANTABIF" + ], + "is_latest_label": true }, { "label": "Ministry for Primary Industries (MPI), New Zealand Government", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/402" + "about": "http://vocab.aodn.org.au/def/organisation/entity/402", + "hidden_labels": [ + "MPI", + "Ministry for Primary Industries (MPI)" + ], + "is_latest_label": true }, { "label": "National Institute of Polar Research (NIPR)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/403" + "about": "http://vocab.aodn.org.au/def/organisation/entity/403", + "hidden_labels": [ + "NIPR" + ], + "is_latest_label": true }, { "label": "World Wide Fund For Nature (WWF)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/404" + "about": "http://vocab.aodn.org.au/def/organisation/entity/404", + "hidden_labels": [ + "WWF" + ], + "is_latest_label": true }, { "label": "Center for Aquatic Sciences at Adventure Aquarium", "definition": "The Center for Aquatic Sciences was founded in 1989 and has since been advancing the understanding of and concern for aquatic animals and their habitats. The Center’s mission is: “education and youth development through promoting the understanding, appreciation and protection of aquatic life and habitats.” In performing this mission, the Center strives to be a responsible member of the community, assisting in its economic and social redevelopment by providing opportunities for education, enrichment and employment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/412" + "about": "http://vocab.aodn.org.au/def/organisation/entity/412", + "is_latest_label": true }, { "label": "Cliffs Natural Resources", "definition": "Cliffs is a leading mining and natural resources company. We supply iron ore pellets to the North American steel industry from mines and plants located in Michigan and Minnesota. We also produce low-volatile metallurgical coal from mines located in West Virginia and Alabama. Additionally, we operate an iron ore mining complex in Western Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/413" + "about": "http://vocab.aodn.org.au/def/organisation/entity/413", + "hidden_labels": [ + "Cliffs" + ], + "is_latest_label": true }, { "label": "International Risk Consultants Inc (IRC)", "definition": "RC specializes in trade credit insurance, political risk Insurance and related trade finance solutions. Since our 1987 founding in Columbus, Ohio (USA), we have grown into the industry’s largest globally-integrated brokerage with partner-led offices in Hong Kong, China, Brazil, India and throughout the USA. We offer thorough market explorations and bespoke placements with unmatched post-placement training, service and claims advocacy.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/414" + "about": "http://vocab.aodn.org.au/def/organisation/entity/414", + "hidden_labels": [ + "IRC" + ], + "is_latest_label": true }, { "label": "Jacobs Engineering Group Inc.", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/415" + "about": "http://vocab.aodn.org.au/def/organisation/entity/415", + "hidden_labels": [ + "Jacobs" + ], + "is_latest_label": true }, { "label": "Marine Conservation Science Institute (MCSI)", "definition": "The Marine Conservation Science Institute (MCSI) is a nonprofit 501(c)(3) organization founded on the belief that focused research can make a difference in how we view and manage our marine resources. MCSI is committed to promoting important issues in marine biology and fisheries, and is currently involved in research projects around the globe dedicated to protecting and conserving marine resources.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/416" + "about": "http://vocab.aodn.org.au/def/organisation/entity/416", + "hidden_labels": [ + "MCSI" + ], + "is_latest_label": true }, { "label": "The Nature Conservancy (TNC)", "definition": "The mission of The Nature Conservancy is to conserve the lands and waters on which all life depends. Our vision is a world where the diversity of life thrives, and people act to conserve nature for its own sake and its ability to fulfill our needs and enrich our lives.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/417" + "about": "http://vocab.aodn.org.au/def/organisation/entity/417", + "hidden_labels": [ + "TNC" + ], + "is_latest_label": true }, { "label": "Oceanweather Inc.", "definition": "Since its formation in 1977, the company had been fully engaged with support divided between the private and public sector. In the public sector the company continues to perform basic and applied research in marine meteorology and ocean response numerical modeling, supported by both US and foreign government agencies. Our staff continues to gain international reputations through active participation in international scientific conferences and research programs, and in open publication.\n\nOceanweather functions as a specialized consulting firm serving the coastal and ocean engineering communities with its unique capacity to integrate several areas of expertise into specification of definitive design data on the physical environment. Oceanweather's approach is to consistently develop and apply its high-level technology to satisfy practical requirements in the areas of marine meteorology, ocean wave and current specification, ocean engineering, and statistics of environmental data. In the past quarter century Oceanweather has performed dedicated hindcast studies and Joint Industry Projects (JIPs) in virtually every ocean basin in the world. Since 1983, Oceanweather has operated a real time forecasting division following a unique approach which optimally combines the traditional approach to weather forecasting, which retains the contributions of individual forecasters, and Oceanweather's high-level technology developed and applied so successfully in its hindcasting and consulting divisions. The system includes a global wind and wave forecast system and various high resolution regional applications.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/418" + "about": "http://vocab.aodn.org.au/def/organisation/entity/418", + "is_latest_label": true }, { "label": "The University of British Columbia (UBC)", @@ -1550,29 +2937,53 @@ { "label": "Department of Economics and Fisheries Centre, The University of British Columbia (UBC)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/362" + "about": "http://vocab.aodn.org.au/def/organisation/entity/362", + "display_label": "Department of Economics and Fisheries Centre", + "hidden_labels": [ + "Department of Economics and Fisheries Centre" + ], + "is_latest_label": false }, { "label": "Department of Forest Resources Management, The University of British Columbia (UBC)", - "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/421" + "about": "http://vocab.aodn.org.au/def/organisation/entity/421", + "display_label": "Department of Forest Resources Management", + "hidden_labels": [ + "Department of Forest Resources Management" + ], + "is_latest_label": true }, { "label": "Department of Mathematics, The University of British Columbia (UBC)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/422" + "about": "http://vocab.aodn.org.au/def/organisation/entity/422", + "display_label": "Department of Mathematics", + "hidden_labels": [ + "Department of Mathematics" + ], + "is_latest_label": true }, { "label": "Project Seahorse", - "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/423" + "about": "http://vocab.aodn.org.au/def/organisation/entity/423", + "is_latest_label": true }, { "label": "Department of Earth, Ocean and Atmospheric Sciences (EOAS), The University of British Columbia (UBC)", "definition": "The research focus of the department extends from pure science studies of the earth's deep interior, through near-surface geological studies and environmental earth science, to the oceans and atmosphere. To realize their research objectives, UBC earth scientists draw on a broad base of knowledge from the basic sciences of chemistry, physics, biology and mathematics. An integrated approach is increasingly required to understand the complex interactions due to human impact on the earth in such problems as climate change, resource exploitation and waste disposal. One specialized group is the Mineral Deposit Research Unit (MDRU) which undertakes programs supported by the mineral exploration industry.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/491" + "about": "http://vocab.aodn.org.au/def/organisation/entity/491", + "display_label": "Department of Earth, Ocean and Atmospheric Sciences (EOAS)", + "hidden_labels": [ + "Department of Earth, Ocean and Atmospheric Sciences (EOAS)", + "EOAS" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UBC" + ], + "is_latest_label": true }, { "label": "Brock University", @@ -1582,9 +2993,15 @@ { "label": "Department of Economics, Brock University", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/425" + "about": "http://vocab.aodn.org.au/def/organisation/entity/425", + "display_label": "Department of Economics", + "hidden_labels": [ + "Department of Economics" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Iowa State University", @@ -1594,9 +3011,15 @@ { "label": "Department of Economics, Iowa State University", "definition": "The Department of Economics is one of the oldest and most recognized units on the Iowa State University campus. It has a long and interesting history that is described further in some documents accessible from the panel on the right. The Department of Economics is currently jointly administered by the College of Agriculture and Life Sciences and by the College of Liberal Arts and Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/432" + "about": "http://vocab.aodn.org.au/def/organisation/entity/432", + "display_label": "Department of Economics", + "hidden_labels": [ + "Department of Economics" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Florida International University (FIU)", @@ -1606,29 +3029,53 @@ { "label": "Department of Biological Sciences, Florida International University (FIU)", "definition": "The research interests of our faculty span many levels of biological organization from molecules to ecosystems, and include both field- and laboratory-based studies in marine, terrestrial and freshwater environments. Faculty in the department address basic biological questions about how organisms work, how they develop, how they interact with other organisms and their environments, and how they have evolved over time. Active areas of research include cell and molecular biology, ecology, climate change, functional morphology, genetics, conservation biology and biodiversity, neurobiology and behavior, evolutionary biology and population genetics, phylogenetics and bioinformatics, physiology, virology, microbiology, and paleobiology. Many of our faculty specialize in tropical systems, including tropical ecosystems and tropical diseases.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/437" + "about": "http://vocab.aodn.org.au/def/organisation/entity/437", + "display_label": "Department of Biological Sciences", + "hidden_labels": [ + "Department of Biological Sciences" + ], + "is_latest_label": true }, { "label": "School of Environment, Arts and Society (SEAS), Florida International University (FIU)", "definition": "Faculty in SEAS are invested in understanding how factors from both systems affect the environment, because long-term sustainability can only be achieved if human societies understand their impact in and responsibility toward these natural systems. The academic core of SEAS consists of the Departments of Biological Sciences, Earth and Environment, and English. Through research, education, and an interdisciplinary exchange of ideas, SEAS strives to bring about positive, tangible changes on local, national and international levels.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/438" + "about": "http://vocab.aodn.org.au/def/organisation/entity/438", + "display_label": "School of Environment, Arts and Society (SEAS)", + "hidden_labels": [ + "SEAS", + "School of Environment, Arts and Society (SEAS)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "FIU" + ], + "is_latest_label": true }, { "label": "Georgetown University (GU)", "definition": "Comprising 9 undergraduate and graduate schools, the university has about 7,000 undergraduate and over 10,000 post-graduate students from a wide variety of religious, ethnic, and geographic backgrounds, including 130 foreign countries.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/440" + "about": "http://vocab.aodn.org.au/def/organisation/entity/440", + "hidden_labels": [ + "GU" + ], + "is_latest_label": true }, { "label": "The University of Texas at Austin", "definition": "UT Austin is home to more than 51,000 students and 3,000 teaching faculty. It is the flagship university of the UT system.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/443" + "about": "http://vocab.aodn.org.au/def/organisation/entity/443", + "is_latest_label": true }, { "label": "University of Potsdam", "definition": "The University of Potsdam promotes the dialogue between theory and practice by means of current research. The research profile of the University of Potsdam is shaped primarily by five faculties. Constantly increasing third-party funding volume testifies to the quality of the research conducted at the University today. The University of Potsdam also has successful, productive cooperative agreements with more than 20 non-university research institutions in the region.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/444" + "about": "http://vocab.aodn.org.au/def/organisation/entity/444", + "hidden_labels": [ + "Universität Potsdam" + ], + "is_latest_label": true }, { "label": "University of Iceland", @@ -1638,14 +3085,25 @@ { "label": "Department of Economics, University of Iceland", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/365" + "about": "http://vocab.aodn.org.au/def/organisation/entity/365", + "display_label": "Department of Economics", + "hidden_labels": [ + "Department of Economics" + ], + "is_latest_label": false } - ] + ], + "is_latest_label": true }, { "label": "Institute for Research in Economics and Business Administration (SNF)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/446" + "about": "http://vocab.aodn.org.au/def/organisation/entity/446", + "hidden_labels": [ + "SNF", + "Samfunns- og naeingslivsforskning AS" + ], + "is_latest_label": true }, { "label": "University of Hull", @@ -1655,9 +3113,15 @@ { "label": "School of Biological, Biomedical and Environmental Sciences, University of Hull", "definition": "In the latest UK-wide Research Excellence Framework (2014), our submitted research was assessed as having either ‘world-leading’ or ‘internationally excellent’ impact, while over half was of world-leading or internationally excellent standard. One of the University’s distinctive features is its strong research culture of collaboration and interdisciplinary working. The School and its researchers carry out true interdisciplinary research with scientists from Chemistry, Geography, the Hull York Medical School, academics from around the world, and clinicians and experts at local hospitals to become a centre of research excellence. The school’s research is structured around three major themes: Biomedical sciences: focusing on investigating the cellular processes involved in metabolism and energy transduction in health and disease. Ecology and Environment: includes physiological, behavioural and evolutionary studies as well as organism-level research. Evolutionary Biology: examining the varied processes which shape individual, population and species diversity.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/448" + "about": "http://vocab.aodn.org.au/def/organisation/entity/448", + "display_label": "School of Biological, Biomedical and Environmental Sciences", + "hidden_labels": [ + "School of Biological, Biomedical and Environmental Sciences" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Southampton", @@ -1667,19 +3131,33 @@ { "label": "School of Ocean and Earth Science, University of Southampton", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/332" + "about": "http://vocab.aodn.org.au/def/organisation/entity/332", + "display_label": "School of Ocean and Earth Science", + "hidden_labels": [ + "School of Ocean and Earth Science" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Schmidt Ocean Institute", "definition": "Schmidt Ocean Institute was established to advance the frontiers of ocean research and exploration through innovative technologies, intelligent observation and analysis, and open sharing of information.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/451" + "about": "http://vocab.aodn.org.au/def/organisation/entity/451", + "hidden_labels": [ + "SOI" + ], + "is_latest_label": true }, { "label": "National Institute for Environmental Studies (NIES)", "definition": "", - "about": "http://vocab.aodn.org.au/def/organisation/entity/456" + "about": "http://vocab.aodn.org.au/def/organisation/entity/456", + "hidden_labels": [ + "NIES" + ], + "is_latest_label": true }, { "label": "Stockholm University (SU)", @@ -1689,24 +3167,41 @@ { "label": "Department of Meteorology, Stockholm University (MISU)", "definition": "Our research covers a wide range of topics in atmospheric science and oceanography. With research efforts ranging from the depth of the oceans to the upper atmosphere, scientific diversity is a major strength of our department. About fifty scientists and graduate students apply pencil and paper, computer models and advanced experimental methods to obtain a better understanding of our changing environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/170" + "about": "http://vocab.aodn.org.au/def/organisation/entity/170", + "display_label": "Department of Meteorology", + "hidden_labels": [ + "Department of Meteorology", + "MISU", + "Stockholms Universitet, Meteorologiska institutionen" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Met Office, United Kingdom", "definition": "The UK Meteorological Office collects and archives global weather reports made by the international meteorological community.Additionally, certain products from the operational numerical weather and sea-state models are archived for future use.The Marine Advisory Service provides data analysis and consultancy services onany aspect of marine meteorology. A wide range of retrieval and analysissoftware is used to summarize data for planning, design and research purposes.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/492" + "about": "http://vocab.aodn.org.au/def/organisation/entity/492", + "alt_labels": [ + "Met Office" + ], + "is_latest_label": true }, { "label": "Mercator Ocean", "definition": "Input for the Mercator system comes from ocean observations measured by satellites or in situ observations through measurements taken at sea. These measurements are \"ingested\" (assimilated) by the analysis and forecasting model. The assimilation of observation data in a model is used to describe and forecast the state of the ocean for up to 14 days ahead of time. The project mission was thus defined in 1995 to meet a threefold objective: * Develop an operational oceanography system * Enable the development of applications by distributing its products * Contribute to success of the international Godae experiment along with the Jason (altimetry observation) and Coriolis (in situ observations) programmes. For more information, click on the threefold objective. To achieve this goal, Mercator Ocean is based on an original structure. Mercator Ocean has now become an indispensable player in French operational oceanography. It has a strong institutional structure and a solid scientific basis and is firmly involved in the international context due to its many cooperative ventures; the Mercator ocean team is determinedly blazing trails towards tomorrow's oceanography.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/493" + "about": "http://vocab.aodn.org.au/def/organisation/entity/493", + "is_latest_label": true }, { "label": "U.S. Naval Research Laboratory (NRL)", "definition": "NRL is the corporate research laboratory for the Navy and Marine Corps and conducts a broad program of scientific research, technology and advanced development.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/528" + "about": "http://vocab.aodn.org.au/def/organisation/entity/528", + "hidden_labels": [ + "NRL" + ], + "is_latest_label": true }, { "label": "Federal University of Sao Paulo (UNIFESP)", @@ -1716,9 +3211,18 @@ { "label": "Instituto Do Mar, Federal University of Sao Paulo (UNIFESP)", "definition": "The Institute of the Sea is found on the Baixada Santista campus in Sao Paulo.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/530" + "about": "http://vocab.aodn.org.au/def/organisation/entity/530", + "display_label": "Instituto Do Mar", + "hidden_labels": [ + "Instituto Do Mar" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UNIFESP" + ], + "is_latest_label": true }, { "label": "Federal University of Santa Catarina (UFSC)", @@ -1728,9 +3232,18 @@ { "label": "Department of Aquaculture, Federal University of Santa Catarina (UFSC)", "definition": "The Department of Aquaculture was created in 1984, and is part of the School of Agricultural Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/532" + "about": "http://vocab.aodn.org.au/def/organisation/entity/532", + "display_label": "Department of Aquaculture", + "hidden_labels": [ + "Department of Aquaculture" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UFSC" + ], + "is_latest_label": true }, { "label": "Indonesian Institute of Sciences (LIPI)", @@ -1740,9 +3253,18 @@ { "label": "Research Center for Deep Sea, Indonesian Institute of Sciences (LIPI)", "definition": "The Center has the following visions: 1. Undertake deep sea research, utilization and management of marine resources sustainably in Eastern Indonesia and the Indo-Pacific Region; 2. Participation in improving people's welfare in the maritime sector; 3. Supporting the government in strengthening regional and global competitiveness on aspects of maritime sector development.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/540" + "about": "http://vocab.aodn.org.au/def/organisation/entity/540", + "display_label": "Research Center for Deep Sea", + "hidden_labels": [ + "Research Center for Deep Sea" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "LIPI" + ], + "is_latest_label": true }, { "label": "University of Strasbourg", @@ -1752,9 +3274,15 @@ { "label": "Centre for Ecology and Energy Physiology, University of Strasbourg", "definition": "This former centre is now known as the Département d'Écologie, de Physiologie et d'Éthologie, Institut pluridisciplinaire Hubert Curien.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/364" + "about": "http://vocab.aodn.org.au/def/organisation/entity/364", + "display_label": "Centre for Ecology and Energy Physiology", + "hidden_labels": [ + "Centre for Ecology and Energy Physiology" + ], + "is_latest_label": false } - ] + ], + "is_latest_label": true }, { "label": "University of Geneva", @@ -1764,9 +3292,15 @@ { "label": "Institute F.-A. Forel, University of Geneva", "definition": "The Institute F.-A. Forel , in its new configuration meets academically Faculty of teachers and researchers of Sciences responsible for the development of natural environmental sciences within the University. areas: Limnology and environmental geology, Environmental Geochemistry - Ecotoxicology, Ecology and Aquatic Biology, Energy, Environmental Physical Chemistry, Climatology, Spatial analysis and modeling, and Botany and floristic.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/341" + "about": "http://vocab.aodn.org.au/def/organisation/entity/341", + "display_label": "Institute F.-A. Forel", + "hidden_labels": [ + "Institute F.-A. Forel" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Kiel", @@ -1776,9 +3310,20 @@ { "label": "Leibniz Institute of Marine Sciences (IFM-GEOMAR), University of Kiel", "definition": "The Leibniz Institute of Marine Sciences at the University of Kiel (IFM-GEOMAR) was founded January 1st, 2004 through the merger of the Institute for Marine Science (IfM) and the Research Center for Marine Geosciences (GEOMAR).The goal of the institute is the investigation of all areas relevant for actual research in marine sciences, ranging from Geology of the Ocean Floor to Marine Meteorology. The institute operates world-wide in all ocean basins. The main research topics are grouped in four areas: Ocean Circulation and Climate Dynamics, Marine Biogeochemistry, Marine Ecology, and Dynamics of the Ocean Floor.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/319" + "about": "http://vocab.aodn.org.au/def/organisation/entity/319", + "display_label": "Leibniz Institute of Marine Sciences (IFM-GEOMAR)", + "hidden_labels": [ + "IFM-GEOMAR", + "Leibniz Institute of Marine Sciences" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/382" } - ] + ], + "hidden_labels": [ + "Christian-Albrechts-Universität zu Kiel" + ], + "is_latest_label": true }, { "label": "Federal University of Rio Grande (FURG)", @@ -1788,14 +3333,29 @@ { "label": "Institute of Oceanography (IO), Federal University of Rio Grande (FURG)", "definition": "The Institute of Oceanography was created in 1970 and is involved in both undergraduate and postgraduate programs of the university.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/555" + "about": "http://vocab.aodn.org.au/def/organisation/entity/555", + "display_label": "Institute of Oceanography (IO)", + "hidden_labels": [ + "IO", + "Institute of Oceanography (IO)", + "Universidade Federal do Rio Grande Instituto de Oceanografia" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "FURG" + ], + "is_latest_label": true }, { "label": "University of Hamburg (UHH)", "definition": "The University of Hamburg is the largest research and educational institution in northern Germany. As Germany's third biggest university, UHH offers a diverse course range and excellent research options.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/569" + "about": "http://vocab.aodn.org.au/def/organisation/entity/569", + "hidden_labels": [ + "Universität Hamburg" + ], + "is_latest_label": true }, { "label": "National Oceanography Centre, Liverpool (NOC)", @@ -1805,9 +3365,14 @@ { "label": "British Oceanographic Data Centre (BODC)", "definition": "BODC operates on behalf of the Marine Science and Technology Board of the UK's Natural Environment Research Council and acts as the UK's focal point for international oceanographic data exchange. It participates within the Intergovernmental Oceanographic Commission (IOC)'s network of national oceanographic data centres (NODCs) and was a founding partner of the European Sea-Search network. BODC maintains a national oceanographic database, and provides a data service to research scientists, industry, and local and central government, and to major oceanographic programmes. In particular, it provides active data management support to NERC's Thematic Projects, including the AUTOSUB, LOIS and PRIME projects and the UK components of JGOFS and WOCE. It is the WOCE Data Assembly Centre for sea level data and, on behalf of the IOC and IHO Joint Guiding Committee for the General Bathymetric Chart of the Oceans (GEBCO), is responsible for developing the GEBCO Digital Atlas. BODC also acts as the data centre for a number of EC/MAST projects including OMEX, INDIA and PROVESS. BODC exchanges data freely with other NODCs on a bilateral basis, but reserves the right to charge other users the marginal costs involved in making data available e.g. costs of copying, materials and postage. These charges may be waived for reasonable requests in support of bona-fide scientific research. Some data held by BODC are of restricted availability, awaiting final clearance by the scientists involved in their original collection.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/371" + "about": "http://vocab.aodn.org.au/def/organisation/entity/371", + "hidden_labels": [ + "BODC" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of California, Berkeley", @@ -1817,19 +3382,23 @@ { "label": "Lawrence Berkeley National Laboratory", "definition": "Lawrence Berkeley National Laboratory, commonly referred to as Berkeley Lab, is a United States national laboratory that conducts scientific research on behalf of the United States Department of Energy. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/568" + "about": "http://vocab.aodn.org.au/def/organisation/entity/568", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Environment and Climate Change Canada", "definition": "Environment and Climate Change Canada  is the department of the Government of Canada with responsibility for coordinating environmental policies and programs as well as preserving and enhancing the natural environment and renewable resources.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/579" + "about": "http://vocab.aodn.org.au/def/organisation/entity/579", + "is_latest_label": true }, { "label": "Kyoto University", "definition": "The three core missions of a university are education, research, and social contribution. Two of these, research and social contribution, are apt to change in response to global trends. Education, however, has an essential nature that I believe to be unchangeable. In line with its commitment to independent learning, Kyoto University must maintain its position as a bastion of academic freedom, slightly detached from general society and unconstrained by convention. In order to do so, the university must be a place where academic endeavor can proceed undisturbed, while also providing windows into the world and society. These windows can be opened by faculty members equipped with cutting-edge knowledge of the world and society that lies beyond, but the most important role in our university is played by students who venture outside the windows. We must work carefully with partners in industry and government to provide windows that allow students to make the best practical use of abilities they have developed at the university.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/573" + "about": "http://vocab.aodn.org.au/def/organisation/entity/573", + "is_latest_label": true }, { "label": "European Commission", @@ -1839,14 +3408,18 @@ { "label": "Joint Research Centre (JRC), European Commission", "definition": "The Joint Research Centre is the Commission's science and knowledge service. The JRC employs scientists to carry out research in order to provide independent scientific advice and support to EU policy.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/575" + "about": "http://vocab.aodn.org.au/def/organisation/entity/575", + "display_label": "Joint Research Centre (JRC)", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "University of Cantabria (UC)", "definition": "The University of Cantabria (UC) is one of the three universities that has been in the Top 10 list of the main Spanish rankings both in education as well as in research quality.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/576" + "about": "http://vocab.aodn.org.au/def/organisation/entity/576", + "is_latest_label": true }, { "label": "IHE Delft Institute for Water Education", @@ -1856,24 +3429,30 @@ { "label": "Department of Water Science and Engineering, IHE Delft Institute for Water Education", "definition": "The WSE Department deals with the fundamentals of understanding and modelling the primary processes related to water and the environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/578" + "about": "http://vocab.aodn.org.au/def/organisation/entity/578", + "display_label": "Department of Water Science and Engineering", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "UN Environment World Conservation Monitoring Centre (UNEP-WCMC)", "definition": "At UN Environment Programme World Conservation Monitoring Centre we develop and share data and knowledge-based tools to help decision makers understand how they depend and impact upon biodiversity. We work actively with them to ensure that they can – and do – use these tools effectively. We help people to explicitly account for the value of biodiversity in policy- and decision-making for development and the environment. In dozens of projects every year we work with our partners to strengthen the foundations of good environmental management in the following ways.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/581" + "about": "http://vocab.aodn.org.au/def/organisation/entity/581", + "is_latest_label": true }, { "label": "University of Costa Rica (UCR)", "definition": "The University of Costa Rica (Spanish: Universidad de Costa Rica, abbreviated UCR) is a public university in the Republic of Costa Rica, in Central America. Its main campus, Ciudad Universitaria Rodrigo Facio, is located in San Pedro Montes de Oca, in the province of San José. It is the oldest and largest institution of higher learning in Costa Rica, originally established as the Universidad de Santo Tomás in 1843. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/583" + "about": "http://vocab.aodn.org.au/def/organisation/entity/583", + "is_latest_label": true }, { "label": "Oceanum Ltd", "definition": "Our core purpose is to create ocean knowledge. We do this by applying the latest science code within an agile technology stack to resolve the important physical ocean processes.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/609" + "about": "http://vocab.aodn.org.au/def/organisation/entity/609", + "is_latest_label": true }, { "label": "New Zealand Defence Force (NZDF)", @@ -1883,19 +3462,35 @@ { "label": "Defence Technology Agency (DTA), New Zealand Defence Force (NZDF)", "definition": "The Defence Technology Agency (DTA) is a business unit of the New Zealand Defence Force (NZDF). DTA provides applied research, exploratory development and policy studies on science and technology with application to military technology, force developments and operations. DTA's primary customers are the NZDF and the Ministry of Defence (MoD).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/608" + "about": "http://vocab.aodn.org.au/def/organisation/entity/608", + "display_label": "Defence Technology Agency (DTA)", + "hidden_labels": [ + "DTA", + "Defence Technology Agency (DTA)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "NZDF" + ], + "is_latest_label": true }, { "label": "Meteorological Service of New Zealand Ltd", "definition": "MetService is New Zealand's national weather authority, providing comprehensive weather information services.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/610" + "about": "http://vocab.aodn.org.au/def/organisation/entity/610", + "is_latest_label": true }, { "label": "University of Western Brittany", "definition": "Multidisciplinary, the University of Western Brittany provides an excellent level of higher education in its Faculty of Science and Technology, Medicine, Dentistry, Humanities and Social Sciences, Law, Economics and Management, Sport and Physical Education. Today, more than 20,000 students are working in 21 areas located in six geographic locations: Brest, Quimper, Morlaix, Saint-Brieuc, Vannes, Rennes. The opening of the sea benefits to UBO and all its stakeholders. This advanced position is an additional asset for its future.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/619" + "about": "http://vocab.aodn.org.au/def/organisation/entity/619", + "hidden_labels": [ + "UBO", + "Université de Bretagne Occidentale" + ], + "is_latest_label": true }, { "label": "University of Barcelona (UB)", @@ -1904,9 +3499,19 @@ "narrower": [ { "label": "Department of Evolutionary Biology, Ecology and Environmental Science, University of Barcelona (UB)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/622" + "about": "http://vocab.aodn.org.au/def/organisation/entity/622", + "hidden_labels": [ + "DP-BEECA", + "Departament de Biologia Evolutiva, Ecologia i Ciències Ambientals, Universitat de Barcelona" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UB", + "Universidad de Barcelona" + ], + "is_latest_label": true }, { "label": "University of Hawai", @@ -1916,49 +3521,80 @@ { "label": "University of Hawaii at Mānoa", "definition": "Established in 1907, the University of Hawaii at Mānoa is the largest and oldest of the 10 UH campuses.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/632" + "about": "http://vocab.aodn.org.au/def/organisation/entity/632", + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "UH" + ], + "is_latest_label": true }, { "label": "Norwegian Meteorological Institute", "definition": "The institute provides the public with meteorological services for both civil and military purposes. Duties of the Norwegian Meteorological Institute include: issuing weather forecasts; studying the national climatological conditions and produce climatological reports; providing meteorological observations from Norway, adjacent sea areas, and from the Svalbard area; carrying out research and development in support of the institute's operational functions to ensure that the services are of the highest possible standard. See also this address: http://www.yr.no", - "about": "http://vocab.aodn.org.au/def/organisation/entity/630" + "about": "http://vocab.aodn.org.au/def/organisation/entity/630", + "is_latest_label": true }, { "label": "Shirshov Institute of Oceanology, RAS (IORAS)", "definition": "The Institute of Oceanology of Russian Academy of Sciences (department of oceanology, physics of atmosphere and geography) was established in 1946. It is one of the largest research institutes in Russia. It is a multi-profiles institute studying sciences connected with exploration of the World Ocean and seas. There are three branches: Sankt-Peterburg's branch (Sankt-Peterburg), Atlantic branch (Kaliningrad), Arhangelsk branch, Caspian branch (Astrahan) and Southern branch (Gelendzhik).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/629" + "about": "http://vocab.aodn.org.au/def/organisation/entity/629", + "hidden_labels": [ + "IORAS" + ], + "is_latest_label": true }, { "label": "European Centre for Medium-Range Weather Forecasts (ECMWF)", "definition": "The European Centre for Medium-Range Weather Forecasts (ECMWF, the Centre) is an independent intergovernmental organisation supported by 32 States. Its Member States are:Belgium, Denmark, Germany, Greece, Spain, France, Ireland, Italy, Luxembourg, the Netherlands, Norway, Austria, Portugal, Switzerland, Finland, Sweden, Turkey, United Kingdom. The principal objectives of the Centre are: the development of numerical methods for medium-range weather forecasting; the preparation, on a regular basis, of medium-range weather forecasts for distribution to the meteorological services of the Member States; scientific and technical research directed at the improvement of these forecasts; collection and storage of appropriate meteorological data.\nIn addition, the Centre: makes available a proportion of its computing facilities to its Member States for their research; assists in implementing the programmes of the World Meteorological Organisation; provides advanced training to the scientific staff of the Member States in the field of numerical weather prediction; makes the data in its extensive archives available to outside bodies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/643" + "about": "http://vocab.aodn.org.au/def/organisation/entity/643", + "hidden_labels": [ + "ECMWF" + ], + "is_latest_label": true }, { "label": "University of California, Santa Cruz (UCSC)", "definition": "The University of California, Santa Cruz (also known as UC Santa Cruz or UCSC), is a public, collegiate university and one of 10 campuses in the University of California system. Founded in 1965, UC Santa Cruz began as a showcase for progressive, cross-disciplinary undergraduate education, innovative teaching methods and contemporary architecture. Since then, it has evolved into a modern research university with a wide variety of both undergraduate and graduate programs.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/644" + "about": "http://vocab.aodn.org.au/def/organisation/entity/644", + "hidden_labels": [ + "UCSC" + ], + "is_latest_label": true }, { "label": "French National Center for Scientific Research", "definition": "The French National Centre for Scientific Research (CNRS) is an interdisciplinary public research organisation under the administrative supervision of the French Ministry of Higher Education and Research.\n\nComposed of 33,000 people dedicated to research within 1,144 research laboratories in France and abroad.\n\nThe French National Centre for Scientific Research is among the world's leading research institutions. Its scientists explore the living world, matter, the Universe, and the functioning of human societies in order to meet the major challenges of today and tomorrow. Internationally recognised for the excellence of its scientific research, the CNRS is a reference in the world of research and development, as well as for the general public.\nIts main Research fields are: Biology, Chemistry, Ecology and environment, Humanities and social sciences, Engineering and systems, Mathematics, Nuclear and particles, Physics, Information sciences, Earth sciences and astronomy.\n\nThe French state has entrusted the CNRS with the role of advancing knowledge for the benefit of society. The organisation seeks to accomplish this national mission while respecting ethical rules and showing commitment to professional equality.\n\nThe 18 regional offices are entrusted with the direct and local management of laboratories. They liaise with local partners and authorities (www.cnrs.fr/en/cnrs-regional-offices).\nCNRS laboratories are the organisation’s “building blocks”. Their teams, which consist of researchers, engineers and technicians, are behind the production and transmission of knowledge. Most laboratories are joint research units, bringing together partners from academia (universities, schools, and other research organisations) and industrial actors.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/646" + "about": "http://vocab.aodn.org.au/def/organisation/entity/646", + "is_latest_label": true }, { "label": "Shanghai Ocean University (SHOU)", "definition": "Shanghai Ocean University, formerly known as Jiangsu Provincial Fisheries College, was founded in 1912 by Zhang Jian and Huang Yanpei. It is a multi-disciplinary applied research-based institution of higher education jointly established by Shanghai Municipal People’s Government, State Oceanic Administration and the Ministry of Agriculture, and was upgraded to China’s first undergraduate institution of fisheries---Shanghai Fisheries College in 1952. It was renamed as Shanghai Fisheries University in 1985 and Shanghai Ocean University in 2008.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/647" + "about": "http://vocab.aodn.org.au/def/organisation/entity/647", + "hidden_labels": [ + "SHOU" + ], + "is_latest_label": true }, { "label": "Hokkaido University (HU)", "definition": "Hokkaido University is a Japanese national university in Sapporo, Hokkaido.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/648" + "about": "http://vocab.aodn.org.au/def/organisation/entity/648", + "hidden_labels": [ + "HU" + ], + "is_latest_label": true }, { "label": "National Centre for Space Studies (CNES)", "definition": "Founded in 1961, the Centre National d'Etudes Spatiales (CNES) is the goverment agency responsible for shaping and implementing France's space policy in Europe. Its task is to invent the space system of the future, bring space technologies to maturity and guarantee France's independent access to space. The CNES supervises the following satellite oceanography missions: Topex/Poseidon, Jason-1, Jason-2 and AltiKa. It plays a supporting role in the Service Altimétrie et Localisation Précise (SALP) project and the AVISO data processing center. Finally, the CNES is a contributing organization to the Mercator Ocean project.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/652" + "about": "http://vocab.aodn.org.au/def/organisation/entity/652", + "hidden_labels": [ + "CNES" + ], + "is_latest_label": true }, { "label": "National Aeronautics and Space Administration (NASA)", @@ -1968,14 +3604,23 @@ { "label": "National Aeronautics and Space Administration Goddard Space Flight Center (NASA GSFC)", "definition": "The Center, located in a Maryland suburb outside of Washington, DC, is home to the Nation's largest organization of combined scientists and engineers dedicated to learning and sharing their knowledge of the Earth, solar system, and Universe. The mission of the Goddard Space Flight Center is to expand knowledge of the Earth and its environment, the solar system and the universe through observations from space. It is committed to excellence in scientific investigation, in the development and operation of space systems, and in the advancement of essential technologies. In pursuit of this challenge, the Center will: 1) Conduct a preeminent program of research in the space and Earth science disciplines using measurements from space complemented by suborbital, ground-based and laboratory measurements and by theoretical investigations. 2) Develop and operate a broad spectrum of flight missions that are responsive to the needs of the science community. 3) Provide and operate spaceflight tracking and data acquisition networks. 4) Develop innovative technology and instruments critical to the success of our mission. 5) Develop and maintain advanced information systems for the display, analysis, archiving and distribution of space and Earth science data. 6) Develop National Oceanic and Atmospheric Administration (NOAA) satellite systems that provide environmental data for forecasting and research.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/376" + "about": "http://vocab.aodn.org.au/def/organisation/entity/376", + "hidden_labels": [ + "NASA GSFC" + ], + "is_latest_label": true }, { "label": "National Aeronautics and Space Administration Jet Propulsion Laboratory (NASA JPL)", "definition": "The Jet Propulsion Laboratory is a federally funded research and development center and NASA field center located in La Cañada Flintridge, California", - "about": "http://vocab.aodn.org.au/def/organisation/entity/385" + "about": "http://vocab.aodn.org.au/def/organisation/entity/385", + "hidden_labels": [ + "NASA JPL" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] }, @@ -1987,62 +3632,86 @@ { "label": "SeaCare Inc", "definition": "SeaCare was formed in 1998 as a nonprofit organisation supported by the National Heritage Trust of Australia Fisheries Action Program. It is a community based group formed to facilitate projects aimed at benefiting the marine environment in Tasmania.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/120" + "about": "http://vocab.aodn.org.au/def/organisation/entity/120", + "is_latest_label": true }, { "label": "Birdlife Australia", "definition": "The Royal Australasian Ornithologists Union, now known as Birdlife Australia, was founded in 1901 to promote the study and conservation of the native bird species of Australia and adjacent regions. This makes it Australia's oldest national birding association. It was also Australia's largest non-government, non-profit, bird conservation organisation. In 1996 it adopted the trading name of Birds Australia for most public purposes, while retaining its original name for legal purposes and as the publisher of its journal the Emu. In 2012 it merged with Bird Observation and Conservation Australia to form BirdLife Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/36" + "about": "http://vocab.aodn.org.au/def/organisation/entity/36", + "is_latest_label": true }, { "label": "Busselton Underwater Observatory", "definition": "Located 1.7 kilometres from shore at the end of the Busselton Jetty, the Underwater Observatory has been designed to accommodate up to 40 people at one time. Descending 8 metres beneath the waters’ surface, visitors can view the amazing corals and fish life through eleven viewing windows, at various levels within a 9.5 metre diameter observation chamber.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/38" + "about": "http://vocab.aodn.org.au/def/organisation/entity/38", + "is_latest_label": true }, { "label": "Great Barrier Reef Foundation", "definition": "The Great Barrier Reef Foundation was established in 2000, in accordance with Article 17 of the World Heritage Convention. The Foundation is the only independent not-for-profit organisation in Australia dedicated solely to raising funds for scientific research into preserving the Great Barrier Reef.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/400" + "about": "http://vocab.aodn.org.au/def/organisation/entity/400", + "is_latest_label": true }, { "label": "Centre for Whale Research (CWR)", "definition": "Not for profit registered research institute. Centre for Whale Research (CWR)'s scientists conduct research all around Australia and the Southern Ocean.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/45" + "about": "http://vocab.aodn.org.au/def/organisation/entity/45", + "hidden_labels": [ + "CWR" + ], + "is_latest_label": true }, { "label": "Conservation Council of Western Australia (CCWA)", "definition": "The Conservation Council of Western Australia (CCWA) is a non-profit, non-government conservation organisation.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/49" + "about": "http://vocab.aodn.org.au/def/organisation/entity/49", + "hidden_labels": [ + "CCWA" + ], + "is_latest_label": true }, { "label": "Coral Reef Research", "definition": "Coral Reef Research built and published the three volume book Corals of the World in 2000 followed by Coral ID in 2002 and in 2015 will be releasing a website: Corals of the World.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/50" + "about": "http://vocab.aodn.org.au/def/organisation/entity/50", + "is_latest_label": true }, { "label": "Environs Kimberley (EK)", "definition": "Environs Kimberley or EK is the peak conservation organisation for the Kimberley region.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/83" + "about": "http://vocab.aodn.org.au/def/organisation/entity/83", + "hidden_labels": [ + "EK" + ], + "is_latest_label": true }, { "label": "ECOCEAN", "definition": "ECOCEAN (Australia) is a non-government, not-for-profit organization based in Western Australia working towards scientific research,  education  and conservation  of the marine environment. ECOCEAN (Australia) was founded by marine and conservation biologist Brad Norman who also helped establish the partner organisation ECOCEAN (USA). ECOCEAN’s flagship species is the iconic yet threatened whale shark (Rhincodon typus).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/84" + "about": "http://vocab.aodn.org.au/def/organisation/entity/84", + "is_latest_label": true }, { "label": "Clean Ocean Foundation", "definition": "Founded in Victoria in 2000 by beachcombers, swimmers, fishermen, surfers and other lovers of the sea, we are an environmental charity focused on issues related to ocean pollution.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/485" + "about": "http://vocab.aodn.org.au/def/organisation/entity/485", + "is_latest_label": true }, { "label": "Reef Life Survey Foundation (RLS)", "definition": "The Reef Life Survey Foundation (RLS) is a non-profit environmental organisation that makes the underwater world visible – to scientists, governments, artists and anyone with an interest in rocky and coral reefs around the world and how these reefs are changing.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/633" + "about": "http://vocab.aodn.org.au/def/organisation/entity/633", + "hidden_labels": [ + "RLS" + ], + "is_latest_label": true }, { "label": "Reef Check Foundation Ltd", "definition": "Reef Check Australia is an innovative citizen science focused charity dedicated to educating and empowering community volunteers to better understand, appreciate and protect oceans and marine environments. We help people help reefs by providing the tools for the community to take positive action for our reefs. Through our network of volunteers, we engage in citizen science, connect people with reef science, and undertake local conservation projects.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/665" + "about": "http://vocab.aodn.org.au/def/organisation/entity/665", + "is_latest_label": true } ] }, @@ -2064,19 +3733,48 @@ { "label": "Aeronautical Maritime Research Labs (AMRL), Defence Science and Technology Organisation (DSTO), Department of Defence (DoD), Australian Government", "definition": "In July 1994 the Materials Research Laboratory and Aeronautical Research Laboratory merged to form the Aeronautical and Maritime Research Laboratory (AMRL). A restructure of the Defence Science and Technology Organisation in 2002 resulted in the closure of all existing research Laboratories for the creation of three new ones. (Courtesy of Encyclopedia of Australian Science)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/169" + "about": "http://vocab.aodn.org.au/def/organisation/entity/169", + "display_label": "Aeronautical Maritime Research Labs (AMRL)", + "hidden_labels": [ + "AMRL" + ], + "alt_labels": [ + "Aeronautical Maritime Research Labs (AMRL), Defence Science and Technology Organisation (DSTO)" + ], + "is_latest_label": false }, { "label": "Maritime Division, Defence Science and Technology Organisation (DSTO), Department of Defence (DoD), Australian Government", "definition": "Defence Science and Technology Organisation's (DSTO) Maritime Division provides technologies and scientific and technical expertise to deliver the capability edge to the war fighter and enhance the operational performance and survivability of defence platforms in the maritime domain. In 2015, the DSTO changed its name to the Defence Science and Technology Group (DST Group).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/3" + "about": "http://vocab.aodn.org.au/def/organisation/entity/3", + "display_label": "Maritime Division", + "alt_labels": [ + "Maritime Division, Defence Science and Technology Organisation (DSTO)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/407" } - ] + ], + "display_label": "Defence Science and Technology Organisation (DSTO)", + "hidden_labels": [ + "DSTO", + "Defence Science and Technology Organisation (DSTO)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/406" }, { "label": "Australian Defence Force Academy (ADFA), Department of Defence (DoD), Australian Government", "definition": "The Australian Defence Force Academy (ADFA) is a unique military institution which combines military education and training with academic study for an undergraduate degree through the University of New South Wales.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/4" + "about": "http://vocab.aodn.org.au/def/organisation/entity/4", + "display_label": "Australian Defence Force Academy (ADFA)", + "hidden_labels": [ + "ADFA" + ], + "alt_labels": [ + "Australian Defence Force Academy (ADFA)" + ], + "is_latest_label": true }, { "label": "Defence Science and Technology Group (DST Group), Department of Defence (DoD), Australian Government", @@ -2086,9 +3784,20 @@ { "label": "Maritime Division, Defence Science and Technology Group (DST Group), Department of Defence (DoD), Australian Government", "definition": "Defence Science and Technology Group's (DST Group) Maritime Division provides technologies and scientific and technical expertise to deliver the capability edge to the war fighter and enhance the operational performance and survivability of defence platforms in the maritime domain.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/407" + "about": "http://vocab.aodn.org.au/def/organisation/entity/407", + "display_label": "Maritime Division", + "alt_labels": [ + "Maritime Division, Defence Science and Technology Group (DST Group)" + ], + "is_latest_label": true } - ] + ], + "display_label": "Defence Science and Technology Group (DST Group)", + "hidden_labels": [ + "DST Group", + "Defence Science and Technology Group (DST Group)" + ], + "is_latest_label": true }, { "label": "Royal Australian Navy (RAN), Department of Defence (DoD), Australian Government", @@ -2098,26 +3807,59 @@ { "label": "Royal Australian Navy Hydrography and METOC Branch, Royal Australian Navy (RAN), Department of Defence (DoD), Australian Government", "definition": "Navy METOC (Meteorology and Oceanography) is a component of the Royal Australian Navy´s Hydrography and METOC Branch, of which the Australian Hydrographic Service is the other component.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/6" + "about": "http://vocab.aodn.org.au/def/organisation/entity/6", + "display_label": "Royal Australian Navy Hydrography and METOC Branch", + "alt_labels": [ + "Royal Australian Navy Hydrography and METOC Branch" + ], + "is_latest_label": false }, { "label": "Australian Hydrographic Service (AHS), Royal Australian Navy (RAN), Department of Defence (DoD), Australian Government", "definition": "The RAN Australian Hydrographic Service is the Commonwealth Government agency responsible for the publication and distribution of nautical charts and other information required for the safety of ships navigating in Australian waters. It is also the Australian Defence Force (ADF) agency responsible for the provision of operational surveying support and maritime Military Geographic Information (MGI) for ADF operations and exercises.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/7" + "about": "http://vocab.aodn.org.au/def/organisation/entity/7", + "display_label": "Australian Hydrographic Service (AHS)", + "hidden_labels": [ + "AHS" + ], + "alt_labels": [ + "Australian Hydrographic Service (AHS)" + ], + "is_latest_label": false } - ] + ], + "display_label": "Royal Australian Navy (RAN)", + "hidden_labels": [ + "RAN" + ], + "alt_labels": [ + "Royal Australian Navy (RAN)" + ], + "is_latest_label": true }, { "label": "Australian Hydrographic Office (AHO), Department of Defence (DoD), Australian Government", "definition": "The Australian Hydrographic Office (AHO) is the Department of Defence agency responsible for the publication and distribution of nautical charts and other information required for the safety of ships navigating in Australian waters. The AHO is also responsible for the provision of operational surveying support and maritime Military Geographic Information (MGI) for Australian Defence Force (ADF) operations and exercises.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/580" + "about": "http://vocab.aodn.org.au/def/organisation/entity/580", + "display_label": "Australian Hydrographic Office (AHO)", + "alt_labels": [ + "Australian Hydrographic Office (AHO)" + ], + "is_latest_label": true } - ] + ], + "display_label": "Department of Defence (DoD)", + "hidden_labels": [ + "Department of Defence (DoD)", + "DoD" + ], + "is_latest_label": true }, { "label": "Pawsey Supercomputing Centre", "definition": "The centre comprises a purpose-built building, housing supercomputers and associated works at Kensington, Western Australia. The primary aim of the centre is to host new supercomputing facilities and expertise to support SKA (Square Kilometre Array) pathfinder research, geosciences and other high-end science.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/109" + "about": "http://vocab.aodn.org.au/def/organisation/entity/109", + "is_latest_label": true }, { "label": "Department of Industry and Science, Australian Government", @@ -2127,7 +3869,16 @@ { "label": "Australian Institute of Marine Science (AIMS), Department of Industry and Science, Australian Government", "definition": "The Australian Institute of Marine Science (AIMS) is Australia’s premiere tropical marine research agency. They play a pivotal role in providing large-scale, long-term and world-class research that helps governments, industry and the wider community to make informed decisions about the management of Australia’s marine estate.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/14" + "about": "http://vocab.aodn.org.au/def/organisation/entity/14", + "display_label": "Australian Institute of Marine Science (AIMS)", + "hidden_labels": [ + "AIMS" + ], + "alt_labels": [ + "Australian Institute of Marine Science (AIMS)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/462" }, { "label": "Commonwealth Scientific and Industrial Research Organisation (CSIRO)", @@ -2137,12 +3888,18 @@ { "label": "CSIRO Land and Water", "definition": "A provider of innovative research solutions to the most significant land, water and ecosystem management challenges.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/16" + "about": "http://vocab.aodn.org.au/def/organisation/entity/16", + "is_latest_label": true }, { "label": "CSIRO Marine and Atmospheric Research (CMAR)", "definition": "ConceptDescription", - "about": "http://vocab.aodn.org.au/def/organisation/entity/17" + "about": "http://vocab.aodn.org.au/def/organisation/entity/17", + "hidden_labels": [ + "CMAR" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/18" }, { "label": "CSIRO Oceans and Atmosphere", @@ -2152,43 +3909,105 @@ { "label": "Information and Data Centre, CSIRO Oceans and Atmosphere", "definition": "The Data Centre is a central assembly and management point for much of the vessel-collected (ship) data collected over the past 25+ years, plus related datasets such as those collected via moored instrument arrays (moorings) in the Australasian region. We also administer and maintain a range of data management systems and tools which include a central \"Data Warehouse\", accessed via a custom Data Trawler application; \"MarLIN\" (Marine Laboratories Information Network), the Divisional data directory (metadatabase), which contains descriptions of many of the Division's datasets (not just those held by the Data Centre); \"CAAB\" (Codes for Australian Aquatic Biota), a master species database which provides names and codes for some 25,000 marine species which occur in Australian waters; and the \"C-squares\" Concise Spatial Query and Representation System, used within data Centre applications and also accessible as a data indexing system and web mapping service to external users. The Data Centre also curates marine datasets collected by the (former) Franklin and (current) Southern Surveyor National Facility research vessels, which are integrated with our Divisional holdings for the purpose of data description, curation, access, and dissemination. The Oceans & Atmosphere organisation was known initially as \"CSIRO Oceans & Atmosphere Flagship\", however in 2015 \"Flagship\" was removed from the name.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/19" + "about": "http://vocab.aodn.org.au/def/organisation/entity/19", + "display_label": "Information and Data Centre", + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/623" } - ] + ], + "display_label": "CSIRO Oceans and Atmosphere", + "alt_labels": [ + "CSIRO Oceans & Atmosphere - Hobart", + "CSIRO Oceans and Atmosphere - Aspendale", + "CSIRO Oceans and Atmosphere - Black Mountain", + "CSIRO Oceans and Atmosphere - Dutton Park", + "CSIRO Oceans and Atmosphere - Floreat", + "CSIRO Oceans and Atmosphere - Hobart", + "CSIRO Oceans and Atmosphere - IOMRC Crawley", + "CSIRO Oceans and Atmosphere - St Lucia" + ], + "is_latest_label": true }, { "label": "Information and Data Centre (IDC), CSIRO National Collections and Marine Infrastructure (NCMI)", "definition": "The Information and Data Centre (IDC) at CSIRO National Collections and Marine Infrastructure (NCMI), Australia manages most of the CSIRO vessel-collected (ship) data collected over the past 30 years, as well as such related datasets as those collected with moored instrument arrays (moorings) in the Australasian region. The IDC also develops and and maintains a range of data management systems and tools which include a central “Data Warehouse”, accessed via a custom Data Trawler application; Marlin the GeoNetwork data catalogue, which contains descriptions of many Marine National Facility (MNF) and Oceans and Atmosphere (O&A) datasets (not just those held by the Data Centre); “CAAB” (Codes for Australian Aquatic Biota), a master species database which provides names and codes for some 44,000 marine species which occur in Australian and adjacent waters.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/623" + "about": "http://vocab.aodn.org.au/def/organisation/entity/623", + "hidden_labels": [ + "IDC", + "Information and Data Centre (IDC)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "CSIRO" + ], + "is_latest_label": true }, { "label": "Geoscience Australia (GA), Department of Industry and Science, Australian Government", "definition": "Geoscience Australia is a prescribed Australian Government agency within the Industry and Science portfolio. Geoscience Australia applies geoscience to Australia's most important challenges by providing geoscience information, services and capability to the Australian Government, industry and stakeholders.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/20" + "about": "http://vocab.aodn.org.au/def/organisation/entity/20", + "display_label": "Commonwealth of Australia (Geoscience Australia)", + "hidden_labels": [ + "GA" + ], + "alt_labels": [ + "Commonwealth of Australia (Geoscience Australia)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/461" }, { "label": "Bureau of Mineral Resources, Geology and Geophysics (BMR)", "definition": "Australian Geological Survey Organisation (AGSO)’s predecessor organisation the Bureau of Mineral Resources, Geology and Geophysics (BMR) was established in 1946; with the name changing to AGSO in 1992. BMR’s main objective was the systematic geological and geophysical mapping of the continent as the basis for informed mineral exploration. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/21" + "about": "http://vocab.aodn.org.au/def/organisation/entity/21", + "hidden_labels": [ + "BMR" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/22" }, { "label": "Australian Geological Survey Organisation (AGSO)", "definition": "Geoscience Australia Australian Geological Survey Organisation (AGSO). The BMR (Bureau of Mineral Resources, Geology and Geophysics) became the Australian Geological Survey Organisation (AGSO) in 1992. AGSO provided much of the geoscience information that underpinned exploration and development work for petroleum and minerals in Australia. A review carried out in AGSO's infancy concluded that geoscience was relevant to society by providing information essential for economic prosperity and for the proper use of resources to protect the local and global economy. In November 2001, the combined agencies adopted the current name of Geoscience Australia, recognising vital geoscientific work in a wide range of contexts and across many disciplines. The National Mapping and Geohazards Divisions of Geoscience Australia merged in 2005 to reflect a global trend in dealing with an increasing range of real world phenomena. Under the new Geospatial and Earth Monitoring Division (GEMD), the maintenance of standard small scale national topographic mapping remains a major responsibility.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/22" + "about": "http://vocab.aodn.org.au/def/organisation/entity/22", + "hidden_labels": [ + "AGSO" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/20" } - ] + ], + "display_label": "Department of Industry and Science", + "hidden_labels": [ + "Department of Industry and Science" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/460" }, { "label": "Bureau of Rural Sciences (BRS), Australian Government", "definition": "The Bureau of Rural Sciences, was a scientific agency within the Department of Agriculture, Fisheries and Forestry, which existed between 1986 and 2010. It is now part of the Australian Bureau of Agricultural and Resource Economics and Sciences.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/168" + "about": "http://vocab.aodn.org.au/def/organisation/entity/168", + "display_label": "Bureau of Rural Sciences (BRS)", + "hidden_labels": [ + "BRS", + "Bureau of Rural Sciences (BRS)" + ], + "is_latest_label": false }, { "label": "Department of the Environment, Water, Heritage and the Arts (DEWHA), Australian Government", "definition": "The Department of the Environment, Water, Heritage and the Arts was an Australian Government department that existed between December 2007 and September 2010. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/23" + "about": "http://vocab.aodn.org.au/def/organisation/entity/23", + "display_label": "Department of the Environment, Water, Heritage and the Arts (DEWHA)", + "hidden_labels": [ + "DEWHA", + "Department of the Environment, Water, Heritage and the Arts (DEWHA)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/8" }, { "label": "Department of Agriculture, Australian Government", @@ -2198,24 +4017,54 @@ { "label": "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES), Department of Agriculture, Australian Government", "definition": "The Australian Bureau of Agricultural and Resource Economics and Sciences is a research organisation within the Australian Government Department of Agriculture. ABARES was formed following the merger of the Australian Bureau of Agricultural and Resource Economics (ABARE) and the Bureau of Rural Sciences (RBS) in 2010.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/25" + "about": "http://vocab.aodn.org.au/def/organisation/entity/25", + "display_label": "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES)", + "hidden_labels": [ + "ABARES", + "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/459" } - ] + ], + "display_label": "Department of Agriculture", + "hidden_labels": [ + "Department of Agriculture" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/450" }, { "label": "Australian Fisheries Management Authority (AFMA), Australian Government", "definition": "The Australian Fisheries Management Authority (AFMA) is the Australian Government agency responsible for the efficient management and sustainable use of Commonwealth fish resources on behalf of the Australian community.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/26" + "about": "http://vocab.aodn.org.au/def/organisation/entity/26", + "display_label": "Australian Fisheries Management Authority (AFMA)", + "hidden_labels": [ + "AFMA" + ], + "alt_labels": [ + "Australian Fisheries Management Authority (AFMA)" + ], + "is_latest_label": true }, { "label": "Australian Maritime Safety Authority (AMSA), Australian Government", "definition": "The Australian Maritime Safety Authority (AMSA) is a statutory authority established under the Australian Maritime Safety Authority Act 1990 (the AMSA Act). AMSA’s principal functions are: promoting maritime safety and protection of the marine environment, preventing and combating ship-sourced pollution in the marine environment, providing infrastructure to support safety of navigation in Australian waters, and providing a national search and rescue service to the maritime and aviation sectors.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/27" + "about": "http://vocab.aodn.org.au/def/organisation/entity/27", + "display_label": "Australian Maritime Safety Authority (AMSA)", + "hidden_labels": [ + "AMSA" + ], + "alt_labels": [ + "Australian Maritime Safety Authority (AMSA)" + ], + "is_latest_label": true }, { "label": "BlueNet", "definition": "The BlueNet project was established by a grant from the Australian Government to provide a virtual data centre to support long term curation and management of data for Australia's marine science researchers. BlueNet linked vast data repositories and marine resources that currently reside in academic and government institutions both in Australia and overseas. Funding for the project concluded in 2009, and management of the project is now undertaken by staff from the Australian Ocean Data Network (AODN).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/42" + "about": "http://vocab.aodn.org.au/def/organisation/entity/42", + "is_latest_label": false }, { "label": "Department of the Environment (DoE), Australian Government", @@ -2230,9 +4079,22 @@ { "label": "National Tidal Unit (NTU)", "definition": "Australian national facility operated since January 2004 by the Bureau of Meteorology. Until then it was known as the National Tidal Facility of Australia operated by Flinders University.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/12" + "about": "http://vocab.aodn.org.au/def/organisation/entity/12", + "hidden_labels": [ + "NTU" + ], + "is_latest_label": true } - ] + ], + "display_label": "Bureau of Meteorology (BOM)", + "hidden_labels": [ + "BOM" + ], + "alt_labels": [ + "Bureau of Meteorology (BOM)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/466" }, { "label": "Australian Antarctic Division (AAD), Department of the Environment (DoE), Australian Government", @@ -2242,11 +4104,35 @@ { "label": "Australian Antarctic Data Centre (AADC), Australian Antarctic Division (AAD), Department of the Environment (DoE), Australian Government", "definition": "The Australian Antarctic Data Centre (AADC) was established in 1996 to provide long-term management of Australia's Antarctic data, thereby improving the value and impact of our scientific activities. The Data Centre is committed to the free and open exchange of scientific data, consistent with the Antarctic Treaty's position that \"to the greatest extent feasible and practicable scientific observations and results from Antarctica shall be exchanged and made freely available\". As Australia's Antarctic Mapping agency, the AADC supports the logistical operations of the Australian Antarctic Program. The AADC also incorporates a group of quantitative research scientists who value-add to the AADC's holdings and provide analytical research capability to the Antarctic Program.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/10" + "about": "http://vocab.aodn.org.au/def/organisation/entity/10", + "display_label": "Australian Antarctic Data Centre (AADC)", + "hidden_labels": [ + "AADC" + ], + "alt_labels": [ + "Australian Antarctic Data Centre (AADC), Australian Antarctic Division (AAD)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/465" } - ] + ], + "display_label": "Australian Antarctic Division (AAD)", + "hidden_labels": [ + "AAD" + ], + "alt_labels": [ + "Australian Antarctic Division (AAD)" + ], + "is_latest_label": false } - ] + ], + "display_label": "Department of the Environment (DoE)", + "hidden_labels": [ + "Department of the Environment (DoE)", + "DoE" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/463" }, { "label": "Department of Agriculture and Water Resources (DAWR), Australian Government", @@ -2256,9 +4142,23 @@ { "label": "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES), Department of Agriculture and Water Resources (DAWR), Australian Government", "definition": "The Australian Bureau of Agricultural and Resource Economics and Sciences is a research organisation within the Australian Government Department of Agriculture and Water Resources. ABARES was formed following the merger of the Australian Bureau of Agricultural and Resource Economics (ABARE) and the Bureau of Rural Sciences (RBS) in 2010.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/459" + "about": "http://vocab.aodn.org.au/def/organisation/entity/459", + "display_label": "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES)", + "hidden_labels": [ + "ABARES", + "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/636" } - ] + ], + "display_label": "Department of Agriculture and Water Resources (DAWR)", + "hidden_labels": [ + "DAWR", + "Department of Agriculture and Water Resources (DAWR)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/634" }, { "label": "Department of Industry, Innovation and Science, Australian Government", @@ -2273,12 +4173,18 @@ { "label": "CSIRO Land and Water", "definition": "A provider of innovative research solutions to the most significant land, water and ecosystem management challenges.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/16" + "about": "http://vocab.aodn.org.au/def/organisation/entity/16", + "is_latest_label": true }, { "label": "CSIRO Marine and Atmospheric Research (CMAR)", "definition": "ConceptDescription", - "about": "http://vocab.aodn.org.au/def/organisation/entity/17" + "about": "http://vocab.aodn.org.au/def/organisation/entity/17", + "hidden_labels": [ + "CMAR" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/18" }, { "label": "CSIRO Oceans and Atmosphere", @@ -2288,28 +4194,70 @@ { "label": "Information and Data Centre, CSIRO Oceans and Atmosphere", "definition": "The Data Centre is a central assembly and management point for much of the vessel-collected (ship) data collected over the past 25+ years, plus related datasets such as those collected via moored instrument arrays (moorings) in the Australasian region. We also administer and maintain a range of data management systems and tools which include a central \"Data Warehouse\", accessed via a custom Data Trawler application; \"MarLIN\" (Marine Laboratories Information Network), the Divisional data directory (metadatabase), which contains descriptions of many of the Division's datasets (not just those held by the Data Centre); \"CAAB\" (Codes for Australian Aquatic Biota), a master species database which provides names and codes for some 25,000 marine species which occur in Australian waters; and the \"C-squares\" Concise Spatial Query and Representation System, used within data Centre applications and also accessible as a data indexing system and web mapping service to external users. The Data Centre also curates marine datasets collected by the (former) Franklin and (current) Southern Surveyor National Facility research vessels, which are integrated with our Divisional holdings for the purpose of data description, curation, access, and dissemination. The Oceans & Atmosphere organisation was known initially as \"CSIRO Oceans & Atmosphere Flagship\", however in 2015 \"Flagship\" was removed from the name.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/19" + "about": "http://vocab.aodn.org.au/def/organisation/entity/19", + "display_label": "Information and Data Centre", + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/623" } - ] + ], + "display_label": "CSIRO Oceans and Atmosphere", + "alt_labels": [ + "CSIRO Oceans & Atmosphere - Hobart", + "CSIRO Oceans and Atmosphere - Aspendale", + "CSIRO Oceans and Atmosphere - Black Mountain", + "CSIRO Oceans and Atmosphere - Dutton Park", + "CSIRO Oceans and Atmosphere - Floreat", + "CSIRO Oceans and Atmosphere - Hobart", + "CSIRO Oceans and Atmosphere - IOMRC Crawley", + "CSIRO Oceans and Atmosphere - St Lucia" + ], + "is_latest_label": true }, { "label": "Information and Data Centre (IDC), CSIRO National Collections and Marine Infrastructure (NCMI)", "definition": "The Information and Data Centre (IDC) at CSIRO National Collections and Marine Infrastructure (NCMI), Australia manages most of the CSIRO vessel-collected (ship) data collected over the past 30 years, as well as such related datasets as those collected with moored instrument arrays (moorings) in the Australasian region. The IDC also develops and and maintains a range of data management systems and tools which include a central “Data Warehouse”, accessed via a custom Data Trawler application; Marlin the GeoNetwork data catalogue, which contains descriptions of many Marine National Facility (MNF) and Oceans and Atmosphere (O&A) datasets (not just those held by the Data Centre); “CAAB” (Codes for Australian Aquatic Biota), a master species database which provides names and codes for some 44,000 marine species which occur in Australian and adjacent waters.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/623" + "about": "http://vocab.aodn.org.au/def/organisation/entity/623", + "hidden_labels": [ + "IDC", + "Information and Data Centre (IDC)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "CSIRO" + ], + "is_latest_label": true }, { "label": "Geoscience Australia (GA), Department of Industry, Innovation and Science, Australian Government", "definition": "Geoscience Australia is a prescribed Australian Government agency within the Industry, Innovation and Science portfolio. Geoscience Australia applies geoscience to Australia's most important challenges by providing geoscience information, services and capability to the Australian Government, industry and stakeholders.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/461" + "about": "http://vocab.aodn.org.au/def/organisation/entity/461", + "display_label": "Commonwealth of Australia (Geoscience Australia)", + "alt_labels": [ + "Commonwealth of Australia (Geoscience Australia)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/641" }, { "label": "Australian Institute of Marine Science (AIMS), Department of Industry, Innovation and Science, Australian Government", "definition": "The Australian Institute of Marine Science (AIMS) is Australia’s premiere tropical marine research agency. They play a pivotal role in providing large-scale, long-term and world-class research that helps governments, industry and the wider community to make informed decisions about the management of Australia’s marine estate.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/462" + "about": "http://vocab.aodn.org.au/def/organisation/entity/462", + "display_label": "Australian Institute of Marine Science (AIMS)", + "alt_labels": [ + "Australian Institute of Marine Science (AIMS)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/642" } - ] + ], + "display_label": "Department of Industry, Innovation and Science", + "hidden_labels": [ + "Department of Industry, Innovation and Science" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/635" }, { "label": "Department of the Environment and Energy, Australian Government", @@ -2324,9 +4272,27 @@ { "label": "Australian Antarctic Data Centre (AADC), Australian Antarctic Division (AAD), Department of the Environment and Energy, Australian Government", "definition": "The Australian Antarctic Data Centre (AADC) was established in 1996 to provide long-term management of Australia's Antarctic data, thereby improving the value and impact of our scientific activities. The Data Centre is committed to the free and open exchange of scientific data, consistent with the Antarctic Treaty's position that to the greatest extent feasible and practicable scientific observations and results from Antarctica shall be exchanged and made freely available. As Australia's Antarctic Mapping agency, the AADC supports the logistical operations of the Australian Antarctic Program. The AADC also incorporates a group of quantitative research scientists who value-add to the AADC's holdings and provide analytical research capability to the Antarctic Program.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/465" + "about": "http://vocab.aodn.org.au/def/organisation/entity/465", + "display_label": "Australian Antarctic Data Centre (AADC)", + "hidden_labels": [ + "AADC" + ], + "alt_labels": [ + "Australian Antarctic Data Centre (AADC), Australian Antarctic Division (AAD)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/640" } - ] + ], + "display_label": "Australian Antarctic Division (AAD)", + "hidden_labels": [ + "AAD" + ], + "alt_labels": [ + "Australian Antarctic Division (AAD)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/639" }, { "label": "Bureau of Meteorology (BOM), Department of the Environment and Energy, Australian Government", @@ -2336,46 +4302,87 @@ { "label": "National Tidal Unit (NTU)", "definition": "Australian national facility operated since January 2004 by the Bureau of Meteorology. Until then it was known as the National Tidal Facility of Australia operated by Flinders University.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/12" + "about": "http://vocab.aodn.org.au/def/organisation/entity/12", + "hidden_labels": [ + "NTU" + ], + "is_latest_label": true } - ] + ], + "display_label": "Australian Bureau of Meteorology", + "hidden_labels": [ + "BOM", + "Bureau of Meteorology (BOM)" + ], + "alt_labels": [ + "Australian Bureau of Meteorology" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/638" }, { "label": "Parks Australia, Department of the Environment and Energy, Australian Government", "definition": "Parks Australia is part of the federal environment portfolio. It supports the Director of National Parks who has responsibility under federal environment law for six Commonwealth national parks, the Australian National Botanic Gardens and Australian Marine Parks.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/572" + "about": "http://vocab.aodn.org.au/def/organisation/entity/572", + "display_label": "Parks Australia", + "alt_labels": [ + "Parks Australia" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/637" } - ] + ], + "display_label": "Department of the Environment and Energy", + "hidden_labels": [ + "Department of the Environment and Energy" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/634" }, { "label": "Cooperative Research Centre for Spatial Information (CRCSI)", "definition": "CRCSI is an international research and development centre set up in 2003 under the Australian Government Business Cooperative Research Centres Programme. They conduct user-driven research in spatial information that address issues of national importance. They also perform commissioned research projects for key clients. Their partners, from both Australia and New Zealand, include federal and state government agencies, universities and over 50 companies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/519" + "about": "http://vocab.aodn.org.au/def/organisation/entity/519", + "is_latest_label": true }, { "label": "Great Barrier Reef Marine Park Authority (GBRMPA)", "definition": "The Great Barrier Reef Marine Park Authority advises the Australian Government on the care and development of the Great Barrier Reef Marine Park. The Authority provides for the long-term protection, ecologically sustainable use, understanding and enjoyment of the Great Barrier Reef for all Australian communities through the care and development of the Marine Park.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/524" + "about": "http://vocab.aodn.org.au/def/organisation/entity/524", + "hidden_labels": [ + "GBRMPA" + ], + "is_latest_label": true }, { "label": "Atlas of Living Australia (ALA)", "definition": "The ALA is Australia’s national biodiversity database. Founded on the principle of data sharing – collect it once, share it, use it many times – the ALA provides free, online access to millions of occurrence records to form the most comprehensive and accessible data set on Australia’s biodiversity ever produced.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/559" + "about": "http://vocab.aodn.org.au/def/organisation/entity/559", + "hidden_labels": [ + "ALA" + ], + "is_latest_label": true }, { "label": "Terrestrial Ecosystem Research Network (TERN)", "definition": "TERN was established in late 2009 as Australia’s first Commonwealth Government NCRIS grant-funded research infrastructure to deliver a national terrestrial ecosystem observatory providing standardised and integrated measures of changes in Australia’s land-based ecosystem biodiversity. The goal of TERN is to provide open access for researchers to Australia’s land-based ecosystem monitoring infrastructure, data and research tools and thus contribute to a broader understanding and long-term sustainable management of Australia’s ecosystems.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/560" + "about": "http://vocab.aodn.org.au/def/organisation/entity/560", + "is_latest_label": true }, { "label": "Bioplatforms Australia", "definition": "Bioplatforms Australia enables Australian life science research by investing in state-of-the-art infrastructure and associated expertise in the specialist fields of genomics, proteomics, metabolomics and bioinformatics. Investment funding has been provided through the Commonwealth Government National Collaborative Research Infrastructure Strategy (NCRIS), the 2009 EIF Super Science Initiative and the Collaborative Research Infrastructure Scheme. Co-investments have also been made by State Governments, research institutions and commercial entities. Infrastructure investments are hosted by our Australia-wide network of leading universities and research institutions which ensure broad access through contracted services and research collaborations.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/571" + "about": "http://vocab.aodn.org.au/def/organisation/entity/571", + "is_latest_label": true }, { "label": "Fisheries Research and Development Corporation (FRDC)", "definition": "The FRDC invests in research, development and extension activities to increase economic, social and environmental benefits for Australian fishing and aquaculture, and the wider community.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/612" + "about": "http://vocab.aodn.org.au/def/organisation/entity/612", + "hidden_labels": [ + "FRDC" + ], + "is_latest_label": true }, { "label": "Department of Industry, Science, Energy and Resources, Australian Government", @@ -2390,12 +4397,18 @@ { "label": "CSIRO Land and Water", "definition": "A provider of innovative research solutions to the most significant land, water and ecosystem management challenges.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/16" + "about": "http://vocab.aodn.org.au/def/organisation/entity/16", + "is_latest_label": true }, { "label": "CSIRO Marine and Atmospheric Research (CMAR)", "definition": "ConceptDescription", - "about": "http://vocab.aodn.org.au/def/organisation/entity/17" + "about": "http://vocab.aodn.org.au/def/organisation/entity/17", + "hidden_labels": [ + "CMAR" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/18" }, { "label": "CSIRO Oceans and Atmosphere", @@ -2405,28 +4418,64 @@ { "label": "Information and Data Centre, CSIRO Oceans and Atmosphere", "definition": "The Data Centre is a central assembly and management point for much of the vessel-collected (ship) data collected over the past 25+ years, plus related datasets such as those collected via moored instrument arrays (moorings) in the Australasian region. We also administer and maintain a range of data management systems and tools which include a central \"Data Warehouse\", accessed via a custom Data Trawler application; \"MarLIN\" (Marine Laboratories Information Network), the Divisional data directory (metadatabase), which contains descriptions of many of the Division's datasets (not just those held by the Data Centre); \"CAAB\" (Codes for Australian Aquatic Biota), a master species database which provides names and codes for some 25,000 marine species which occur in Australian waters; and the \"C-squares\" Concise Spatial Query and Representation System, used within data Centre applications and also accessible as a data indexing system and web mapping service to external users. The Data Centre also curates marine datasets collected by the (former) Franklin and (current) Southern Surveyor National Facility research vessels, which are integrated with our Divisional holdings for the purpose of data description, curation, access, and dissemination. The Oceans & Atmosphere organisation was known initially as \"CSIRO Oceans & Atmosphere Flagship\", however in 2015 \"Flagship\" was removed from the name.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/19" + "about": "http://vocab.aodn.org.au/def/organisation/entity/19", + "display_label": "Information and Data Centre", + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/623" } - ] + ], + "display_label": "CSIRO Oceans and Atmosphere", + "alt_labels": [ + "CSIRO Oceans & Atmosphere - Hobart", + "CSIRO Oceans and Atmosphere - Aspendale", + "CSIRO Oceans and Atmosphere - Black Mountain", + "CSIRO Oceans and Atmosphere - Dutton Park", + "CSIRO Oceans and Atmosphere - Floreat", + "CSIRO Oceans and Atmosphere - Hobart", + "CSIRO Oceans and Atmosphere - IOMRC Crawley", + "CSIRO Oceans and Atmosphere - St Lucia" + ], + "is_latest_label": true }, { "label": "Information and Data Centre (IDC), CSIRO National Collections and Marine Infrastructure (NCMI)", "definition": "The Information and Data Centre (IDC) at CSIRO National Collections and Marine Infrastructure (NCMI), Australia manages most of the CSIRO vessel-collected (ship) data collected over the past 30 years, as well as such related datasets as those collected with moored instrument arrays (moorings) in the Australasian region. The IDC also develops and and maintains a range of data management systems and tools which include a central “Data Warehouse”, accessed via a custom Data Trawler application; Marlin the GeoNetwork data catalogue, which contains descriptions of many Marine National Facility (MNF) and Oceans and Atmosphere (O&A) datasets (not just those held by the Data Centre); “CAAB” (Codes for Australian Aquatic Biota), a master species database which provides names and codes for some 44,000 marine species which occur in Australian and adjacent waters.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/623" + "about": "http://vocab.aodn.org.au/def/organisation/entity/623", + "hidden_labels": [ + "IDC", + "Information and Data Centre (IDC)" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "CSIRO" + ], + "is_latest_label": true }, { "label": "Geoscience Australia (GA), Department of Industry, Science, Energy and Resources, Australian Government", "definition": "Geoscience Australia is a prescribed Australian Government agency within the Industry, Science, Energy and Resources portfolio. Geoscience Australia applies geoscience to Australia's most important challenges by providing geoscience information, services and capability to the Australian Government, industry and stakeholders.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/641" + "about": "http://vocab.aodn.org.au/def/organisation/entity/641", + "display_label": "Commonwealth of Australia (Geoscience Australia)", + "alt_labels": [ + "Commonwealth of Australia (Geoscience Australia)" + ], + "is_latest_label": true }, { "label": "Australian Institute of Marine Science (AIMS), Department of Industry, Science, Energy and Resources, Australian Government", "definition": "The Australian Institute of Marine Science (AIMS) is Australia’s premiere tropical marine research agency. They play a pivotal role in providing large-scale, long-term and world-class research that helps governments, industry and the wider community to make informed decisions about the management of Australia’s marine estate.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/642" + "about": "http://vocab.aodn.org.au/def/organisation/entity/642", + "display_label": "Australian Institute of Marine Science (AIMS)", + "alt_labels": [ + "Australian Institute of Marine Science (AIMS)" + ], + "is_latest_label": true } - ] + ], + "display_label": "Department of Industry, Science, Energy and Resources", + "is_latest_label": true }, { "label": "Department of Agriculture, Water and the Environment (DAWE), Australian Government", @@ -2436,12 +4485,23 @@ { "label": "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES), Department of Agriculture, Water and the Environment (DAWE), Australian Government", "definition": "The Australian Bureau of Agricultural and Resource Economics and Sciences is a research organisation within the Australian Government Department of Agriculture, Water and the Environment. ABARES was formed following the merger of the Australian Bureau of Agricultural and Resource Economics (ABARE) and the Bureau of Rural Sciences (RBS) in 2010.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/636" + "about": "http://vocab.aodn.org.au/def/organisation/entity/636", + "display_label": "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES)", + "hidden_labels": [ + "ABARES", + "Australian Bureau of Agriculture and Resource Economics and Sciences (ABARES)" + ], + "is_latest_label": true }, { "label": "Parks Australia, Department of Agriculture, Water and the Environment (DAWE), Australian Government", "definition": "Parks Australia is part of the federal environment portfolio. It supports the Director of National Parks who has responsibility under federal environment law for six Commonwealth national parks, the Australian National Botanic Gardens and Australian Marine Parks.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/637" + "about": "http://vocab.aodn.org.au/def/organisation/entity/637", + "display_label": "Parks Australia", + "alt_labels": [ + "Parks Australia" + ], + "is_latest_label": true }, { "label": "Bureau of Meteorology (BOM), Department of Agriculture, Water and the Environment (DAWE), Australian Government", @@ -2451,9 +4511,22 @@ { "label": "National Tidal Unit (NTU)", "definition": "Australian national facility operated since January 2004 by the Bureau of Meteorology. Until then it was known as the National Tidal Facility of Australia operated by Flinders University.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/12" + "about": "http://vocab.aodn.org.au/def/organisation/entity/12", + "hidden_labels": [ + "NTU" + ], + "is_latest_label": true } - ] + ], + "display_label": "Australian Bureau of Meteorology", + "hidden_labels": [ + "BOM", + "Bureau of Meteorology (BOM)" + ], + "alt_labels": [ + "Australian Bureau of Meteorology" + ], + "is_latest_label": true }, { "label": "Australian Antarctic Division (AAD), Department of Agriculture, Water and the Environment (DAWE), Australian Government", @@ -2463,11 +4536,29 @@ { "label": "Australian Antarctic Data Centre (AADC), Australian Antarctic Division (AAD), Department of Agriculture, Water and the Environment (DAWE), Australian Government", "definition": "The Australian Antarctic Data Centre (AADC) was established in 1996 to provide long-term management of Australia's Antarctic data, thereby improving the value and impact of our scientific activities. The Data Centre is committed to the free and open exchange of scientific data, consistent with the Antarctic Treaty's position that to the greatest extent feasible and practicable scientific observations and results from Antarctica shall be exchanged and made freely available. As Australia's Antarctic Mapping agency, the AADC supports the logistical operations of the Australian Antarctic Program. The AADC also incorporates a group of quantitative research scientists who value-add to the AADC's holdings and provide analytical research capability to the Antarctic Program.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/640" + "about": "http://vocab.aodn.org.au/def/organisation/entity/640", + "display_label": "Australian Antarctic Data Centre (AADC)", + "hidden_labels": [ + "AADC" + ], + "alt_labels": [ + "Australian Antarctic Data Centre (AADC), Australian Antarctic Division (AAD)" + ], + "is_latest_label": true } - ] + ], + "display_label": "Australian Antarctic Division (AAD)", + "hidden_labels": [ + "AAD" + ], + "alt_labels": [ + "Australian Antarctic Division (AAD)" + ], + "is_latest_label": true } - ] + ], + "display_label": "Department of Agriculture, Water and the Environment (DAWE)", + "is_latest_label": true } ] }, @@ -2479,7 +4570,11 @@ { "label": "Council of Heads of Australian Faunal Collections (CHAFC)", "definition": "Council of Heads of Australian Faunal Collections Incorporated (ACT) is the peak body representing Australia’s publicly accessible zoological and palaeontological collections, primarily within the jurisdiction of regional, state and territory, and commonwealth governments.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/51" + "about": "http://vocab.aodn.org.au/def/organisation/entity/51", + "hidden_labels": [ + "CHAFC" + ], + "is_latest_label": true }, { "label": "Northern Territory Government", @@ -2489,19 +4584,39 @@ { "label": "Department of Environment and Natural Resources (DENR), Northern Territory Government", "definition": "The Department of Environment and Natural Resources was established by the Northern Territory Government in September 2016. The government created the department to bring together many of the key functions that foster and protect the environment and natural resources in the Northern Territory.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/487" + "about": "http://vocab.aodn.org.au/def/organisation/entity/487", + "display_label": "Department of Environment and Natural Resources (DENR)", + "hidden_labels": [ + "DENR", + "Department of Environment and Natural Resources (DENR)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/664" }, { "label": "Department of Industry, Tourism and Trade (DITT), Northern Territory Government", "definition": "The Department of Industry, Tourism and Trade was established in September 2020 as the Northern Territory Public Sector's coordinating agency for economic and industry development.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/657" + "about": "http://vocab.aodn.org.au/def/organisation/entity/657", + "display_label": "Department of Industry, Tourism and Trade (DITT)", + "hidden_labels": [ + "DITT", + "Department of Industry, Tourism and Trade" + ], + "is_latest_label": true }, { "label": "Department of Environment, Parks and Water Security (DEPWS), Northern Territory Government", "definition": "The Department of Environment, Parks and Water Security (DEPWS) was established by the Northern Territory (NT) Government on 8 September 2020. This new department combined the functions of the previous Department of Environment and Natural Resources and the Parks and Wildlife Commission from the former Department of Tourism, Sport and Culture (DTSC).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/664" + "about": "http://vocab.aodn.org.au/def/organisation/entity/664", + "display_label": "Department of Environment, Parks and Water Security (DEPWS)", + "hidden_labels": [ + "DEPWS", + "Department of Environment, Parks and Water Security (DEPWS)" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Victorian Government", @@ -2511,44 +4626,74 @@ { "label": "Museum Victoria", "definition": "Museum Victoria is the state museum for the state of Victoria. It is Australia's largest public museum organisation. Museum Victoria’s origins date back to 1854, with the founding of the National Museum of Victoria and the establishment, in 1870, of the Industrial and Technological Museum of Victoria (later known as the Science Museum of Victoria). By proclamation of the Museums Act 1983 (Vic.), these two institutions were amalgamated to form what is known today as Museum Victoria, governed by the Museums Board of Victoria. In 1996, Museum Victoria took over custodianship of the World Heritage listed Royal Exhibition Building.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/102" + "about": "http://vocab.aodn.org.au/def/organisation/entity/102", + "is_latest_label": true }, { "label": "Victorian Institute of Marine Sciences (VIMS)", "definition": "The Victorian Institute of Marine Sciences (VIMS) was established by the Victorian Institute of Marine Sciences Act 1974 as a body corporate, its objects including: 'to provide facilities for and foster, carry on and support scientific research and technological development in all branches of learning concerning or touching upon marine sciences, including but without limiting the generality of that expression, the sea, the sea-bed, sea shores, and the resources and inhabitants thereof and mankind's relationship with the use of the sea'. VIMS began operations in 1978. In July 1996 the Victorian Institute of Marine Sciences, along with two other marine and freshwater groups, became a part of the Marine and Freshwater Resources Institute (MAFRI). In 1998 the decision was made to repeal the Victorian Institute of Marine Sciences Act 1974 and to include the Institute as part of the Fisheries Division of the Department of Natural Resources and Environment. In 2002 it was handed over to the newly formed Department of Primary Industries. This Department is now known as the Department of Environment, Land, Water and Planning (DELWP), as of 2014 .(Courtesy of Encyclopedia of Australian Science)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/127" + "about": "http://vocab.aodn.org.au/def/organisation/entity/127", + "hidden_labels": [ + "VIMS" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/54" }, { "label": "Department of Environment, Land, Water and Planning (DELWP), Victorian Government", "definition": "The Department of Environment, Land, Water and Planning replaced the former government's Department of Environment and Primary Industries, in 2014. The department is tasked with creating liveable, inclusive and sustainable communities, with a focus on caring for and protecting the environment, and helping to respond to climate change through risk mitigation and adaptation strategies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/54" + "about": "http://vocab.aodn.org.au/def/organisation/entity/54", + "display_label": "Department of Environment, Land, Water and Planning (DELWP)", + "hidden_labels": [ + "DELWP", + "Department of Environment, Land, Water and Planning (DELWP)" + ], + "is_latest_label": true }, { "label": "Environment Protection Authority Victoria (EPA), Victorian Government", "definition": "Environment Protection Authority (EPA) Victoria was established in 1971 under the auspices of the Environment Protection Act 1970. It's role is to be an effective environmental regulator and an influential authority on environmental impacts, with a vision for a healthy environment that supports a liveable and prosperous Victoria.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/55" + "about": "http://vocab.aodn.org.au/def/organisation/entity/55", + "display_label": "Environment Protection Authority Victoria (EPA)", + "hidden_labels": [ + "EPA", + "EPA Vic", + "Environment Protection Authority Victoria (EPA)" + ], + "is_latest_label": true }, { "label": "Department of Primary Industries (DPI), Victorian Government", "definition": "The Department of Primary Industries was a government agency responsible for agriculture, biosecurity, fisheries, earth resources, energy and forestry policy and programs in the State of Victoria, Australia. The Department of Primary Industries (DPI) was established in 2002. It was formed from the split of the Department of Natural Resources and Environment (1996–2002) which was divided into two separate entities: The Department of Sustainability and Environment and The Department of Primary Industries. The Department of Primary Industries was merged with the Department of Sustainability and Environment to form the Department of Environment and Primary Industries (Victoria) in April 2013. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/57" + "about": "http://vocab.aodn.org.au/def/organisation/entity/57", + "display_label": "Department of Primary Industries (DPI)", + "hidden_labels": [ + "DPI", + "Department of Primary Industries (DPI)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/54" }, { "label": "Gippsland Water", "definition": "Gippsland Water look after water and wastewater (sewage) services in Central Gippsland, Victoria,", - "about": "http://vocab.aodn.org.au/def/organisation/entity/86" + "about": "http://vocab.aodn.org.au/def/organisation/entity/86", + "is_latest_label": true }, { "label": "Gippsland Ports", "definition": "Gippsland Ports was established in 1996 to provide a regional service to the local community, visitors and other user groups. Gippsland Ports is the local Authority responsible for the application of the Marine Act and other related legislation for the five local ports and two waterways.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/613" + "about": "http://vocab.aodn.org.au/def/organisation/entity/613", + "is_latest_label": true }, { "label": "Parks Victoria", "definition": "Parks Victoria was established in December 1996 as a statutory authority, reporting to the Victorian Minister for Environment and Climate Change. It is responsible for managing a diverse estate of more than 4 million hectares including 3,000 land and marine parks and reserves.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/624" + "about": "http://vocab.aodn.org.au/def/organisation/entity/624", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Queensland Government", @@ -2558,39 +4703,79 @@ { "label": "Queensland Museum", "definition": "Queensland Museum is a museum of natural history, cultural heritage, science and human achievement that tells the changing story of Queensland.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/114" + "about": "http://vocab.aodn.org.au/def/organisation/entity/114", + "is_latest_label": true }, { "label": "Department of Science, Information Technology and Innovation (DSITI), Queensland Government", "definition": "The Department aims to: develop and coordinate science and ICT policy across the Queensland Government; develop a whole-of-government approach on innovation as a key enabler of the knowledge economy; support and invest in research and development to meet the state's future challenges; build a strong relationship with key innovation and ICT industry stakeholders; improve government service delivery through efficient use of information and communications technology services and shared services; help Queensland businesses and consumers to benefit from current and emerging digital technologies and services; and, manage the state's intellectual property policy and assets. The functions of this department were transferred to multiple other departments, of which the Department of Environment and Science is one of.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/452" + "about": "http://vocab.aodn.org.au/def/organisation/entity/452", + "display_label": "Department of Science, Information Technology and Innovation (DSITI)", + "hidden_labels": [ + "DSITI", + "Department of Science, Information Technology and Innovation (DSITI)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/535" }, { "label": "Department of Environment and Heritage Protection, Queensland Government", "definition": "This department is responsible for managing the health of the environment to protect Queensland’s unique ecosystems, including its landscapes and waterways, as well as its native plants and animals and biodiversity.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/58" + "about": "http://vocab.aodn.org.au/def/organisation/entity/58", + "display_label": "Department of Environment and Heritage Protection", + "hidden_labels": [ + "Department of Environment and Heritage Protection" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/535" }, { "label": "Department of Agriculture and Fisheries, Queensland Government", "definition": "The Department's work spans across the agriculture, fisheries and forestry industries and includes provision of agricultural research, development and extension for the management of biological, animal welfare and product integrity risks.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/59" + "about": "http://vocab.aodn.org.au/def/organisation/entity/59", + "display_label": "Department of Agriculture and Fisheries", + "hidden_labels": [ + "Department of Agriculture and Fisheries" + ], + "is_latest_label": true }, { "label": "Department of National Parks, Sport and Racing (NPSR), Queensland Government", "definition": "The Department of National Parks, Sport and Racing key priorities are to: protect and manage our parks, forests and the Great Barrier Reef for current and future generations; Support and encourage active participation in physical activity; and Support the Queensland racing industry. This department is now split between the new Departments of Environment and Science, and Sport and Recreation.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/488" + "about": "http://vocab.aodn.org.au/def/organisation/entity/488", + "display_label": "Department of National Parks, Sport and Racing (NPSR)", + "hidden_labels": [ + "Department of National Parks, Sport and Racing (NPSR)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/535" }, { "label": "Environmental Protection Agency (EPA), Queensland Government", "definition": "Queensland's Environmental Protection Agency (abbreviated to EPA) was for some time a separate department of the Queensland Government, and, following 2009 State elections, became a part of the Government's larger Department of Environment and Resource Management. Its role was to manage climate change and protect the environment on behalf of the Queensland Government.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/489" + "about": "http://vocab.aodn.org.au/def/organisation/entity/489", + "display_label": "Environmental Protection Agency (EPA)", + "hidden_labels": [ + "EPA", + "EPA Qld", + "Environmental Protection Agency (EPA)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/58" }, { "label": "Department of Environment and Science (DES), Queensland Government", "definition": "The Department of Environment and Science was formed by the amalgamation of the Department of Environment and Heritage Protection; Department of National Parks, Sport and Racing; and the Department of Science, Information Technology and Innovation. It also incorporates the Office of the Queensland Chieft Scientist, Arts Queensland and the Corporate Administration Agency. The Department of Environment and Science recognises the enormous value a clean environment, innovative society and economy, and vibrant culture makes to our lives. It was established in December 2017.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/535" + "about": "http://vocab.aodn.org.au/def/organisation/entity/535", + "display_label": "Department of Environment and Science (DES)", + "hidden_labels": [ + "DES", + "Department of Environment and Science (DES)" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "New South Wales Government", @@ -2605,71 +4790,141 @@ { "label": "Australian Museum Research Institute (AMRI)", "definition": "The Australian Museum Research Institute (AMRI) research focuses on some of today’s major challenges: climate change impacts on biodiversity; the detection and biology of pest species; understanding what constitutes and influences effective biodiversity conservation.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/645" + "about": "http://vocab.aodn.org.au/def/organisation/entity/645", + "hidden_labels": [ + "AMRI" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Department of Environment and Climate Change (DECC), New South Wales Government", "definition": "This department became part of the former Department of Environment, Climate Change and Water (DECCW). After 2011, DECCW was broken up with its responsibilities split between the new Office of Environment and Heritage and the residual functions managed by the Industry, Innovation and Investment Division of the Department of Trade and Investment, Regional Infrastructure and Services. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/344" + "about": "http://vocab.aodn.org.au/def/organisation/entity/344", + "display_label": "Department of Environment and Climate Change (DECC)", + "hidden_labels": [ + "DECC", + "Department of Environment and Climate Change (DECC)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/345" }, { "label": "Office of Environment and Heritage (OEH), New South Wales Government", "definition": "The Office of Environment and Heritage (OEH) is a separate agency within the Planning and Environment cluster. OEH was formed on 4 April 2011 and works to protect and conserve the NSW environment, including the natural environment, Aboriginal country, culture and heritage and our built heritage, and manages NSW national parks and reserves.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/345" + "about": "http://vocab.aodn.org.au/def/organisation/entity/345", + "display_label": "Office of Environment and Heritage (OEH)", + "hidden_labels": [ + "OEH", + "Office of Environment and Heritage (OEH)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/614" }, { "label": "Food Authority, New South Wales Government", "definition": "The NSW Food Authority is the government organisation that helps ensure food in NSW is safe and correctly labelled.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/346" + "about": "http://vocab.aodn.org.au/def/organisation/entity/346", + "display_label": "Food Authority", + "hidden_labels": [ + "Food Authority" + ], + "is_latest_label": true }, { "label": "Sydney Water", "definition": "Sydney Water is Australia's largest water utility. Their area of operations covers 12,700 km2 and includes Sydney, the Illawarra and the Blue Mountains regions. It is a statutory State Owned Corporation, wholly owned by the New South Wales Government.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/453" + "about": "http://vocab.aodn.org.au/def/organisation/entity/453", + "is_latest_label": true }, { "label": "NSW Water Information, New South Wales Government", "definition": "The NSW Government WaterInfo website contains a range of provisional data from a range of State Government agencies concerning NSW rivers and water bodies. This data is generally used for the management of our rivers, storages and the surrounding environment. This organisation is now part of Water NSW.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/60" + "about": "http://vocab.aodn.org.au/def/organisation/entity/60", + "display_label": "NSW Water Information", + "hidden_labels": [ + "NSW Water Information" + ], + "is_latest_label": false }, { "label": "Land and Property Information, New South Wales Government", "definition": "Land and Property Information (LPI), a division of the Office of Finance and Services, is the key provider of land information services in New South Wales.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/61" + "about": "http://vocab.aodn.org.au/def/organisation/entity/61", + "display_label": "Land and Property Information", + "hidden_labels": [ + "Land and Property Information" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/607" }, { "label": "Department of Primary Industries (DPI), New South Wales Government", "definition": "The Department of Primary Industries is a division within NSW Trade and Investment and works to develop and sustain diverse, profitable food and fibre industries, and ensures best practice management of our natural resources.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/62" + "about": "http://vocab.aodn.org.au/def/organisation/entity/62", + "display_label": "Department of Primary Industries (DPI)", + "hidden_labels": [ + "DPI", + "Department of Primary Industries (DPI)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/614" }, { "label": "Manly Hydraulics Laboratory (MHL)", "definition": "Manly Hydraulics Laboratory (MHL) provides specialist services in the areas of water, sewer, stormwater, irrigation, coastal and environmental solutions including physical and numerical modelling investigations and delivery of extensive data collection programs. MHL is a business unit within NSW Public Works, a Division of the NSW Office of Finance and Services.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/96" + "about": "http://vocab.aodn.org.au/def/organisation/entity/96", + "hidden_labels": [ + "MHL" + ], + "is_latest_label": true }, { "label": "NSW Land Registry Services (NSW LRS)", "definition": "NSW Land Registry Services operates the NSW land titles registry for the State Government and the people of New South Wales. This company was formerly known as Land and Property Information.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/607" + "about": "http://vocab.aodn.org.au/def/organisation/entity/607", + "hidden_labels": [ + "NSW LRS" + ], + "is_latest_label": true }, { "label": "Department of Planning, Industry and Environment (DPIE), New South Wales Government", "definition": "The Department of Planning, Industry and Environment brings together specialists in urban and regional planning, natural resources, industry, environment, heritage, Aboriginal and social housing, and regional New South Wales. The department brings together the functions from the former Planning and Environment and Industry clusters.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/614" + "about": "http://vocab.aodn.org.au/def/organisation/entity/614", + "display_label": "Department of Planning, Industry and Environment (DPIE)", + "hidden_labels": [ + "DPIE", + "Department of Planning, Industry and Environment (DPIE)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/661" }, { "label": "Department of Regional NSW, New South Wales Government", "definition": "The New South Wales Department of Regional NSW is a department of the New South Wales Government responsible for the state's regional issues, building resilient regional economies and communities, strengthening primary industries, managing the use of regional land and overseeing the state’s mineral and mining resources. It also administers the Department of Primary Industries (DPI). The department was established on 2 April 2020. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/660" + "about": "http://vocab.aodn.org.au/def/organisation/entity/660", + "display_label": "Department of Regional NSW", + "hidden_labels": [ + "Department of Regional NSW" + ], + "is_latest_label": true }, { "label": "Department of Planning and Environment (DPE), New South Wales Government", "definition": "The New South Wales Department of Planning and Environment (DPE) is a department of the New South Wales Government, responsible for effective and sustainable planning to support the growth in the state of New South Wales, Australia. The department was renamed from the Department of Planning, Industry and Environment (DPIE) on 21 December 2021, when development of industry function was transferred to the new Department of Regional NSW. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/661" + "about": "http://vocab.aodn.org.au/def/organisation/entity/661", + "display_label": "Department of Planning and Environment (DPE)", + "hidden_labels": [ + "DPE", + "Department of Planning and Environment" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Western Australian Government", @@ -2679,42 +4934,87 @@ { "label": "Western Australian Land Information System (WALIS)", "definition": "Established by the WA Government in 1981, WALIS is responsible for coordinating across-government access and delivery of spatial information (marine, coastal and terrestrial). WALIS drives innovative partnerships and works with business, academia and the community to make it easier to find, use and improve location information for WA. WALIS provides a Data Discovery and Access service using the Shared Location Information Platform (SLIP).", - "about": "http://vocab.aodn.org.au/def/organisation/entity/128" + "about": "http://vocab.aodn.org.au/def/organisation/entity/128", + "hidden_labels": [ + "WALIS" + ], + "is_latest_label": true }, { "label": "Western Australian Marine Science Institution (WAMSI)", "definition": "The Western Australian Marine Science Institution (WAMSI) is an Australian marine research organisation, and is a collaboration between State, Federal, industry and academic entities.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/129" + "about": "http://vocab.aodn.org.au/def/organisation/entity/129", + "hidden_labels": [ + "WAMSI" + ], + "is_latest_label": true }, { "label": "Western Australian Museum (WAM)", "definition": "The Western Australian Museum is the state’s premier cultural organisation, housing WA’s scientific and cultural collection. It has six main sites: one in Perth, two in Fremantle (Maritime and Shipwreck Galleries), and one each in Albany, Geraldton, and Kalgoorlie-Boulder.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/130" + "about": "http://vocab.aodn.org.au/def/organisation/entity/130", + "hidden_labels": [ + "WAM" + ], + "is_latest_label": true }, { "label": "Landgate's Satellite Remote Sensing Services (SRSS), Western Australian Government", "definition": "Landgate's Satellite Remote Sensing Services (SRSS) is a dedicated remote sensing facility. They provide a full range of remote sensing services – from direct acquisition of satellite data, to processing of data and then delivering that data to government and business via our products and services.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/177" + "about": "http://vocab.aodn.org.au/def/organisation/entity/177", + "display_label": "Landgate's Satellite Remote Sensing Services (SRSS)", + "hidden_labels": [ + "Landgate's Satellite Remote Sensing Services (SRSS)", + "SRSS" + ], + "is_latest_label": true }, { "label": "Department of Fisheries (DoF), Western Australian Government", "definition": "The Department of Fisheries’ primary responsibility is to conserve, develop and manage the fish and aquatic resources of Western Australia to ensure there are ‘fish for the future’.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/63" + "about": "http://vocab.aodn.org.au/def/organisation/entity/63", + "display_label": "Department of Fisheries (DoF)", + "hidden_labels": [ + "Department of Fisheries (DoF)", + "DoF" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/536" }, { "label": "Department of Water (DoW), Western Australian Government", "definition": "The Department of Water is the department of the Government of Western Australia that is responsible for management of Western Australia's water resources. The department provides information to industry, technical support and professional guidance to government on the status of water and the viability of new water source developments. It also issues licences for artesian groundwater wells throughout the State. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/64" + "about": "http://vocab.aodn.org.au/def/organisation/entity/64", + "display_label": "Department of Water (DoW)", + "hidden_labels": [ + "DOW", + "Department of Water (DoW)" + ], + "is_latest_label": false }, { "label": "Department of Environment and Conservation (DEC), Western Australian Government", "definition": "The Department of Environment and Conservation (DEC) was a department of the Government of Western Australia that was responsible for implementing the state's conservation and environment legislation and regulations. It was formed on 1 July 2006 by the amalgamation of the Department of Environment (DoE) and the Department of Conservation and Land Management (CALM). The DEC was separated on 30 June 2013 forming the Department of Parks and Wildlife (DPaW) and the Department of Environment Regulation (DER) which both commenced operations on 1 July 2013. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/65" + "about": "http://vocab.aodn.org.au/def/organisation/entity/65", + "display_label": "Department of Environment and Conservation (DEC)", + "hidden_labels": [ + "DEC", + "Department of Environment and Conservation (DEC)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/66" }, { "label": "Department of Parks and Wildlife (DPaW), Western Australian Government", "definition": "The Department of Parks and Wildlife protects and conserves the State’s natural environment on behalf of the people of Western Australia. Its key responsibilities include conserving biodiversity and managing the State’s national parks, marine parks and other reserves, which cover a total area of more than 27 million hectares. The department was established on 1 July 2013, when the former Department of Environment and Conservation was split into the Department of Parks and Wildlife and the Department of Enviroment Regulation, and is in the portfolio of the Minister for Environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/66" + "about": "http://vocab.aodn.org.au/def/organisation/entity/66", + "display_label": "Department of Parks and Wildlife (DPaW)", + "hidden_labels": [ + "DPaW", + "Department of Parks and Wildlife (DPaW)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/625" }, { "label": "Department of Environment Regulation (DER), Western Australian Government", @@ -2724,74 +5024,166 @@ { "label": "Cockburn Sound Management Council (CSMC), Department of Environment Regulation (DER), Western Australia Government", "definition": "The Cockburn Sound Management Council (CSMC) was established in August 2000 and works to implement sections 9, 10 and 11 of the State Environmental (Cockburn Sound) Policy 2005.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/68" + "about": "http://vocab.aodn.org.au/def/organisation/entity/68", + "display_label": "Cockburn Sound Management Council (CSMC)", + "hidden_labels": [ + "CSMC", + "Cockburn Sound Management Council (CSMC)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/538" } - ] + ], + "display_label": "Department of Environment Regulation (DER)", + "hidden_labels": [ + "DER", + "Department of Environment Regulation (DER)" + ], + "is_latest_label": false }, { "label": "Department of Planning and Infrastructure, Western Australian Government", "definition": "The Department for Planning and Infrastructure was a department of the Government of Western Australia that was responsible for implementing the state's planning, infrastructure and transport policies. It was formed on 1 July 2001 by the amalgamation of the Ministry for Planning and the Department of Transport. On 1 July 2009, the department was reformed into the Department of Transport and Department of Planning, with State Land Services and Pastoral Leases being transferred to the newly formed Department of Regional Development and Lands. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/69" + "about": "http://vocab.aodn.org.au/def/organisation/entity/69", + "display_label": "Department of Planning and Infrastructure", + "hidden_labels": [ + "Department of Planning and Infrastructure" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/70" }, { "label": "Department of Planning (DoP), Western Australian Government", "definition": "The Department of Planning has statewide responsibility for the planning for future communities. The department plays a vital role in improving the quality of life of all Western Australians.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/70" + "about": "http://vocab.aodn.org.au/def/organisation/entity/70", + "display_label": "Department of Planning (DoP)", + "hidden_labels": [ + "Department of Planning (DoP)", + "DoP" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/626" }, { "label": "Department of Transport (DoT), Western Australian Government", "definition": "The Department of Transport began operations on 1 July 2009, after the former Department for Planning and Infrastructure was split into 3 new agencies. The transport function is integral to business and commerce and important for social interaction and connecting communities. It's key focus is on operational transport functions and strategic transport planning and policy across the range of public and commercial transport systems that service Western Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/71" + "about": "http://vocab.aodn.org.au/def/organisation/entity/71", + "display_label": "Department of Transport (DoT)", + "hidden_labels": [ + "Department of Transport (DoT)", + "DoT" + ], + "is_latest_label": false }, { "label": "W.A. Water Corporation", "definition": "The Water Corporation is a business enterprise, owned by the WA Government and accountable to its sole shareholder, the Minister for Water. They are the principal supplier of water, wastewater and drainage services in WA.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/72" + "about": "http://vocab.aodn.org.au/def/organisation/entity/72", + "is_latest_label": true }, { "label": "Department of Conservation and Environment, West Australian Government", "definition": "A former West Australian State Government department.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/73" + "about": "http://vocab.aodn.org.au/def/organisation/entity/73", + "display_label": "Department of Conservation and Environment", + "hidden_labels": [ + "Department of Conservation and Environment" + ], + "is_latest_label": false }, { "label": "Department of Industry and Resources (DOIR), Western Australian Government", "definition": "On the 1st of January 2009, this department was combined with the Department of Consumer and Employment Protection, which were then split into three new departments, the Department of Mines and Petroleum, the Department of State Development and the Department of Commerce. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/74" + "about": "http://vocab.aodn.org.au/def/organisation/entity/74", + "display_label": "epartment of Industry and Resources (DOIR)", + "hidden_labels": [ + "DOIR", + "Department of Industry and Resources (DOIR)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/75" }, { "label": "Department of Mines and Petroleum (DMP), Western Australian Government", "definition": "The Department of Mines and Petroleum (DMP) is the State’s lead agency in attracting private investment in resources exploration and development through the provision of geoscientific information on minerals and energy resources, and management of an equitable and secure titles systems for the mining, petroleum and geothermal industries.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/75" + "about": "http://vocab.aodn.org.au/def/organisation/entity/75", + "display_label": "Department of Mines and Petroleum (DMP)", + "hidden_labels": [ + "DMP", + "Department of Mines and Petroleum (DMP)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/627" }, { "label": "Environmental Protection Authority (EPA), Western Australian Government", "definition": "The Environmental Protection Authority (EPA) was originally established in 1971. The Authority comprises five members appointed by the Governor on the recommendation of the Minister for Environment. The EPA is independent, in that it is not subject to direction by the Minister, and its advice to Government is public. EPA members are not public servants. Its operations are governed by the Environmental Protection Act 1986 which stipulates that the objective of the EPA is to: 'use its best endeavours – a) to protect the environment; and b) to prevent, control and abate pollution and environmental harm.'", - "about": "http://vocab.aodn.org.au/def/organisation/entity/76" + "about": "http://vocab.aodn.org.au/def/organisation/entity/76", + "display_label": "Environmental Protection Authority (EPA)", + "hidden_labels": [ + "EPA", + "EPA WA", + "Environmental Protection Authority (EPA)" + ], + "is_latest_label": true }, { "label": "Office of Environmental Protection Authority (OEPA), Western Australian Government", "definition": "The Office of the Environmental Protection Authority was established on 27 November 2009 to support the EPA in conducting environmental impact assessments and developing policies to protect the environment. The OEPA also monitors compliance with Ministerial conditions related to approvals.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/77" + "about": "http://vocab.aodn.org.au/def/organisation/entity/77", + "display_label": "Office of Environmental Protection Authority (OEPA)", + "hidden_labels": [ + "OEPA", + "Office of Environmental Protection Authority (OEPA)" + ], + "is_latest_label": false }, { "label": "Department of Agriculture and Food (DAFWA), Western Australian Government", "definition": "The Department of Agriculture and Food, Western Australia drives the economic development of the agriculture and food sector in Western Australia (WA), with a focus on export-led growth.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/78" + "about": "http://vocab.aodn.org.au/def/organisation/entity/78", + "display_label": "Department of Agriculture and Food (DAFWA)", + "hidden_labels": [ + "DAFWA", + "Department of Agriculture and Food (DAFWA)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/536" }, { "label": "Department of Aboriginal Affairs (DAA), Western Australian Government", "definition": "The Department engages with Aboriginal Western Australians and all levels of Government to improve the delivery of services, to facilitate the development of policy and programs which deliver sustainable economic, environmental and social benefits to Aboriginal communities.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/79" + "about": "http://vocab.aodn.org.au/def/organisation/entity/79", + "display_label": "Department of Aboriginal Affairs (DAA)", + "hidden_labels": [ + "DAA", + "Department of Aboriginal Affairs (DAA)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/628" }, { "label": "Department of Local Government and Communities (DLGC), Western Australian Government", "definition": "The Department of Local Government and Communities is the State Government agency responsible for strengthening and supporting the local government and community sectors in Western Australia. It was established on 1 July 2013.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/80" + "about": "http://vocab.aodn.org.au/def/organisation/entity/80", + "display_label": "Department of Local Government and Communities (DLGC)", + "hidden_labels": [ + "DLGC", + "Department of Local Government and Communities (DLGC)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/628." }, { "label": "Department of Primary Industries and Regional Development (DPIRD), Western Australian Government", "definition": "The Department of Primary Industries and Regional Development was formed from the amalgamation of the Departments of Agriculture and Food, Fisheries and Regional Development in 2017. Together with staff from the state's nice Regional Development Commissions, this will provide a unified service for Western Australia's primary industries and regions.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/536" + "about": "http://vocab.aodn.org.au/def/organisation/entity/536", + "display_label": "Department of Primary Industries and Regional Development (DPIRD)", + "hidden_labels": [ + "DPIRD", + "Department of Primary Industries and Regional Development (DPIRD)" + ], + "is_latest_label": true }, { "label": "Department of Water and Environmental Regulation (DWER), Western Australian Government", @@ -2801,41 +5193,85 @@ { "label": "Cockburn Sound Management Council (CSMC), Department of Water and Environment Regulation (DWER), Western Australia Government", "definition": "The Cockburn Sound Management Council (CSMC) was established in August 2000 and works to implement sections 9, 10 and 11 of the State Environmental (Cockburn Sound) Policy 2005.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/538" + "about": "http://vocab.aodn.org.au/def/organisation/entity/538", + "display_label": "Cockburn Sound Management Council (CSMC)", + "hidden_labels": [ + "CSMC", + "Cockburn Sound Management Council (CSMC)" + ], + "is_latest_label": true } - ] + ], + "display_label": "Department of Water and Environmental Regulation (DWER)", + "hidden_labels": [ + "DWER", + "Department of Water and Environmental Regulation (DWER)" + ], + "is_latest_label": true }, { "label": "Department of Local Government, Sport and Cultural Industries (DLGSC), Western Australian Government", "definition": "The Department of Local Government, Sport and Cultural Industries was created by the merger of the former Department of Local Government and Communities and Department of Culture and the Arts in 2017.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/628" + "about": "http://vocab.aodn.org.au/def/organisation/entity/628", + "display_label": "Department of Local Government, Sport and Cultural Industries (DLGSC)", + "hidden_labels": [ + "DLGSC", + "Department of Local Government, Sport and Cultural Industries (DLGSC)" + ], + "is_latest_label": true }, { "label": "Department of Biodiversity, Conservation and Attractions (DBCA), Western Australian Government", "definition": "The Department of Biodiversity, Conservation and Attractions (DBCA) is the Western Australian government department responsible for managing lands and waters described in the Conservation and Land Management Act 1984, the Rottnest Island Authority Act 1987, the Swan and Canning Rivers Management Act 2006, the Botanic Gardens and Parks Authority Act 1998, and the Zoological Parks Authority Act 2001, and implementing the state's conservation and environment legislation and regulations. The Department reports to the Minister for Environment and the Minister for Tourism. DBCA was formed on 1 July 2017 by the merger of the Department of Parks and Wildlife (DPaW), the Botanic Gardens and Parks Authority, the Zoological Parks Authority and the Rottnest Island Authority.[1] The former DPaW became the Parks and Wildlife Service. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/625" + "about": "http://vocab.aodn.org.au/def/organisation/entity/625", + "display_label": "Department of Biodiversity, Conservation and Attractions (DBCA)", + "hidden_labels": [ + "DBCA", + "Department of Biodiversity, Conservation and Attractions (DBCA)" + ], + "is_latest_label": true }, { "label": "Department of Planning, Lands and Heritage (DPLH), Western Australian Government", "definition": "The Department of Planning, Lands and Heritage is the department of the Government of Western Australia responsible for planning and managing all land use and heritage considerations within the state. The Department was formed on 28 April 2017 as a merger of the former departments of Planning, Lands Management, the Heritage Council and the heritage and land management functions of the former Department of Aboriginal Affairs. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/626" + "about": "http://vocab.aodn.org.au/def/organisation/entity/626", + "display_label": "Department of Planning, Lands and Heritage (DPLH)", + "hidden_labels": [ + "DPLH", + "Department of Planning, Lands and Heritage (DPLH)" + ], + "is_latest_label": true }, { "label": "Department of Mines, Industry Regulation and Safety (DMIRS), Western Australian Government", "definition": "The Department of Mines, Industry Regulation and Safety (DMIRS) was formed on 1 July 2017, as a result of merging the Department of Commerce and Department of Mines and Petroleum. Its mission is to support a safe, fair and responsible future for the Western Australian community, industry and resources sector.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/627" + "about": "http://vocab.aodn.org.au/def/organisation/entity/627", + "display_label": "Department of Mines, Industry Regulation and Safety (DMIRS)", + "hidden_labels": [ + "DMIRS", + "Department of Mines, Industry Regulation and Safety (DMIRS)" + ], + "is_latest_label": true }, { "label": "Department of Jobs, Tourism, Science and Innovation (DJTSI), Western Australian Government", "definition": "The Department of Jobs, Tourism, Science and Innovation is a department of the Government of Western Australia. The department was formed on 1 July 2017, out of the former Department of State Development, the industry promotion and innovation functions of the Department of Commerce and the Western Australian Tourism Commission.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/655" + "about": "http://vocab.aodn.org.au/def/organisation/entity/655", + "display_label": "Department of Jobs, Tourism, Science and Innovation (DJTSI)", + "hidden_labels": [ + "DJTSI", + "Department of Jobs, Tourism, Science and Innovation" + ], + "is_latest_label": true }, { "label": "Pilbara Ports Authority", "definition": "Pilbara Ports Authority was established on 1 July 2014, as a result of the Ports Legislation Amendment Act 2014 consolidating seven of WA’s eight port authorities into four new regional port authorities. Pilbara Ports Authority was formed by the amalgamation of the former port authorities of Dampier and Port Hedland.Pilbara Ports Authority encompasses the: Port of Ashburton, Port of Dampier, Port of Port Hedland and Port of Varanus Island. Pilbara Ports Authority will also oversee the operation of the following greenfield ports: Anketell, Balla Balla, Cape Preston East, Cape Preston West and Urala.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/656" + "about": "http://vocab.aodn.org.au/def/organisation/entity/656", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "South Australian Government", @@ -2845,12 +5281,17 @@ { "label": "Primary Industries and Regions SA (PIRSA)", "definition": "Primary Industries and Regions SA (PIRSA) is a Government of South Australia agency with the vision of growing sustainable and competitive regions. PIRSA is committed to the sustainable use of the state's agriculture, wine, seafood, forestry, and food industries along with the provision of associated research, regulation, policy development and biosecurity imperatives. PIRSA leads and drives the State Government’s strategic priority of Premium Food and Wine from our Clean Environment.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/113" + "about": "http://vocab.aodn.org.au/def/organisation/entity/113", + "hidden_labels": [ + "PIRSA" + ], + "is_latest_label": true }, { "label": "SA Water", "definition": "SA Water is a government enterprise, wholly owned by the Government of South Australia and was established by the proclamation of the South Australian Water Corporation Act 1994 on 1 July 1995. It provides water and wastewater services to approximately 1.5 million people in South Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/117" + "about": "http://vocab.aodn.org.au/def/organisation/entity/117", + "is_latest_label": true }, { "label": "South Australian Research and Development Institute (SARDI)", @@ -2860,21 +5301,44 @@ { "label": "SARDI Aquatic Sciences, South Australian Research and Development Institute (SARDI)", "definition": "At SARDI Aquatic Sciences the major science programs covered are: Aquaculture, Fisheries, Inland Waters and Catchment Ecology, and Marine Ecosystems. Needs and opportunities for seafood value-adding, safety and market access are actively pursued through SARDI's Food Safety and Innovation science program dedicated to local food industries.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/123" + "about": "http://vocab.aodn.org.au/def/organisation/entity/123", + "display_label": "SARDI Aquatic Sciences", + "alt_labels": [ + "SARDI Aquatic Sciences" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "SARDI" + ], + "is_latest_label": true }, { "label": "Department of Environment, Water and Natural Resources (DEWNR), South Australian Government", "definition": "The Department of Environment, Water and Natural Resources has adopted four complementary roles: A facilitator of community involvement in and taking responsibility for the environment; A steward of the state's natural resources to enable sustainable development; The custodian of public parks, gardens, heritage places and crown land for public benefit and enjoyment, and for their intrinsic value; An authority on the state's environment and natural resources to help governments, businesses and individuals make good long-term decisions.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/486" + "about": "http://vocab.aodn.org.au/def/organisation/entity/486", + "display_label": "Department of Environment, Water and Natural Resources (DEWNR)", + "hidden_labels": [ + "DEWNR", + "Department of Environment, Water and Natural Resources (DEWNR)" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/668" }, { "label": "Environment Protection Authority (EPA), South Australian Government", "definition": "The EPA is South Australia’s independent environment protection regulator. We protect, restore and enhance the environment through the risk-based regulation of pollution, waste, noise and radiation.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/659" + "about": "http://vocab.aodn.org.au/def/organisation/entity/659", + "display_label": "Environment Protection Authority (EPA)", + "hidden_labels": [ + "EPA", + "Environment Protection Authority" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Tasmanian Government", @@ -2884,19 +5348,36 @@ { "label": "Department of Primary Industries and Fisheries, Tasmanian Government", "definition": "This former state department was merged with the Tasmanian Parks and Wildlife service, and the Government Analytical and Forensic Laboratories (GAFL) to create the Department of Primary Industries, Water and Environment (DPIPWE), in 1998. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/171" + "about": "http://vocab.aodn.org.au/def/organisation/entity/171", + "display_label": "Department of Primary Industries and Fisheries", + "hidden_labels": [ + "Department of Primary Industries and Fisheries" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/56" }, { "label": "Department of Primary Industries, Parks, Water and Environment (DPIPWE), Tasmanian Government", "definition": "The Department of Primary Industries, Parks, Water and Environment (DPIPWE) is responsible for the sustainable management and protection of Tasmania's natural and cultural assets for the benefit of Tasmanian communities and the economy.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/56" + "about": "http://vocab.aodn.org.au/def/organisation/entity/56", + "display_label": "Department of Primary Industries, Parks, Water and Environment (DPIPWE)", + "hidden_labels": [ + "DPIPWE", + "Department of Primary Industries, Parks, Water and Environment (DPIPWE)" + ], + "is_latest_label": true }, { "label": "Derwent Estuary Program (DEP)", "definition": "The Derwent Estuary Program (DEP) is a regional partnership between local governments, the Tasmanian state government, commercial and industrial enterprises, and community-based groups to restore and promote our estuary. The DEP was established in 1999.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/81" + "about": "http://vocab.aodn.org.au/def/organisation/entity/81", + "hidden_labels": [ + "DEP" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] }, @@ -2908,246 +5389,319 @@ { "label": "Murphy Australia Oil Pty Ltd", "definition": "Murphy Oil Corporation is an independent exploration and production company with a strong portfolio of global offshore and onshore assets delivering oil-weighted growth. Murphy produces oil and /or natural gas in the United States, Canada, and Malaysia and conducts exploration activities worldwide.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/100" + "about": "http://vocab.aodn.org.au/def/organisation/entity/100", + "is_latest_label": true }, { "label": "Myriax", "definition": "Myriax Software specializes in the design, development and sales of Echoview, an advanced water column data processing software solution.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/101" + "about": "http://vocab.aodn.org.au/def/organisation/entity/101", + "is_latest_label": true }, { "label": "NGIS Australia", "definition": "NGIS Australia commenced operations in 1993 from Perth, Western Australia. It is a provider of location-based technology solutions.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/103" + "about": "http://vocab.aodn.org.au/def/organisation/entity/103", + "is_latest_label": true }, { "label": "Ocean Vision Environmental Research Pty Ltd", "definition": "Ocean Vision Environmental Research is a specialised marine consultancy that provides products and services for the monitoring of marine and estuarine environments.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/104" + "about": "http://vocab.aodn.org.au/def/organisation/entity/104", + "is_latest_label": true }, { "label": "Oceanwise Expeditions", "definition": "Oceanwise was first initiated in 1998 by a group of dedicated young scientists to promote awareness of the Ningaloo environment. To achieve this goal, the group aimed to conduct original research and management initiatives in conjunction with the Department of Conservation and Environment, WA Universities and other public and private bodies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/105" + "about": "http://vocab.aodn.org.au/def/organisation/entity/105", + "is_latest_label": true }, { "label": "BMT Oceanica", "definition": "BMT Oceanica provides marine and coastal environmental consulting services.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/106" + "about": "http://vocab.aodn.org.au/def/organisation/entity/106", + "is_latest_label": true }, { "label": "Oceanographic Field Services Pty Ltd", - "about": "http://vocab.aodn.org.au/def/organisation/entity/107" + "about": "http://vocab.aodn.org.au/def/organisation/entity/107", + "is_latest_label": true }, { "label": "OMC International Pty Ltd", "definition": "OMC International, an Australian maritime engineering company, was established in 1987.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/108" + "about": "http://vocab.aodn.org.au/def/organisation/entity/108", + "is_latest_label": true }, { "label": "Pearl Producers Association Inc (PPA)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/110" + "about": "http://vocab.aodn.org.au/def/organisation/entity/110", + "hidden_labels": [ + "PPA" + ], + "is_latest_label": true }, { "label": "Pendoley Environmental Pty Ltd", "definition": "Pendoley Environmental is a Western Australian based marine conservation biology consultancy service.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/111" + "about": "http://vocab.aodn.org.au/def/organisation/entity/111", + "is_latest_label": true }, { "label": "PPK Environment and Infrastructure Pty Ltd", - "about": "http://vocab.aodn.org.au/def/organisation/entity/112" + "about": "http://vocab.aodn.org.au/def/organisation/entity/112", + "is_latest_label": true }, { "label": "Rick Scoones and Associates", - "about": "http://vocab.aodn.org.au/def/organisation/entity/115" + "about": "http://vocab.aodn.org.au/def/organisation/entity/115", + "is_latest_label": true }, { "label": "RPS MetOcean Pty Ltd", "definition": "\"RPS MetOcean designs and implements sophisticated meteorological and oceanographic measurement programs to obtain reliable information on winds, waves, tides, currents and seawater properties. \nRPS MetOcean's experienced staff are skilled in ocean and environmental engineering, electronics, computing and mathematics, numerical modelling, data analysis, technical reporting and project management.\"", - "about": "http://vocab.aodn.org.au/def/organisation/entity/116" + "about": "http://vocab.aodn.org.au/def/organisation/entity/116", + "is_latest_label": true }, { "label": "Santos Ltd", "definition": "An Australian energy pioneer since 1954, Santos is a leading oil and gas producer, supplying Australian and Asian customers. With its origins in the Cooper Basin, Santos is one of Australia’s largest producers of gas to the domestic market and has the largest exploration and production acreage position in Australia of any company.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/118" + "about": "http://vocab.aodn.org.au/def/organisation/entity/118", + "is_latest_label": true }, { "label": "S2V Consulting Pty Ltd", "definition": "S2V Consulting provides technical and strategic advice to the oil and gas industry.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/119" + "about": "http://vocab.aodn.org.au/def/organisation/entity/119", + "is_latest_label": true }, { "label": "Synnot and Wilkinson Strategic Environmental Consulting", "definition": "Synnot Wilkinson are a specialist strategic environmental consulting firm based in Victoria, Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/124" + "about": "http://vocab.aodn.org.au/def/organisation/entity/124", + "is_latest_label": true }, { "label": "Tasmanian Sea Urchin Developments", - "about": "http://vocab.aodn.org.au/def/organisation/entity/125" + "about": "http://vocab.aodn.org.au/def/organisation/entity/125", + "is_latest_label": false }, { "label": "URS Australia", "definition": "URS is a leading provider of engineering, construction, and technical services for public agencies and private sector companies around the world.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/126" + "about": "http://vocab.aodn.org.au/def/organisation/entity/126", + "is_latest_label": true }, { "label": "Woodside Energy Ltd", "definition": "Woodside is Australia’s largest independent oil and gas company.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/131" + "about": "http://vocab.aodn.org.au/def/organisation/entity/131", + "is_latest_label": true }, { "label": "Yara Pilbara Holdings Ltd (YPHL)", "definition": "Yara produces fertilisers and crop nutrition programs.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/132" + "about": "http://vocab.aodn.org.au/def/organisation/entity/132", + "hidden_labels": [ + "YPHL" + ], + "is_latest_label": true }, { "label": "Hydroweb Pty Ltd", "definition": "Hydroweb Pty Ltd is a private consultancy company", - "about": "http://vocab.aodn.org.au/def/organisation/entity/172" + "about": "http://vocab.aodn.org.au/def/organisation/entity/172", + "is_latest_label": true }, { "label": "Des Mills Marine Environmental Reviews", "definition": "Des Mills Marine Environmental Reviews is a private consultancy company.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/173" + "about": "http://vocab.aodn.org.au/def/organisation/entity/173", + "is_latest_label": true }, { "label": "Seashore Engineering Pty Ltd", "definition": "Seashore Engineering Pty Ltd delivers high quality coastal and maritime engineering services.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/174" + "about": "http://vocab.aodn.org.au/def/organisation/entity/174", + "is_latest_label": true }, { "label": "Eni Australia Ltd", "definition": "Eni is an integrated energy company, which is headquartered in Rome.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/175" + "about": "http://vocab.aodn.org.au/def/organisation/entity/175", + "is_latest_label": true }, { "label": "Ningaloo Marine Interactions", "definition": "Ningaloo Marine Interactions have been operating tours out of Coral Bay since 2011.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/176" + "about": "http://vocab.aodn.org.au/def/organisation/entity/176", + "is_latest_label": true }, { "label": "Alex Wyllie and Associates Pty Ltd", "definition": "Provide clients with products derived from remotely sensed data. Consulting on remote sensing systems and other geospatial matters. This organisation ceased in 2003.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/28" + "about": "http://vocab.aodn.org.au/def/organisation/entity/28", + "is_latest_label": false }, { "label": "Apache Energy Limited", "definition": "Apache’s holdings in Australia are focused offshore Western Australia in the Carnarvon, Exmouth and Browse basins, with production operations in the Carnarvon and Exmouth basins.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/30" + "about": "http://vocab.aodn.org.au/def/organisation/entity/30", + "is_latest_label": true }, { "label": "RPS APASA Pty Ltd", "definition": "RPS APASA specializes in the development and application of sophisticated numerical tools for application to environmental, engineering and safety issues.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/31" + "about": "http://vocab.aodn.org.au/def/organisation/entity/31", + "hidden_labels": [ + "RSP APASA" + ], + "is_latest_label": true }, { "label": "Astron Environmental Services", "definition": "Astron is one of Australia’s longest established environmental consultancies with over 30 years continuous experience in Western Australia. They provide a range of environmental services to clients whose businesses are in mining, energy, infrastructure, land development and utilities. They have offices in Perth, Karratha and Margaret River.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/32" + "about": "http://vocab.aodn.org.au/def/organisation/entity/32", + "is_latest_label": true }, { "label": "Microalgal Services", "definition": "Microalgal Services is a specialist Melbourne based laboratory whose core business is the routine monitoring and identification of marine and estuarine phytoplankton species.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/343" + "about": "http://vocab.aodn.org.au/def/organisation/entity/343", + "is_latest_label": true }, { "label": "GHD", "definition": "GHD is one of the world’s leading professional services companies operating in the global markets of water, energy and resources, environment, property and buildings, and transportation. They provide engineering, architecture, environmental and construction services to private and public sector clients. Established in 1928 and privately owned by its people, GHD operates across five continents – Asia, Australia, Europe, North and South America.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/347" + "about": "http://vocab.aodn.org.au/def/organisation/entity/347", + "is_latest_label": true }, { "label": "Bamford Consulting Ecologists (BCE)", "definition": "Bamford Consulting Ecologists (BCE) is a partnership specialising in fauna investigations for environmental impact assessment, and long-term ecological monitoring of fauna populations, particularly in relation to disturbance, mining and rehabilitation.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/35" + "about": "http://vocab.aodn.org.au/def/organisation/entity/35", + "hidden_labels": [ + "BCE" + ], + "is_latest_label": true }, { "label": "Broome International Airport Holdings Pty Ltd (BIAH)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/37" + "about": "http://vocab.aodn.org.au/def/organisation/entity/37", + "hidden_labels": [ + "BIAH" + ], + "is_latest_label": true }, { "label": "BHP Billiton Petroleum Australia", "definition": "BHP Billiton Petroleum has exploration, development, production and marketing activities in more than a dozen countries around the globe, with a significant position in the deep water Gulf of Mexico, Onshore US and Australia.  Petroleum also operates assets in the United States, Australia, United Kingdom, Trinidad and Tobago and Pakistan. In 2017 BHP Billiton rebranded itself as BHP.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/39" + "about": "http://vocab.aodn.org.au/def/organisation/entity/39", + "is_latest_label": false }, { "label": "BHP Billiton Iron Ore", "definition": "BHP Billiton Iron Ore is one of the world’s leading iron ore producers with operations in Australia and Brazil. We sell lump and fine product from Australia and iron ore pellets from our Samarco operation in Brazil. In 2017 BHP Billiton rebranded itself as BHP.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/40" + "about": "http://vocab.aodn.org.au/def/organisation/entity/40", + "is_latest_label": false }, { "label": "Rio Tinto Alcan", "definition": "Rio Tinto Alcan is the world's largest producer of bauxite, alumina and aluminium. They are one of five product groups operated by Rio Tinto, a leading international mining group. Rio Tinto's aluminium business started with Comalco in Australia in the mid 1950s. Rio Tinto bought Comalco in 2000, and the company was renamed Rio Tinto Aluminium in late 2006. In October 2007, leading mining organisation Rio Tinto acquired Alcan, which orginated in Canada in 1902. Alcan integrated with Rio Tinto's existing aluminium business, resulting in Rio Tinto Alcan. Operations in Australia can be found in: Tasmania, Queensland, Nothern Territory and New South Wales.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/401" + "about": "http://vocab.aodn.org.au/def/organisation/entity/401", + "is_latest_label": true }, { "label": "BHP Billiton Limited", "definition": "BHP Billiton is an Anglo-Australian multinational mining, metals and petroleum company headquartered in Melbourne, Australia. It is the world's largest mining company measured by 2013 revenues. BHP Billiton was created in 2001 through the merger of the Australian Broken Hill Proprietary Company Limited (BHP) and the Anglo–Dutch Billiton plc. In 2017, with many of its Billiton assets disposed of, BHP Billiton began to rebrand itself as BHP. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/41" + "about": "http://vocab.aodn.org.au/def/organisation/entity/41", + "display_label": "BHP Billiton Limited", + "alt_labels": [ + "BHP" + ], + "is_latest_label": true }, { "label": "Boggabri Coal Pty Ltd", "definition": "Boggabri Coal Pty Limited is an entity of Idemitsu Australia Resources Pty Ltd.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/43" + "about": "http://vocab.aodn.org.au/def/organisation/entity/43", + "is_latest_label": true }, { "label": "C-AID Consultants", "definition": "C-AID Consultants specialises in providing professional advice on: the sustainable use of aquatic resources, natural resource management, seafood safety and fishery and environmental legislation.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/44" + "about": "http://vocab.aodn.org.au/def/organisation/entity/44", + "is_latest_label": true }, { "label": "Blue Ocean Monitoring Pty Ltd", "definition": "Headquartered in Perth, Australia, with offices in the USA, UK and Singapore, Blue Ocean Monitoring is a global provider of ocean monitoring services for Oil and Gas, Mining and Environmental clients.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/455" + "about": "http://vocab.aodn.org.au/def/organisation/entity/455", + "is_latest_label": true }, { "label": "Chevron Australia Pty Ltd", "definition": "Chevron Austalia is a subsidiary of Chevron an international energy corporation.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/46" + "about": "http://vocab.aodn.org.au/def/organisation/entity/46", + "is_latest_label": true }, { "label": "Coastalwatch", "definition": "Since 1998, Coastalwatch has provided live camera vision, daily surf reports and forecasts and news and features from around the country’s coast. It provides Australia’s most comprehensive coastal reference site.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/47" + "about": "http://vocab.aodn.org.au/def/organisation/entity/47", + "is_latest_label": true }, { "label": "ConocoPhillips Australia Pty Ltd", "definition": "This is the Australian operation of one of the world's largest independent oil and gas exploration and production company, which is headquartered in Houston, USA. ConocoPhillips established operations in Australia almost two decades ago.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/48" + "about": "http://vocab.aodn.org.au/def/organisation/entity/48", + "is_latest_label": true }, { "label": "D.A. Lord and Associates Pty Ltd (DAL)", "definition": "D.A Lord and Associates provided marine and coastal environmental consulting services. This company became known as DAL Science and Engineering (DALSE), then Oceanica Consulting, and is now part of BMT Oceanica.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/52" + "about": "http://vocab.aodn.org.au/def/organisation/entity/52", + "hidden_labels": [ + "DAL" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/521" }, { "label": "Dcafe", "definition": "DCafe is an economics consultancy company.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/53" + "about": "http://vocab.aodn.org.au/def/organisation/entity/53", + "is_latest_label": true }, { "label": "Earth Ocean and Space", "definition": "Earth Ocean and Space is a climate change and environmental engineering consultancy.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/82" + "about": "http://vocab.aodn.org.au/def/organisation/entity/82", + "is_latest_label": true }, { "label": "Gaia Resources", "definition": "Gaia Resources is an environmental technology consultancy company, that have been operating since 2004.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/85" + "about": "http://vocab.aodn.org.au/def/organisation/entity/85", + "is_latest_label": true }, { "label": "Halfmoon Biosciences", "definition": "Halfmoon Biosciences is an environmental consultancy specialising in seabird ecology, scientific research, designing field monitoring programs, environmental planning and mitigation, offshore environmental project supervision (audits and compliance) and Marine Mammal Observations for the Offshore Oil and Gas, Fishing and Tourism Industries.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/87" + "about": "http://vocab.aodn.org.au/def/organisation/entity/87", + "is_latest_label": true }, { "label": "Horizon Oil Ltd", "definition": "Horizon Oil Limited (‘Horizon Oil’) is an oil and gas exploration, development and production company, incorporated and domiciled in Australia.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/88" + "about": "http://vocab.aodn.org.au/def/organisation/entity/88", + "is_latest_label": true }, { "label": "HydroNumerics Pty Ltd", "definition": "HydroNumerics Pty Ltd was founded in 2010 to deliver innovative engineering services to deliver products and services to water utilities, government, consultants and industry.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/89" + "about": "http://vocab.aodn.org.au/def/organisation/entity/89", + "is_latest_label": true }, { "label": "INPEX", @@ -3156,98 +5710,134 @@ { "label": "INPEX Browse Ltd", "definition": "A venture company of INPEX that was created in 1998, for the Ichthys gas field development. (Courtesy of Wikipedia)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/91" + "about": "http://vocab.aodn.org.au/def/organisation/entity/91", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Kimberley Quest", "definition": "The company was first launched in Broome in 1994, under the name Pearl Sea Coastal Cruises. Originally Pearl Sea Coastal Cruises operated the pilot boat for Broome Port, commercial and research vessels as well as full day fishing charters out of Broome with three vessels: Kimberley Quest, Vantage and Sentosa. In 2013 Pearl Sea Coastal Cruises' trading name was changed to Kimberley Quest and a new brand was launched. Kimberley Quest II is the only vessel operated by Kimberley Quest.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/92" + "about": "http://vocab.aodn.org.au/def/organisation/entity/92", + "is_latest_label": true }, { "label": "Lawson and Treloar Pty Ltd", "definition": "This environment/engineering consultant company became Cardno Lawson Treloar in 2004, and is now part of the larger Cardno group.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/93" + "about": "http://vocab.aodn.org.au/def/organisation/entity/93", + "is_latest_label": false }, { "label": "LeProvost Dames and Moore (LDM)", "definition": "An environmental consultancy company.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/94" + "about": "http://vocab.aodn.org.au/def/organisation/entity/94", + "hidden_labels": [ + "LDM" + ], + "is_latest_label": true }, { "label": "Kevron Aerial Surveys Pty Ltd", "definition": "Commercial photography company.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/95" + "about": "http://vocab.aodn.org.au/def/organisation/entity/95", + "is_latest_label": false }, { "label": "M.E. Trudgen and Associates", "definition": "Environment Consultancy company.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/97" + "about": "http://vocab.aodn.org.au/def/organisation/entity/97", + "is_latest_label": true }, { "label": "Marine Environmental Systems", - "about": "http://vocab.aodn.org.au/def/organisation/entity/98" + "about": "http://vocab.aodn.org.au/def/organisation/entity/98", + "is_latest_label": false }, { "label": "Mscience Pty Ltd", "definition": "MScience Pty Ltd commenced operations in 2003 on the campus of the University of Western Australia. The company was established to provide a link between marine scientists and the resource industries requiring the commercial application of their expertise.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/99" + "about": "http://vocab.aodn.org.au/def/organisation/entity/99", + "is_latest_label": true }, { "label": "DAL Science and Engineering (DALSE)", "definition": "DAL Science and Engineering provided marine and coastal environmental consulting servies. It became known as Oceanica Consulting, and is now part of BMT Oceanica.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/521" + "about": "http://vocab.aodn.org.au/def/organisation/entity/521", + "hidden_labels": [ + "DALSE" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/106" }, { "label": "Australian Marine Ecology Pty Ltd", "definition": "Australian Marine Ecology Pty Ltd is a scientific organisation that specialises in marine ecological research and consulting with an emphasis on quantitative field studies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/525" + "about": "http://vocab.aodn.org.au/def/organisation/entity/525", + "is_latest_label": true }, { "label": "Fathom Pacific Pty Ltd", "definition": "Fathom Pacific provides aquatic scientific services for industry, government and research agencies.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/526" + "about": "http://vocab.aodn.org.au/def/organisation/entity/526", + "is_latest_label": true }, { "label": "Infotech Research", "definition": "Infotech Research was founded in 1985 as a technically focused management consultancy, working in R&D, business planning, occupational health, cleaner production energy and environmental management.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/527" + "about": "http://vocab.aodn.org.au/def/organisation/entity/527", + "is_latest_label": true }, { "label": "Marscco", "definition": "Marscco was formed in 2008 to assist research providers, government and private industry with baseline research, impact assessment and monitoring specific to aquatic environments, including freshwater, estuarine and inshore/ offshore marine habitats.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/534" + "about": "http://vocab.aodn.org.au/def/organisation/entity/534", + "is_latest_label": true }, { "label": "Marine Solutions Tasmania Pty Ltd", "definition": "Based in Hobart, Marine Solutions conducts projects throughout southern Australia for a range of client sectors including private enterprise, local and state government, community groups and individuals.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/611" + "about": "http://vocab.aodn.org.au/def/organisation/entity/611", + "alt_labels": [ + "Marine Solutions" + ], + "is_latest_label": true }, { "label": "Fisheries Research and Development Corporation (FRDC)", "definition": "The FRDC invests in research, development and extension activities to increase economic, social and environmental benefits for Australian fishing and aquaculture, and the wider community.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/612" + "about": "http://vocab.aodn.org.au/def/organisation/entity/612", + "hidden_labels": [ + "FRDC" + ], + "is_latest_label": true }, { "label": "Aquenal Pty Ltd", "definition": "Aquenal is a team of marine and environmental scientists with specialist expertise in the assessment of marine, estuarine and coastal environments. It's services cover environmental analysis and management, including risk and impact assessments, baseline surveys and compliance monitoring, introduced pest surveys and management plans, threatened species management, marine park biodiversity monitoring, marine taxonomy, coastal GIS mapping, and underwater visual assessments.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/616" + "about": "http://vocab.aodn.org.au/def/organisation/entity/616", + "is_latest_label": true }, { "label": "Darwin Port", "definition": "Darwin Port Operations Pty Ltd which is part of the Landbridge Group, operates the Darwin Port. The Landbridge Group is a large private company based in Rizhao city in Shandong Province in China, operating businesses in China and Australia. The Darwin Port operates commercial wharf facilities at East Arm Wharf and the cruise ship terminal at Fort Hill Wharf.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/658" + "about": "http://vocab.aodn.org.au/def/organisation/entity/658", + "is_latest_label": true }, { "label": "EOMAP Australia Pty Ltd", "definition": "EOMAP undertakes commercial satellite-based mapping and monitoring of shallow-water systems and provides satellite-derived bathymetry data.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/666" + "about": "http://vocab.aodn.org.au/def/organisation/entity/666", + "is_latest_label": true }, { "label": "PTTEP Australasia", "definition": "PTTEP Australia is a wholly-owned subsidiary of PTT Exploration and Production Public Company Limited (PTTEP), the Thai national petroleum exploration and production company.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/667" + "about": "http://vocab.aodn.org.au/def/organisation/entity/667", + "hidden_labels": [ + "PTTEP Australia" + ], + "is_latest_label": true } ] }, @@ -3259,7 +5849,8 @@ { "label": "Queensland Councils", "definition": "Queensland Councils category", - "about": "http://vocab.aodn.org.au/def/organisation_classes/category/19" + "about": "http://vocab.aodn.org.au/def/organisation_classes/category/19", + "is_latest_label": true }, { "label": "New South Wales Councils", @@ -3269,24 +5860,29 @@ { "label": "Hornsby Shire Council", "definition": "The Hornsby Shire Council presides over Hornsby Shire which covers approximately 510 square kilometres, including 6,000 hectares of public bushland for which Council is responsible. The Shire extends from Brooklyn in the north, to Wisemans Ferry and Glenorie/Dural in the west, Wahroonga in the east and Epping in the south, in New South Wales.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/408" + "about": "http://vocab.aodn.org.au/def/organisation/entity/408", + "is_latest_label": true }, { "label": "Warringah Council", "definition": "Warringah Council was established in 1906. It administers an area of 149 square km on Sydney’s northern beaches, extending from Manly in the south to Pittwater in the north and inland to the Ku-ring-gai Chase National Park, in New South Wales.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/409" + "about": "http://vocab.aodn.org.au/def/organisation/entity/409", + "is_latest_label": true }, { "label": "Wollongong City Council", "definition": "Wollongong city is located 80km south of Sydney. It covers 714 square kilometres and occupies a narrow coastal strip bordered by the Royal National Park to the north, Lake Illawarra to the south, the Pacific Ocean to the east, and the Illawarra escarpment to the west.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/533" + "about": "http://vocab.aodn.org.au/def/organisation/entity/533", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "Victorian Councils", "definition": "Victorian Councils category", - "about": "http://vocab.aodn.org.au/def/organisation_classes/category/21" + "about": "http://vocab.aodn.org.au/def/organisation_classes/category/21", + "is_latest_label": true }, { "label": "Tasmanian Councils", @@ -3296,24 +5892,32 @@ { "label": "Derwent Estuary Program (DEP)", "definition": "The Derwent Estuary Program (DEP) is a regional partnership between local governments, the Tasmanian state government, commercial and industrial enterprises, and community-based groups to restore and promote our estuary. The DEP was established in 1999.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/81" + "about": "http://vocab.aodn.org.au/def/organisation/entity/81", + "hidden_labels": [ + "DEP" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "South Australian Councils", "definition": "South Australian Councils category", - "about": "http://vocab.aodn.org.au/def/organisation_classes/category/23" + "about": "http://vocab.aodn.org.au/def/organisation_classes/category/23", + "is_latest_label": true }, { "label": "Western Australian Councils", "definition": "Western Australian Councils category", - "about": "http://vocab.aodn.org.au/def/organisation_classes/category/24" + "about": "http://vocab.aodn.org.au/def/organisation_classes/category/24", + "is_latest_label": true }, { "label": "Northern Territory Councils", "definition": "Northern Territory Councils category", - "about": "http://vocab.aodn.org.au/def/organisation_classes/category/25" + "about": "http://vocab.aodn.org.au/def/organisation_classes/category/25", + "is_latest_label": true } ] }, @@ -3330,7 +5934,16 @@ { "label": "eMarine Information Infrastructure (eMII), Integrated Marine Observing Sytem (IMOS)", "definition": "Marine data and information are the main products of IMOS, and data management is therefore a central element to the project's success. eMII provides a single integrative framework for data and information management that allows discovery and access of the data by scientists, managers and the public.", - "about": "http://vocab.aodn.org.au/def/organisation/entity/134" + "about": "http://vocab.aodn.org.au/def/organisation/entity/134", + "display_label": "eMarine Information Infrastructure (eMII)", + "hidden_labels": [ + "eMII" + ], + "alt_labels": [ + "Marine information" + ], + "is_latest_label": false, + "replaced_by": "http://vocab.aodn.org.au/def/organisation/entity/34" }, { "label": "Australian Ocean Data Network (AODN)", @@ -3339,9 +5952,17 @@ "narrower": [ { "label": "IMOS OceanCurrent", - "about": "http://vocab.aodn.org.au/def/organisation/entity/506" + "about": "http://vocab.aodn.org.au/def/organisation/entity/506", + "hidden_labels": [ + "OceanCurrent" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "AODN" + ], + "is_latest_label": true }, { "label": "Argo Floats Facility, Integrated Marine Observing System (IMOS)", @@ -3349,9 +5970,22 @@ "narrower": [ { "label": "Biogeochemical Argo Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/584" + "about": "http://vocab.aodn.org.au/def/organisation/entity/584", + "display_label": "Biogeochemical Argo Sub-Facility", + "alt_labels": [ + "Biogeochemical Argo Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "Argo Floats Facility", + "hidden_labels": [ + "Argo" + ], + "alt_labels": [ + "Argo Floats Facility" + ], + "is_latest_label": true }, { "label": "Animal Tracking Facility, Integrated Marine Observing System (IMOS)", @@ -3359,17 +5993,43 @@ "narrower": [ { "label": "Acoustic Telemetry Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/496" + "about": "http://vocab.aodn.org.au/def/organisation/entity/496", + "display_label": "Acoustic Telemetry Sub-Facility", + "alt_labels": [ + "Acoustic Telemetry Sub-Facility" + ], + "is_latest_label": true }, { "label": "Animal Tagging Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/497" + "about": "http://vocab.aodn.org.au/def/organisation/entity/497", + "display_label": "Animal Tagging Sub-Facility", + "alt_labels": [ + "Animal Tagging Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "Animal Tracking Facility", + "hidden_labels": [ + "AATAMS" + ], + "alt_labels": [ + "Animal Tracking Facility" + ], + "is_latest_label": true }, { "label": "Ocean Radar Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/469" + "about": "http://vocab.aodn.org.au/def/organisation/entity/469", + "display_label": "Ocean Radar Facility", + "hidden_labels": [ + "ACORN" + ], + "alt_labels": [ + "Ocean Radar Facility" + ], + "is_latest_label": true }, { "label": "Ocean Gliders Facility, Integrated Marine Observing System (IMOS)", @@ -3377,13 +6037,34 @@ "narrower": [ { "label": "Event based sampling Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/586" + "about": "http://vocab.aodn.org.au/def/organisation/entity/586", + "display_label": "Event based sampling Sub-Facility", + "alt_labels": [ + "Event based sampling Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "Ocean Gliders Facility", + "hidden_labels": [ + "ANFOG" + ], + "alt_labels": [ + "Ocean Gliders Facility" + ], + "is_latest_label": true }, { "label": "Wireless Sensor Networks Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/471" + "about": "http://vocab.aodn.org.au/def/organisation/entity/471", + "display_label": "Wireless Sensor Networks Facility", + "hidden_labels": [ + "FAIMMS" + ], + "alt_labels": [ + "Wireless Sensor Networks Facility" + ], + "is_latest_label": true }, { "label": "Deep Water Moorings Facility, Integrated Marine Observing System (IMOS)", @@ -3391,13 +6072,37 @@ "narrower": [ { "label": "Deep Water Arrays Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/498" + "about": "http://vocab.aodn.org.au/def/organisation/entity/498", + "display_label": "Deep Water Arrays Sub-Facility", + "hidden_labels": [ + "DA" + ], + "alt_labels": [ + "Deep Water Arrays Sub-Facility" + ], + "is_latest_label": true }, { "label": "Southern Ocean Time Series Observatory Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/499" + "about": "http://vocab.aodn.org.au/def/organisation/entity/499", + "display_label": "Southern Ocean Time Series Observatory Sub-Facility", + "hidden_labels": [ + "SOTS" + ], + "alt_labels": [ + "Southern Ocean Time Series Observatory Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "Deep Water Moorings Facility", + "hidden_labels": [ + "ABOS" + ], + "alt_labels": [ + "Deep Water Moorings Facility" + ], + "is_latest_label": true }, { "label": "National Mooring Network Facility, Integrated Marine Observing System (IMOS)", @@ -3405,57 +6110,157 @@ "narrower": [ { "label": "Acoustic Observatories Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/478" + "about": "http://vocab.aodn.org.au/def/organisation/entity/478", + "display_label": "Acoustic Observatories Sub-Facility", + "hidden_labels": [ + "Acoustic", + "Acoustic observations" + ], + "alt_labels": [ + "Acoustic Observatories Sub-Facility" + ], + "is_latest_label": true }, { "label": "Acidification Moorings Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/500" + "about": "http://vocab.aodn.org.au/def/organisation/entity/500", + "display_label": "Acidification Moorings Sub-Facility", + "hidden_labels": [ + "AM", + "CO2" + ], + "alt_labels": [ + "Acidification Moorings Sub-Facility" + ], + "is_latest_label": true }, { "label": "National Reference Stations Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/501" + "about": "http://vocab.aodn.org.au/def/organisation/entity/501", + "display_label": "National Reference Stations Sub-Facility", + "hidden_labels": [ + "NRS" + ], + "alt_labels": [ + "National Reference Stations Sub-Facility" + ], + "is_latest_label": true }, { "label": "New South Wales Moorings Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/502" + "about": "http://vocab.aodn.org.au/def/organisation/entity/502", + "display_label": "New South Wales Moorings Sub-Facility", + "hidden_labels": [ + "NSW", + "NSW moorings" + ], + "alt_labels": [ + "New South Wales Moorings Sub-Facility" + ], + "is_latest_label": true }, { "label": "Queensland and Northern Australia Moorings Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/503" + "about": "http://vocab.aodn.org.au/def/organisation/entity/503", + "display_label": "Queensland and Northern Australia Moorings Sub-Facility", + "hidden_labels": [ + "QLD and NA moorings", + "QLDandNA" + ], + "alt_labels": [ + "Queensland and Northern Australia Moorings Sub-Facility" + ], + "is_latest_label": true }, { "label": "Southern Australia Moorings Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/504" + "about": "http://vocab.aodn.org.au/def/organisation/entity/504", + "display_label": "Southern Australia Moorings Sub-Facility", + "hidden_labels": [ + "SA", + "SA moorings" + ], + "alt_labels": [ + "Southern Australia Moorings Sub-Facility" + ], + "is_latest_label": true }, { "label": "Western Australia Moorings Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/505" + "about": "http://vocab.aodn.org.au/def/organisation/entity/505", + "display_label": "Western Australia Moorings Sub-Facility", + "hidden_labels": [ + "WA", + "WA moorings" + ], + "alt_labels": [ + "Western Australia Moorings Sub-Facility" + ], + "is_latest_label": true }, { "label": "Wave Buoys Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/590" + "about": "http://vocab.aodn.org.au/def/organisation/entity/590", + "display_label": "Wave Buoys Sub-Facility", + "alt_labels": [ + "Wave Buoys Sub-Facility" + ], + "is_latest_label": true }, { "label": "Larval Fish Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/591" + "about": "http://vocab.aodn.org.au/def/organisation/entity/591", + "display_label": "Larval Fish Sub-Facility", + "alt_labels": [ + "Larval Fish Sub-Facility" + ], + "is_latest_label": true }, { "label": "Victoria Moorings Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/592" + "about": "http://vocab.aodn.org.au/def/organisation/entity/592", + "display_label": "Victoria Moorings Sub-Facility", + "alt_labels": [ + "Victoria Moorings Sub-Facility" + ], + "is_latest_label": true }, { "label": "Microbial Coastal Sampling Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/593" + "about": "http://vocab.aodn.org.au/def/organisation/entity/593", + "display_label": "Microbial Coastal Sampling Sub-Facility", + "alt_labels": [ + "Microbial Coastal Sampling Sub-Facility" + ], + "is_latest_label": true }, { "label": "Water Sampling Database Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/594" + "about": "http://vocab.aodn.org.au/def/organisation/entity/594", + "display_label": "Water Sampling Database Sub-Facility", + "alt_labels": [ + "Water Sampling Database Sub-Facility" + ], + "is_latest_label": true }, { "label": "Deep Water Waves Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/595" + "about": "http://vocab.aodn.org.au/def/organisation/entity/595", + "display_label": "Deep Water Waves Sub-Facility", + "alt_labels": [ + "Deep Water Waves Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "National Mooring Network Facility", + "hidden_labels": [ + "ANMN" + ], + "alt_labels": [ + "National Mooring Network Facility" + ], + "is_latest_label": true }, { "label": "Autonomous Underwater Vehicles Facility, Integrated Marine Observing System (IMOS)", @@ -3463,17 +6268,41 @@ "narrower": [ { "label": "National Reef Monitoring Network Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/587" + "about": "http://vocab.aodn.org.au/def/organisation/entity/587", + "display_label": "National Reef Monitoring Network Sub-Facility", + "alt_labels": [ + "National Reef Monitoring Network" + ], + "is_latest_label": true }, { "label": "Autonomous Underwater Vehicles Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/588" + "about": "http://vocab.aodn.org.au/def/organisation/entity/588", + "display_label": "Autonomous Underwater Vehicles Sub-Facility", + "alt_labels": [ + "Autonomous Underwater Vehicles Sub-Facility" + ], + "is_latest_label": true }, { "label": "Marine Imagery Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/589" + "about": "http://vocab.aodn.org.au/def/organisation/entity/589", + "display_label": "Understanding of Marine Imagery Sub-Facility", + "alt_labels": [ + "Marine Imagery Sub-Facility", + "Understanding of Marine Imagery Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "Autonomous Underwater Vehicles Facility", + "hidden_labels": [ + "AUV" + ], + "alt_labels": [ + "Autonomous Underwater Vehicles Facility" + ], + "is_latest_label": true }, { "label": "Ships of Opportunity Facility, Integrated Marine Observing System (IMOS)", @@ -3481,41 +6310,124 @@ "narrower": [ { "label": "Australian Plankton Survey Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/473" + "about": "http://vocab.aodn.org.au/def/organisation/entity/473", + "display_label": "Australian Plankton Survey Sub-Facility", + "alt_labels": [ + "Australian Plankton Survey Sub-Facility" + ], + "is_latest_label": true }, { "label": "Sea Surface Temperature Sensors for Australian Vessels Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/474" + "about": "http://vocab.aodn.org.au/def/organisation/entity/474", + "display_label": "Sea Surface Temperature Sensors for Australian Vessels Sub-Facility", + "hidden_labels": [ + "SST", + "SST vessels" + ], + "alt_labels": [ + "Sea Surface Temperature Sensors for Australian Vessels Sub-Facility" + ], + "is_latest_label": false }, { "label": "Research Vessels Real-Time Air-Sea Fluxes Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/475" + "about": "http://vocab.aodn.org.au/def/organisation/entity/475", + "display_label": "Research Vessels Real-Time Air-Sea Fluxes Sub-Facility", + "hidden_labels": [ + "ASF", + "Air-sea flux vessels", + "Flux" + ], + "alt_labels": [ + "Research Vessels Real-Time Air-Sea Fluxes Sub-Facility" + ], + "is_latest_label": true }, { "label": "Sensors on Temperate Merchant Vessels Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/476" + "about": "http://vocab.aodn.org.au/def/organisation/entity/476", + "display_label": "Sensors on Temperate Merchant Vessels Sub-Facility", + "hidden_labels": [ + "TMV", + "Temperate merchant vessels" + ], + "alt_labels": [ + "Sensors on Temperate Merchant Vessels Sub-Facility" + ], + "is_latest_label": true }, { "label": "Bio-Acoustic Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/515" + "about": "http://vocab.aodn.org.au/def/organisation/entity/515", + "display_label": "Bio-Acoustic Sub-Facility", + "hidden_labels": [ + "BA SOOP", + "BioAcous" + ], + "alt_labels": [ + "Bio-Acoustic Sub-Facility" + ], + "is_latest_label": true }, { "label": "Biogeochemical Sensors Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/516" + "about": "http://vocab.aodn.org.au/def/organisation/entity/516", + "display_label": "Biogeochemical Sensors Sub-Facility", + "hidden_labels": [ + "BGC", + "Biogeochemical" + ], + "alt_labels": [ + "Biogeochemical Sensors Sub-Facility" + ], + "is_latest_label": true }, { "label": "Expendable Bathythermograph Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/517" + "about": "http://vocab.aodn.org.au/def/organisation/entity/517", + "display_label": "Expendable Bathythermograph Sub-Facility", + "hidden_labels": [ + "Bathythermograph", + "XBT" + ], + "alt_labels": [ + "Expendable Bathythermograph Sub-Facility" + ], + "is_latest_label": true }, { "label": "Sensors on Tropical Research Vessels Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/518" + "about": "http://vocab.aodn.org.au/def/organisation/entity/518", + "display_label": "Sensors on Tropical Research Vessels Sub-Facility", + "hidden_labels": [ + "TRV", + "Tropical", + "Tropical research vessels" + ], + "alt_labels": [ + "Sensors on Tropical Research Vessels Sub-Facility" + ], + "is_latest_label": true }, { "label": "Southern Ocean Plankton Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/585" + "about": "http://vocab.aodn.org.au/def/organisation/entity/585", + "display_label": "Southern Ocean Plankton Sub-Facility", + "alt_labels": [ + "Southern Ocean Plankton Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "Ships of Opportunity Facility", + "hidden_labels": [ + "SOOP" + ], + "alt_labels": [ + "Ships of Opportunity Facility" + ], + "is_latest_label": true }, { "label": "Satellite Remote Sensing Facility, Integrated Marine Observing System (IMOS)", @@ -3523,29 +6435,77 @@ "narrower": [ { "label": "Ocean Colour Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/508" + "about": "http://vocab.aodn.org.au/def/organisation/entity/508", + "display_label": "Ocean Colour Sub-Facility", + "alt_labels": [ + "Ocean Colour Sub-Facility" + ], + "is_latest_label": true }, { "label": "Satellite Altimetry Calibration and Validation Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/509" + "about": "http://vocab.aodn.org.au/def/organisation/entity/509", + "display_label": "Satellite Altimetry Calibration and Validation Sub-Facility", + "hidden_labels": [ + "SatAltim", + "Satellite altimetry" + ], + "alt_labels": [ + "Satellite Altimetry Calibration and Validation Sub-Facility" + ], + "is_latest_label": true }, { "label": "Sea Surface Temperature Products Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/510" + "about": "http://vocab.aodn.org.au/def/organisation/entity/510", + "display_label": "Sea Surface Temperature Products Sub-Facility", + "hidden_labels": [ + "SST", + "SST L2P", + "Satellite SST L2P" + ], + "alt_labels": [ + "Sea Surface Temperature Products Sub-Facility" + ], + "is_latest_label": true }, { "label": "Remote Sensing Collections Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/511" + "about": "http://vocab.aodn.org.au/def/organisation/entity/511", + "display_label": "Remote Sensing Collections Sub-Facility", + "alt_labels": [ + "Remote Sensing Collections Sub-Facility" + ], + "is_latest_label": true }, { "label": "Ground Stations Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/512" + "about": "http://vocab.aodn.org.au/def/organisation/entity/512", + "display_label": "Ground Stations Sub-Facility", + "alt_labels": [ + "Ground Stations Sub-Facility" + ], + "is_latest_label": true }, { "label": "Surface Waves Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/513" + "about": "http://vocab.aodn.org.au/def/organisation/entity/513", + "display_label": "Surface Waves Sub-Facility", + "alt_labels": [ + "Surface Waves Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "Satellite Remote Sensing Facility", + "hidden_labels": [ + "SRS", + "Satellite remote sensing" + ], + "alt_labels": [ + "Satellite Remote Sensing Facility" + ], + "is_latest_label": true }, { "label": "Marine Microbiome Initiative Facility, Integrated Marine Observing System (IMOS)", @@ -3553,18 +6513,42 @@ "narrower": [ { "label": "Sample Processing Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/597" + "about": "http://vocab.aodn.org.au/def/organisation/entity/597", + "display_label": "Sample Processing Sub-Facility", + "alt_labels": [ + "Sample Processing Sub-Facility" + ], + "is_latest_label": true }, { "label": "Bioinformatics Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/598" + "about": "http://vocab.aodn.org.au/def/organisation/entity/598", + "display_label": "Bioinformatics Sub-Facility", + "alt_labels": [ + "Bioinformatics Sub-Facility" + ], + "is_latest_label": true }, { "label": "Microbial Genomic Database Sub-Facility, Integrated Marine Observing System (IMOS)", - "about": "http://vocab.aodn.org.au/def/organisation/entity/599" + "about": "http://vocab.aodn.org.au/def/organisation/entity/599", + "display_label": "Microbial Genomic Database Sub-Facility", + "alt_labels": [ + "Microbial Genomic Database Sub-Facility" + ], + "is_latest_label": true } - ] + ], + "display_label": "Marine Microbiome Initiative Facility", + "alt_labels": [ + "Marine Microbiome Initiative Facility" + ], + "is_latest_label": true } - ] + ], + "hidden_labels": [ + "IMOS" + ], + "is_latest_label": true } ] diff --git a/ardcvocabs/src/test/resources/databag/aodn_platform_vocabs.json b/ardcvocabs/src/test/resources/databag/aodn_platform_vocabs.json index 52c71765..1d7981ad 100644 --- a/ardcvocabs/src/test/resources/databag/aodn_platform_vocabs.json +++ b/ardcvocabs/src/test/resources/databag/aodn_platform_vocabs.json @@ -7,22 +7,26 @@ { "label": "research aeroplane", "definition": "A fixed-wing self-propelled aircraft that is equipped manned and operated for atmospheric meteorological or oceanographic research.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/61" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/61", + "is_latest_label": true }, { "label": "aeroplane", "definition": "A fixed-wing self-propelled aircraft.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/62" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/62", + "is_latest_label": true }, { "label": "helicopter", "definition": "An aircraft without wings that obtains its lift from the rotation of overhead blades.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/67" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/67", + "is_latest_label": true }, { "label": "glider", "definition": "A fixed-wing aircraft with no propulsion.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/6A" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/6A", + "is_latest_label": true } ] }, @@ -34,12 +38,14 @@ { "label": "sea bed vehicle", "definition": "An instrumented platform that is propelled on wheels or tracks on the seabed (e.g benthic crawler).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/12" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/12", + "is_latest_label": true }, { "label": "towed unmanned submersible", "definition": "A vehicle towed by rigid cable through the water column at fixed or varying depth with no propulsion and no human operator (e.g. Towfish Scanfish UOR SeaSoar)", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/23" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/23", + "is_latest_label": true }, { "label": "unmanned autonomous underwater vehicle", @@ -49,29 +55,35 @@ { "label": "Iver", "definition": "The IMOS AUV facility operates a small ocean going AUV called Iver from Ocean Server. Managed by the University of Sydney's Australian Centre for Field Robotics (ACFR), this vehicle is able to be launched from the shore or a small boat, and is used in the support of marine habitat assessment as well as in the surveying of archaeological sites in coastal environments.", - "about": "http://vocab.aodn.org.au/def/platform/entity/39" + "about": "http://vocab.aodn.org.au/def/platform/entity/39", + "is_latest_label": true }, { "label": "Nimbus", "definition": "The IMOS AUV facility owns and operates the ocean going AUV called Nimbus. This platform is a custom designed and developed mid-size robotic vehicle built by the University of Sydney''s Australian Centre for Field Robotics (ACFR).", - "about": "http://vocab.aodn.org.au/def/platform/entity/59" + "about": "http://vocab.aodn.org.au/def/platform/entity/59", + "is_latest_label": true }, { "label": "Sirius", "definition": "The IMOS AUV facility owns and operates the ocean going AUV called Sirius. Managed by the University of Sydney's Australian Centre for Field Robotics (ACFR), this vehicle is a modified version of a mid-size robotic vehicle called Seabed built at the Woods Hole Oceanographic Institution", - "about": "http://vocab.aodn.org.au/def/platform/entity/74" + "about": "http://vocab.aodn.org.au/def/platform/entity/74", + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "lowered unmanned submersible", "definition": "An unmanned platform lowered and raised vertically by a cable from the mothership. Includes any type of profiling sensor mounting such as CTD frames profiling radiometers and instrumented nets.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/26" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/26", + "is_latest_label": true }, { "label": "propelled unmanned submersible", "definition": "A platform operating in the water column attached to a mothership by an umbilical with limited propulsion and no human operator on board (e.g. ROV).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/22" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/22", + "is_latest_label": true } ] }, @@ -83,7 +95,8 @@ { "label": "fixed benthic node", "definition": "A collection of oceanographic instruments mounted at a fixed position on the seabed (e.g. POL Monitoring Platform seabed ADCP)", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/11" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/11", + "is_latest_label": true }, { "label": "land/onshore structure", @@ -93,34 +106,59 @@ { "label": "Lizard Island Base Station", "definition": "The infrastructure consists of a base station mounted on the workshop of the Lizard Island Research Station (LIRS), two sensor poles that create the on-reef network and four sensor floats on which the sensors are attached.", - "about": "http://vocab.aodn.org.au/def/platform/entity/308" + "about": "http://vocab.aodn.org.au/def/platform/entity/308", + "alt_labels": [ + "Lizard_Island" + ], + "is_latest_label": true }, { "label": "Orpheus Island Base Station", "definition": "The infrastructure consists of a base station located on an existing mast at the Orpheus Island Research Station run by James Cook University, two sensor-floats or buoys - one located in Pioneer Bay off the Research Station and one in Little Pioneer Bay and three Relay / Sensor Poles - two located on the reef flat on the north-west point of Orpheus Island and one located on the southern point of near-by Pelorus Island.", - "about": "http://vocab.aodn.org.au/def/platform/entity/315" + "about": "http://vocab.aodn.org.au/def/platform/entity/315", + "alt_labels": [ + "Orpheus_Island" + ], + "is_latest_label": true }, { "label": "Myrmidon Reef Base Station", "definition": "The infrastructure consists of a base station mounted on the existing reef communications tower and a single buoy which carries the actual sensors.", - "about": "http://vocab.aodn.org.au/def/platform/entity/322" + "about": "http://vocab.aodn.org.au/def/platform/entity/322", + "alt_labels": [ + "Myrmidon_Reef" + ], + "is_latest_label": true }, { "label": "Davies Reef Base Station", "definition": "The infrastructure consists of a base station mounted on the existing reef communications tower, using the Telstra nextG service, and 5 buoys which carry the actual sensors. The Davies Reef Base Station performs two functions. The first is to act as a collection point for the sensor network platforms deployed within the reef and to in turn send the data back to the AIMS Data Centre. The second is as a platform for sensors with current sensors including two underwater PAR sensors and a still camera. The base station is co-located with the AIMS Automatic Weather Station (vaisala WXT520) on the Davies Reef Tower in order to optimise the use of power and communications infrastructure.", - "about": "http://vocab.aodn.org.au/def/platform/entity/324" + "about": "http://vocab.aodn.org.au/def/platform/entity/324", + "alt_labels": [ + "Davies_Reef" + ], + "is_latest_label": true }, { "label": "One Tree Island Base Station", "definition": "The infrastructure consists of a base station mounted on the existing water tower, using the Telstra nextG service, and three sensor poles located in each of the major lagoon systems around the island. The base station collects data from the outlying sensor stations (RP1-RP3) within the lagoon of One Tree Island as well as having a LiCor 192 PAR sensor. The base station consists of a Campbell Scientific CR1000 logger that talks back to the mainland via a 5m mast located on the top of the tower and a Cybertec nextG modem, and to the rest of the equipment in the lagoon via a 900 MHz spread-spectrum Campbell RF411 radio. The station is powered off the research station power supply but has its own solar panel and battery supply in case of power outages.", - "about": "http://vocab.aodn.org.au/def/platform/entity/330" + "about": "http://vocab.aodn.org.au/def/platform/entity/330", + "alt_labels": [ + "One_Tree_Island" + ], + "is_latest_label": true }, { "label": "Heron Island Base Station", "definition": "The infrastructure consists of a base station mounted on the existing telecommunications tower, eight sensor poles that create the on-reef network and five sensor floats on which the sensors are attached. One of the poles (RP5) also has a weather station mounted on it.", - "about": "http://vocab.aodn.org.au/def/platform/entity/334" + "about": "http://vocab.aodn.org.au/def/platform/entity/334", + "alt_labels": [ + "Heron_Island" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "offshore structure", @@ -130,89 +168,155 @@ { "label": "Lizard Island Relay Pole 1", "definition": "A 6m galvanized pole has been deployed in the western part of the lagoon. It has no sensors attached to it. The pole was decommissioned in April 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/309" + "about": "http://vocab.aodn.org.au/def/platform/entity/309", + "alt_labels": [ + "LIZRP1" + ], + "is_latest_label": true }, { "label": "Lizard Island Relay Pole 2", "definition": "A 6m galvanized pole has been deployed in the eastern part of the lagoon in behind Seabird Islet. The Relay Pole has three functions. The first is to propagate the wireless network through which the buoys talk and so it forms part of the network backbone talking directly to Relay-Pole 1. The second function is that a vaisala WXT520 weather station is mounted on the top and so this pole provides above water met observations. These include air temperature, humidity, air pressure, wind speed and direction and rainfall. The third function is that a sensor string is attached to the pole, the sensor string runs through a channel in Seabird Islet across the exposed seaward reef flat to the reef crest and then down the reef slope to around 20m. This gives a profile down the reef slope and gives readings of the water coming onto the reef complex. The pole has two Campbell Scientific loggers (one for the weather station, one for the sensors), spread-spectrum radio and 2.4/5 GHz 802.11 wireless for communicating with the base station (located at the workshop near the Research Station). The sensor string as of August 2010 has a SeaBird SBE37 at the end of the sensor string (around 230m out from the pole), and two SeaBird SBE39's located at teh reef crest and down at the start of the reef slope. The pole was decommissioned in April 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/310" + "about": "http://vocab.aodn.org.au/def/platform/entity/310", + "alt_labels": [ + "LIZRP2" + ], + "is_latest_label": true }, { "label": "Orpheus Island Relay Pole 1", "definition": "A 6m steel self supporting pole was erected on the southern side of Pelorus Island in the channel between Pelorus Island and Orpheus Island. The pole provides network connectivity for the other Relay Poles located on the northen edge of Orpheus Island (RP2 and RP3) as well as a back-haul link to the mainland using a nextG connection. The pole has an array of sensors on it including two MEA thermistors located 50m and 100m away from the pole on a transect from the pole into the deep water of the channel. The pole also has a SeaBird SBE39 (temp + pressure) located around 100m from teh pole and a SBE37 (conductivity, temperature and pressure) located approximatly 200m from teh pole in the deep waters of the channels. The pole was decommissioned in July 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/316" + "about": "http://vocab.aodn.org.au/def/platform/entity/316", + "alt_labels": [ + "OIRP1" + ], + "is_latest_label": true }, { "label": "Orpheus Island Relay Pole 2", "definition": "A 6m steel self supporting pole was erected on the northern side of Orpehus Island in the channel between Pelorus Island and Orpheus Island. The pole is set up as per RP1 with two MEA thermistors located at 50m and 100m from the pole and an SBE39 located 100m from the pole and an SBE37 located 200m from the pole in the deeper water. This pole was decommissioned in July 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/317" + "about": "http://vocab.aodn.org.au/def/platform/entity/317", + "alt_labels": [ + "OIRP2" + ], + "is_latest_label": true }, { "label": "Orpheus Island Relay Pole 3", "definition": "A 6m steel self supporting pole was erected on the north/west side of Orpehus Island in the channel between Pelorus Island and Orpheus Island but positioned to face more towards the ocean and just on teh entrance to the channel. RP3 on the seaward side of Orpheus Island is set up the same as RP1 and RP2 although as of early 2010 only the two MEA thermistors at 50 and 100m are installed, the SBE37 and SBE39 wil be instaled later in 2010. A vaisala WTX520 weather station is installed on this pole. This pole was decommissioned in July 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/318" + "about": "http://vocab.aodn.org.au/def/platform/entity/318", + "alt_labels": [ + "OIRP3" + ], + "is_latest_label": true }, { "label": "One Tree Island Relay Pole 1", "definition": "A 6m steel pole has been installed within Central Bommie within the main lagoon of One Tree Island as part of the sensor network infrastructure at One Tree Island in the southern Great Barrier Reef off Gladstone, Australia. The sensor-relay pole provides a platform for the installation of sensors to measure and monitor water conditions within the lagoon of One Tree Island. The pole has real time communications using 900MHz spread spectrum radio back to a base station on One Tree Island. The pole is initially configured with a single thermistor string with six thermistors that is located down the outer wall of the bommie into the main lagoon and so provides a temperature profile of the main lagoon of One Tree Island. The data is collected every 10 minutes and relayed via the base station to the Data Centre at the Australian Institute of Marine Science (AIMS). The system uses a Campbell Scientific logger into which the sensors are connected. The equipment is serviced every six months with plans to install additional instruments such as pressure and salinity. The pole is available for mounting of additional third part instruments and so forms an infrastructure to support future observational work at the Island. The pole was decommissioned in September 2021.", - "about": "http://vocab.aodn.org.au/def/platform/entity/331" + "about": "http://vocab.aodn.org.au/def/platform/entity/331", + "alt_labels": [ + "OTIRP1" + ], + "is_latest_label": true }, { "label": "One Tree Island Relay Pole 2", "definition": "A 6m steel pole has been installed within a small bommie within Second Lagoon of One Tree Island as part of the sensor network infrastructure at One Tree Island in the southern Great Barrier Reef off Gladstone, Australia. The sensor-relay pole provides a platform for the installation of sensors to measure and monitor water conditions within the lagoon of One Tree Island. The pole has real time communications using 900MHz spread spectrum radio back to a base station on One Tree Island. The pole is initially configured with a single thermistor string with six thermistors that is located down the outer wall of the bommie into the second lagoon and so provides a temperature profile of the second lagoon of One Tree Island. The data is collected every 10 minutes and relayed via the base station to the Data Centre at the Australian Institute of Marine Science (AIMS). The system uses a Campbell Scientific logger into which the sensors are connected. The equipment is serviced every six months with plans to install additional instruments such as pressure and salinity. The pole is available for mounting of additional third part instruments and so forms an infrastructure to support future observational work at the Island.The pole was decommissioned in September 2017.", - "about": "http://vocab.aodn.org.au/def/platform/entity/332" + "about": "http://vocab.aodn.org.au/def/platform/entity/332", + "alt_labels": [ + "OTIRP2" + ], + "is_latest_label": true }, { "label": "One Tree Island Relay Pole 3", "definition": "A 6m steel pole has been installed within a small bommie in Third Lagoon on One Tree Island as part of the sensor network infrastructure at One Tree Island in the southern Great Barrier Reef off Gladstone, Australia. The sensor-relay pole provides a platform for the installation of sensors to measure and monitor water conditions within the lagoon of One Tree Island. The pole has real time communications using 900MHz spread spectrum radio back to a base station on One Tree Island. The pole is initially configured with a single thermistor string with six thermistors that is located down the outer wall of the bommie into the lagoon and so provides a temperature profile of the third lagoon of One Tree Island. The data is collected every 10 minutes and relayed via the base station to the Data Centre at the Australian Institute of Marine Science (AIMS). The system uses a Campbell Scientific logger into which the sensors are connected. The equipment is serviced every six months with plans to install additional instruments such as pressure and salinity. The pole is available for mounting of additional third part instruments and so forms an infrastructure to support future observational work at the Island. A Vaisala WXT520 integrated weather station has been installed on RP3. The weather station provides measurement of air temperature (Deg. C.), humidity as relative percent, barometric pressure (milliBars or hPa), rainfall amount, intensity and duration, hail amount, intensity and duration (not common on coral reefs!) and wind speed and direction. The wind speed and direction and processed into scalar and vector (directional) based readings and presented as 10 and 30 minute averages to give mean values and maximum values. From these you can get the average wind conditions at either 10 minute or 30 minute periods as well as the gust or maximum wind conditions. The weather station is connected via an SDI-12 interface to a Campbell Scientific CR1000 logger which uses a RF411 radio to transmit the data, every 10 minutes, to the base station on One Tree Island and then a Telstra nextG link is used to send the data back to AIMS. The pole was decommissioned in September 2017.", - "about": "http://vocab.aodn.org.au/def/platform/entity/333" + "about": "http://vocab.aodn.org.au/def/platform/entity/333", + "alt_labels": [ + "OTIRP3" + ], + "is_latest_label": true }, { "label": "Heron Island Relay Pole 1", "definition": "A 6m steel pole. The pole is solar powered and routes data from the Sensor Floats and other Sensor Relay Poles back to the Base Station located on Heron Island. The system uses the Campbell Scientific CR1000 loggers and RF411 Spread-Spectrum radios to process and route the data. The poles also can support a range of sensors, this pole also has a simple bottom mounted thermistor using the MEA thermistors. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The pole was decommissioned in 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/335" + "about": "http://vocab.aodn.org.au/def/platform/entity/335", + "alt_labels": [ + "HIRP1" + ], + "is_latest_label": true }, { "label": "Heron Island Relay Pole 2", "definition": "A 6m steel pole. The pole is solar powered and routes data from the Sensor Floats and other Sensor Relay Poles back to the Base Station located on Heron Island. The system uses the Campbell Scientific CR1000 loggers and RF411 Spread-Spectrum radios to process and route the data. The poles also can support a range of sensors, this pole also has a simple bottom mounted thermistor using the MEA thermistors. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The pole was decommissioned in September 2021.", - "about": "http://vocab.aodn.org.au/def/platform/entity/336" + "about": "http://vocab.aodn.org.au/def/platform/entity/336", + "alt_labels": [ + "HIRP2" + ], + "is_latest_label": true }, { "label": "Heron Island Relay Pole 3", "definition": "A 6m steel pole. The pole is solar powered and routes data from the Sensor Floats and other Sensor Relay Poles back to the Base Station located on Heron Island. The system uses the Campbell Scientific CR1000 loggers and RF411 Spread-Spectrum radios to process and route the data. The poles also can support a range of sensors, this pole also has a simple bottom mounted thermistor using the MEA thermistors. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The pole was decommissioned in September 2021.", - "about": "http://vocab.aodn.org.au/def/platform/entity/337" + "about": "http://vocab.aodn.org.au/def/platform/entity/337", + "alt_labels": [ + "HIRP3" + ], + "is_latest_label": true }, { "label": "Heron Island Relay Pole 4", "definition": "A 6m steel pole. The pole is solar powered and routes data from the Sensor Floats and other Sensor Relay Poles back to the Base Station located on Heron Island. The system uses the Campbell Scientific CR1000 loggers and RF411 Spread-Spectrum radios to process and route the data. The poles also can support a range of sensors, this pole also has a simple bottom mounted thermistor using the MEA thermistors. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The pole was decommissioned in 2019.", - "about": "http://vocab.aodn.org.au/def/platform/entity/338" + "about": "http://vocab.aodn.org.au/def/platform/entity/338", + "alt_labels": [ + "HIRP4" + ], + "is_latest_label": true }, { "label": "Heron Island Relay Pole 5", "definition": "A 6m steel pole. The pole is solar powered and routes data from the Sensor Floats and other Sensor Relay Poles back to the Base Station located on Heron Island. The system uses the Campbell Scientific CR1000 loggers and RF411 Spread-Spectrum radios to process and route the data. The poles also can support a range of sensors, this pole also has a simple bottom mounted thermistor using the MEA thermistors as well as a Vaisala WXT520 weather station. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The weather station provides measurement of air temperature (Deg. C.), humidity as relative percent, barometric pressure (milliBars or hPa), rainfall amount, intensity and duration, hail amount, intensity and duration (not common on coral reefs!) and wind speed and direction. The wind speed and direction and processed into scalar and vector (directional) based readings and presented as 10 and 30 minute averages to give mean values and maximum values. From these you can get the average wind conditions at either 10 minute or 30 minute periods as well as the gust or maximum wind conditions. The weather station is connected via an SDI-12 interface to a Campbell Scientific CR1000 logger which uses a RF411 radio to transmit the data, every 10 minutes, to the base station on Heron Island and then a Telstra nextG link is used to send the data back to AIMS. The pole was decommissioned in September 2021.", - "about": "http://vocab.aodn.org.au/def/platform/entity/339" + "about": "http://vocab.aodn.org.au/def/platform/entity/339", + "alt_labels": [ + "HIRP5" + ], + "is_latest_label": true }, { "label": "Heron Island Relay Pole 6", "definition": "A 6m steel pole. The pole is solar powered and routes data from the Sensor Floats and other Sensor Relay Poles back to the Base Station located on Heron Island. The system uses the Campbell Scientific CR1000 loggers and RF411 Spread-Spectrum radios to process and route the data. The poles also can support a range of sensors, this pole also has a simple bottom mounted thermistor using the MEA thermistors. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The pole was decommissioned in 2019.", - "about": "http://vocab.aodn.org.au/def/platform/entity/340" + "about": "http://vocab.aodn.org.au/def/platform/entity/340", + "alt_labels": [ + "HIRP6" + ], + "is_latest_label": true }, { "label": "Heron Island Relay Pole 7", "definition": "A 6m steel pole. This pole was to be installed in April 2013, in the Wistari Channel. The pole was decommissioned in September 2021.", - "about": "http://vocab.aodn.org.au/def/platform/entity/341" + "about": "http://vocab.aodn.org.au/def/platform/entity/341", + "alt_labels": [ + "HIRP7" + ], + "is_latest_label": true }, { "label": "Heron Island Relay Pole 8", "definition": "A 6m steel pole. The pole is solar powered and routes data from the Sensor Floats and other Sensor Relay Poles back to the Base Station located on Heron Island. The system uses the Campbell Scientific CR1000 loggers and RF411 Spread-Spectrum radios to process and route the data. The poles also can support a range of sensors. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The pole was decommissioned in September 2021.", - "about": "http://vocab.aodn.org.au/def/platform/entity/342" + "about": "http://vocab.aodn.org.au/def/platform/entity/342", + "alt_labels": [ + "HIRP8" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "coastal structure", "definition": "A fixed man-made structure permanently linked to land with access to water at all states of the tide to which instrumentation may be attached (e.g. pier)", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/17" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/17", + "is_latest_label": true } ] }, @@ -224,12 +328,14 @@ { "label": "drifting surface float", "definition": "An unmanned instrumented platform operating on the surface of the water column often attached to a drogue to track currents rather than winds (e.g. Argos buoy).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/42" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/42", + "is_latest_label": true }, { "label": "fixed subsurface vertical profiler", "definition": "A platform that periodically makes an automated vertical traverse of the water column at a predetermined fixed location. (e.g. YSI vertical profiler HOMER CTD)", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/45" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/45", + "is_latest_label": true }, { "label": "drifting subsurface profiling float", @@ -239,64 +345,77 @@ { "label": "NEMO Argo Float", "definition": "Navigating European Marine Observer (NEMO) Argo floats are manufactured by Optimare Sensorsystems AG. They are 2m (not including antenna) long, and weigh 30kg. Their maximum operational depth is 2000m, with a life time of 5 years / 150 profiles.", - "about": "http://vocab.aodn.org.au/def/platform/entity/296" + "about": "http://vocab.aodn.org.au/def/platform/entity/296", + "is_latest_label": true }, { "label": "NINJA Argo Float with SBE", "definition": "New profilINg float of JApan (NINJA) Argo floats are manufactured by the Tsurumi Seiki Co. (TSK). They are approx. 2420mm long, and weigh approx 32kg. Their maximum operational depth is 2000m. This float has a SBE conductivity sensor.", - "about": "http://vocab.aodn.org.au/def/platform/entity/297" + "about": "http://vocab.aodn.org.au/def/platform/entity/297", + "is_latest_label": true }, { "label": "NAVIS Argo Float with Iridium antenna", "definition": "Navis Argo floats are manufactured by Sea-Bird Electronics Inc. They are 159cm long, and weigh about 17kg. Their maximum operational depth is 2000m, with a life time of 300 CTD profiles. This float uses an alternative to the usual Systeme Argos location and data transmission system, and uses positions from the Global Positioning System (GPS) and data communication using the Iridium satellites. As of 2010, 250 floats have been deployed with Iridium antennas.", - "about": "http://vocab.aodn.org.au/def/platform/entity/298" + "about": "http://vocab.aodn.org.au/def/platform/entity/298", + "is_latest_label": true }, { "label": "ARVOR Argo Float", "definition": "Arvor Argo floats were originally manufactured by Kannad. The scientific instrumentation division for deep-sea oceanography was purchased by NKE Instrumentation on January 1st, 2009. They are 120cm long, and weight about 20kg. Their maximum operational depth is 2100m, with a life time of 4 years / 150+ cycles.", - "about": "http://vocab.aodn.org.au/def/platform/entity/299" + "about": "http://vocab.aodn.org.au/def/platform/entity/299", + "is_latest_label": true }, { "label": "SOLO Argo Float", "definition": "SOLO Argo floats are manufactured by Scripps Institution of Oceanography, UC San Diego. They are 26 inches long, and weigh 18.6kg. Their maximum operational depth is 2300m, with a life time of 8.5 years / 300 profiles.", - "about": "http://vocab.aodn.org.au/def/platform/entity/300" + "about": "http://vocab.aodn.org.au/def/platform/entity/300", + "is_latest_label": true }, { "label": "SOLO Argo Float with Iridium antenna", "definition": "SOLO Argo floats are manufactured by Scripps Institution of Oceanography, UC San Diego. They are 26 inches long, and weigh 18.6kg. Their maximum operational depth is 2300m, with a life time of 8.5 years / 300 profiles. This float uses an alternative to the usual Systeme Argos location and data transmission system, and uses positions from the Global Positioning System (GPS) and data communication using the Iridium satellites. As of 2010, 250 floats have been deployed with Iridium antennas.", - "about": "http://vocab.aodn.org.au/def/platform/entity/301" + "about": "http://vocab.aodn.org.au/def/platform/entity/301", + "is_latest_label": true }, { "label": "SOLO-II Argo Float with Iridium antenna", "definition": "MRV Systems has licensed the intellectual property from Scripps Institution of Oceanography, UC San Diego to manufacture SOLO-II floats. They are 26 inches long, and weigh 18.6kg. Their maximum operational depth is 2300m, with a life time of 8.5 years / 300 profiles.", - "about": "http://vocab.aodn.org.au/def/platform/entity/302" + "about": "http://vocab.aodn.org.au/def/platform/entity/302", + "is_latest_label": true }, { "label": "PALACE R1 Argo Float", "definition": "Profiling Autonomous Lagrangian Circulation Explorer (PALACE) R1 Argo floats were manufactured by Webb Research Corporation. They have been replaced by the APEX model.", - "about": "http://vocab.aodn.org.au/def/platform/entity/303" + "about": "http://vocab.aodn.org.au/def/platform/entity/303", + "is_latest_label": true }, { "label": "APEX Argo Float", "definition": "Autonomous Profiling EXplorer (APEX) Argo floats are manufactured by Teledyne Webb Research. The are 130 cm (not including antenna) long, and weigh 26kg. Their maximum operational depth is 2000m, with a life time of 4 years / 150 profiles.", - "about": "http://vocab.aodn.org.au/def/platform/entity/304" + "about": "http://vocab.aodn.org.au/def/platform/entity/304", + "is_latest_label": true }, { "label": "APEX Argo Float with Iridium antenna", "definition": "Autonomous Profiling EXplorer (APEX) Argo floats are manufactured by Teledyne Webb Research. The are 130 cm (not including antenna) long, and weigh 26kg. Their maximum operational depth is 2000m, with a life time of 4 years / 150 profiles. This float uses an alternative to the usual Systeme Argos location and data transmission system, and uses positions from the Global Positioning System (GPS) and data communication using the Iridium satellites. As of 2010, 250 floats have been deployed with Iridium antennas.", - "about": "http://vocab.aodn.org.au/def/platform/entity/305" + "about": "http://vocab.aodn.org.au/def/platform/entity/305", + "is_latest_label": true }, { "label": "APEX Argo Float with APF8 controller board", "definition": "Autonomous Profiling EXplorer (APEX) Argo floats are manufactured by Teledyne Webb Research. The are 130 cm (not including antenna) long, and weigh 26kg. Their maximum operational depth is 2000m, with a life time of 4 years / 150 profiles. This float uses an APF8 controller board.", - "about": "http://vocab.aodn.org.au/def/platform/entity/306" + "about": "http://vocab.aodn.org.au/def/platform/entity/306", + "is_latest_label": true }, { "label": "PROVOR Argo Float", "definition": "Martec and MetOcean Data Systems Ltd. merged in 2001, with Martec creating PROVOR floats for the French and European markets, and MetOcean will manufacture PROVOR floats for the markets in North America and outside of Europe. PROVOR CTS3 has been designed by IFREMER and MARTEC in industrial partnership. and are manufactured by NKE Instrumentation. The scientific instrumentation division for deep-sea oceanography of Kannad was purchased by NKE Instrumentation on January 1st, 2009. They are 170cm long, and weight about 34kg. Their maximum operational depth is 2000m, with a life time of 4/4.5 years / 170 cycles.", - "about": "http://vocab.aodn.org.au/def/platform/entity/307" + "about": "http://vocab.aodn.org.au/def/platform/entity/307", + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] }, @@ -313,14 +432,23 @@ { "label": "Kinetic Energy", "definition": "Sailing vessel, which is currently flying the flag of Australia (August, 2023)", - "about": "http://vocab.aodn.org.au/def/platform/entity/98" + "about": "http://vocab.aodn.org.au/def/platform/entity/98", + "hidden_labels": [ + "MMSI:503019770" + ], + "alt_labels": [ + "MY434Q" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "ship", "definition": "A large platform operating on the surface of the water column. Objective definitions for guidelines: >50m length (EU) >100 foot length (USA) >300 GRT weight (SOLAS). Subjective definition: a ship is a vessel big enough to carry a boat.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/30" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/30", + "is_latest_label": true }, { "label": "research vessel", @@ -330,144 +458,323 @@ { "label": "Lady Basten", "definition": "Research vessel, which was operated by the Australian Institute of Marine Science (AIMS). It was replaced by the Cape Solander at AIMS. It is now known as the Ocean Hunter III.", - "about": "http://vocab.aodn.org.au/def/platform/entity/10" + "about": "http://vocab.aodn.org.au/def/platform/entity/10", + "hidden_labels": [ + "IMO:7702009" + ], + "is_latest_label": true }, { "label": "Linnaeus", "definition": "RV Linnaeus is a small CSIRO research vessel collecting underway bulk SST from its occasional trips within 200 nm from Hillarys Boat Harbour, WA.", - "about": "http://vocab.aodn.org.au/def/platform/entity/109" + "about": "http://vocab.aodn.org.au/def/platform/entity/109", + "alt_labels": [ + "VHW6005" + ], + "is_latest_label": true }, { "label": "James Kirby", "definition": "Research vessel which is operated by James Cook University (JCU)", - "about": "http://vocab.aodn.org.au/def/platform/entity/11" + "about": "http://vocab.aodn.org.au/def/platform/entity/11", + "hidden_labels": [ + "MMSI:503416000" + ], + "alt_labels": [ + "2189QB" + ], + "is_latest_label": true }, { "label": "Tangaroa", "definition": "Fishing support vessel, which is currently flying the flag of New Zealand (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/111" + "about": "http://vocab.aodn.org.au/def/platform/entity/111", + "hidden_labels": [ + "IMO:9011571" + ], + "alt_labels": [ + "ZMFR" + ], + "is_latest_label": true }, { "label": "Hespérides", "definition": "Research vessel, currently flying the flag of Spain (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/118" + "about": "http://vocab.aodn.org.au/def/platform/entity/118", + "hidden_labels": [ + "IMO:8803563" + ], + "alt_labels": [ + "EBBW" + ], + "is_latest_label": true }, { "label": "Marion Dufresne", "definition": "Research/survey vessel, currently flying the flag of France.", - "about": "http://vocab.aodn.org.au/def/platform/entity/12" + "about": "http://vocab.aodn.org.au/def/platform/entity/12", + "hidden_labels": [ + "IMO:9050814" + ], + "alt_labels": [ + "FNIN" + ], + "is_latest_label": true }, { "label": "Melville", "definition": "Research vessel, which was operated by Scripps Oceanography.", - "about": "http://vocab.aodn.org.au/def/platform/entity/13" + "about": "http://vocab.aodn.org.au/def/platform/entity/13", + "alt_labels": [ + "WECB" + ], + "is_latest_label": true }, { "label": "Mirai", "definition": "Research vessel, currently flying the flag of Japan.", - "about": "http://vocab.aodn.org.au/def/platform/entity/14" + "about": "http://vocab.aodn.org.au/def/platform/entity/14", + "hidden_labels": [ + "IMO:6919423" + ], + "alt_labels": [ + "JNSR" + ], + "is_latest_label": true }, { "label": "Glaucus", "definition": "Research vessel, which was operated by the Department of Environment, Climate Change and Water (DECCW), NSW.", - "about": "http://vocab.aodn.org.au/def/platform/entity/17" + "about": "http://vocab.aodn.org.au/def/platform/entity/17", + "is_latest_label": true }, { "label": "Bombora", "definition": "Research vessel which is operated by the Office of Environment and Heritage (OEH), NSW.", - "about": "http://vocab.aodn.org.au/def/platform/entity/18" + "about": "http://vocab.aodn.org.au/def/platform/entity/18", + "hidden_labels": [ + "MMSI:503041620" + ], + "alt_labels": [ + "SY907" + ], + "is_latest_label": true }, { "label": "Yolla", "definition": "Research vessel, which is operated by Deakin University.", - "about": "http://vocab.aodn.org.au/def/platform/entity/19" + "about": "http://vocab.aodn.org.au/def/platform/entity/19", + "hidden_labels": [ + "Unique Identifier:MSV12324" + ], + "is_latest_label": true }, { "label": "Franklin", "definition": "Research ship vessel, which was flying the flag of Australia. It was decommissioned in 2002.", - "about": "http://vocab.aodn.org.au/def/platform/entity/273" + "about": "http://vocab.aodn.org.au/def/platform/entity/273", + "hidden_labels": [ + "IMO:8301797" + ], + "alt_labels": [ + "VJJF" + ], + "is_latest_label": true }, { "label": "Kaharoa II", "definition": "Research vessel owned by NIWA, which is flying the flag of New Zealand.", - "about": "http://vocab.aodn.org.au/def/platform/entity/357" + "about": "http://vocab.aodn.org.au/def/platform/entity/357", + "hidden_labels": [ + "IMO:9968372" + ], + "alt_labels": [ + "ZMNW" + ], + "is_latest_label": true }, { "label": "Kaharoa", "definition": "Research vessel owned by NIWA, currently flying the flag of New Zealand (July 2015).", - "about": "http://vocab.aodn.org.au/def/platform/entity/4" + "about": "http://vocab.aodn.org.au/def/platform/entity/4", + "hidden_labels": [ + "IMO:8000898" + ], + "alt_labels": [ + "ZM7552" + ], + "is_latest_label": true }, { "label": "Everest", "definition": "This multi purpose vessel (MPV), is classed as an offshore construction vessel, which is currently flying the flag of Bahamas (March 2021)", - "about": "http://vocab.aodn.org.au/def/platform/entity/62" + "about": "http://vocab.aodn.org.au/def/platform/entity/62", + "hidden_labels": [ + "IMO:9769130" + ], + "alt_labels": [ + "C6CZ6" + ], + "is_latest_label": true }, { "label": "Nuyina", "definition": "Research and supply vessel owned by the Australian Government, which is currently flying the flag of Australia.", - "about": "http://vocab.aodn.org.au/def/platform/entity/70" + "about": "http://vocab.aodn.org.au/def/platform/entity/70", + "hidden_labels": [ + "IMO:9797060" + ], + "alt_labels": [ + "VMIC" + ], + "is_latest_label": true }, { "label": "Cape Ferguson", "definition": "Research vessel owned by the Australian Institute of Marine Science (AIMS). Active as Mar 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/71" + "about": "http://vocab.aodn.org.au/def/platform/entity/71", + "hidden_labels": [ + "IMO:9240861" + ], + "alt_labels": [ + "VNCF" + ], + "is_latest_label": true }, { "label": "Solander", "definition": "Research vessel owned by the Australian Institute of Marine Science (AIMS). Active as Mar 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/72" + "about": "http://vocab.aodn.org.au/def/platform/entity/72", + "hidden_labels": [ + "IMO:9423463" + ], + "alt_labels": [ + "VMQ9273" + ], + "is_latest_label": true }, { "label": "Ramform Sovereign", "definition": "Research/survey vessel, currently flying the flag of Singapore (March 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/894" + "about": "http://vocab.aodn.org.au/def/platform/entity/894", + "hidden_labels": [ + "IMO:9390460" + ], + "alt_labels": [ + "9VBN9" + ], + "is_latest_label": true }, { "label": "Falkor", "definition": "Research/survey vessel, operating for the Schmidt Ocean Institute, currently flying the flag of the Cayman Islands (March 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/895" + "about": "http://vocab.aodn.org.au/def/platform/entity/895", + "hidden_labels": [ + "IMO:7928677" + ], + "alt_labels": [ + "ZCYL5" + ], + "is_latest_label": true }, { "label": "Polarstern", "definition": "Research vessel operated by the Alfred Wegener Institute for Polar and Marine Research. Currently flying the flag of Germany (February, 2024).", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/06AQ" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/06AQ", + "hidden_labels": [ + "IMO:8013132" + ], + "alt_labels": [ + "DBLK" + ], + "is_latest_label": true }, { "label": "Investigator", "definition": "CSIRO Marine National Facility research vessel. Length 94m.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/096U" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/096U", + "hidden_labels": [ + "IMO:9616888" + ], + "alt_labels": [ + "VLMJ" + ], + "is_latest_label": true }, { "label": "Aurora Australis", "definition": "Research vessel owned by P and O Polar, length 94.91m. Active as at Mar 2013.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/09AR" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/09AR", + "hidden_labels": [ + "IMO:8717283" + ], + "alt_labels": [ + "VNAA" + ], + "is_latest_label": true }, { "label": "Southern Surveyor", "definition": "Was a CSIRO Marine National Facility research vessel. Built 1972 as Ranger Callisto (Norway), then became the UK registered Kurd (1 Jan 1982), then renamed Kurdeen (2 Jan 1982). Renamed Southern Surveyor 31 Dec 1982 and registered in Australia from 15 Nov 1988. Renamed Jupiter in July 2014 (St Kitts and Nevis). Length 66.16m.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/09SS" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/09SS", + "hidden_labels": [ + "IMO:7113002" + ], + "alt_labels": [ + "VLHJ" + ], + "is_latest_label": true }, { "label": "Okeanos Explorer", "definition": "Research vessel owned by NOAA, which is currently flying the US flag.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/334A" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/334A", + "hidden_labels": [ + "IMO:8835114" + ], + "alt_labels": [ + "WTDH" + ], + "is_latest_label": true }, { "label": "Oscar Elton Sette", "definition": "\"IMO\": \"8835097\",\n \"title\": \"NOAA Ship\",\n \"country\": \"United States\",\n \"platformclass\": \"research vessel\",\n \"callsign\": \"WTEE\",\n \"pennant\": \"R 335\",\n \"commissioned\": \"2003-01-23\",\n \"previous_name\": \"Adventurous\",\n \"length\": \"68\",\n \"built\": \"1988-08\",\n \"notes\": \"US NODC WOD code 9315.\"", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/33OC" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/33OC", + "hidden_labels": [ + "IMO:8835097" + ], + "alt_labels": [ + "WTEE" + ], + "is_latest_label": true }, { "label": "L'Astrolabe {FHZI}", "definition": "Research vessel built 1986 as the Canadian vessel Fort Resolution, re-registered in France and renamed Austral Fish 12 May 1988, renamed L'Astrolabe 18 May 1989. Re-registered in French Southern Territories between 20 Jun 1995 - 11 Oct 2006, then re-registered in France. Owned by Bourbon Offshore Surf. Commissioned by TAAF and Institut Polaire Francais Paul-Emile Victor. It was decommissioned in 2017.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/353L" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/353L", + "hidden_labels": [ + "IMO:8418198" + ], + "alt_labels": [ + "FHZI" + ], + "is_latest_label": true }, { "label": "L'Astrolabe {FASB}", "definition": "The Astrolabe is a research vessel which is an icebreaker (Class IB5 of the Polar Code), built in 2017 as part of a partnership between the French Southern and Antarctic Territories (TAAF), the French Polar Institute Paul-Emile Victor (IPEV) and the Ministry of Defense (National Navy (MN)). The partnership is made through the creation of a public interest grouping between the TAAF and the MN and an agreement between the MN and the IPEV.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/35O7" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/35O7", + "hidden_labels": [ + "IMO:9797539" + ], + "alt_labels": [ + "FASB" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "vessel of opportunity", @@ -477,984 +784,2344 @@ { "label": "OOCL Panama", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong January 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/1" + "about": "http://vocab.aodn.org.au/def/platform/entity/1", + "hidden_labels": [ + "IMO:9355769" + ], + "alt_labels": [ + "VRDU8" + ], + "is_latest_label": true }, { "label": "Stadacona", "definition": "General Cargo ship vessel, which is currently flying the flag of Bahamas (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/101" + "about": "http://vocab.aodn.org.au/def/platform/entity/101", + "hidden_labels": [ + "IMO:8010934" + ], + "alt_labels": [ + "C6FS9" + ], + "is_latest_label": true }, { "label": "Wana Bhum", "definition": "Container ship vessel, which is currently flying the flag of Thailand (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/102" + "about": "http://vocab.aodn.org.au/def/platform/entity/102", + "hidden_labels": [ + "IMO:9308663" + ], + "alt_labels": [ + "HSB3403" + ], + "is_latest_label": true }, { "label": "Iron Yandi", "definition": "Bulk Carrier vessel, which was flying the flag of Australia. It was renamed the Star Yandi (call sign: C6ZY9) after July 2012. It was disposed of in approximately 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/103" + "about": "http://vocab.aodn.org.au/def/platform/entity/103", + "hidden_labels": [ + "IMO:9122904" + ], + "alt_labels": [ + "VNVR" + ], + "is_latest_label": true }, { "label": "Pacific Sun", "definition": "Passenger (Cruise) ship Vessel, which was flying the flag of Malta. It was renamed the Henna after July 2012.", - "about": "http://vocab.aodn.org.au/def/platform/entity/104" + "about": "http://vocab.aodn.org.au/def/platform/entity/104", + "hidden_labels": [ + "IMO:8314122" + ], + "alt_labels": [ + "9HA2479" + ], + "is_latest_label": true }, { "label": "Portland", "definition": "General Cargo ship vessel, which is currently flying the flag of Australia (May 2013). It was disposed of in 2016.", - "about": "http://vocab.aodn.org.au/def/platform/entity/105" + "about": "http://vocab.aodn.org.au/def/platform/entity/105", + "hidden_labels": [ + "IMO:8509117" + ], + "alt_labels": [ + "VNAH" + ], + "is_latest_label": true }, { "label": "Pacific Celebes", "definition": "General Cargo ship vessel, which is currently flying the flag of Hong Kong (May 2013). It was disposed of in approximately 2012.", - "about": "http://vocab.aodn.org.au/def/platform/entity/106" + "about": "http://vocab.aodn.org.au/def/platform/entity/106", + "hidden_labels": [ + "IMO:8126599" + ], + "alt_labels": [ + "VRZN9" + ], + "is_latest_label": true }, { "label": "Xutra Bhum", "definition": "Container ship vessel, which is currently flying the flag of Thailand (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/110" + "about": "http://vocab.aodn.org.au/def/platform/entity/110", + "hidden_labels": [ + "IMO:9308675" + ], + "alt_labels": [ + "HSB3402" + ], + "is_latest_label": true }, { "label": "ANL Windarra", "definition": "Container ship vessel, currently flying the flag of Marshall Islands (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/119" + "about": "http://vocab.aodn.org.au/def/platform/entity/119", + "hidden_labels": [ + "IMO:9324849" + ], + "alt_labels": [ + "V7LE9" + ], + "is_latest_label": true }, { "label": "Capitaine Quiros", "definition": "Cargo ship vessel. It was called the Forum Samoa II from 2001 until June 2010. It was then shortly called the Opal Harmony, then Southern Moana, then Capitaine Fearn. It currently flies the flag of Singapore (2018).", - "about": "http://vocab.aodn.org.au/def/platform/entity/16" + "about": "http://vocab.aodn.org.au/def/platform/entity/16", + "hidden_labels": [ + "IMO:9210713" + ], + "alt_labels": [ + "9V3505" + ], + "is_latest_label": true }, { "label": "Joana Bonita", "definition": "General Cargo ship vessel. It was called the Joana Bonita from 1988 until April 2002. It is now called the Xuan De Men (Panama, June 2010). It was disposed of in approximately 2010.", - "about": "http://vocab.aodn.org.au/def/platform/entity/199" + "about": "http://vocab.aodn.org.au/def/platform/entity/199", + "hidden_labels": [ + "IMO:7813597" + ], + "alt_labels": [ + "3EFY6" + ], + "is_latest_label": true }, { "label": "M-Sagar", "definition": "Container ship vessel. It was called the d M-Sagar between Aug 2010 and Aug 2012, and is now called the Meratus Gorontalo (Indonesia, Feb 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/200" + "about": "http://vocab.aodn.org.au/def/platform/entity/200", + "hidden_labels": [ + "IMO:9202895" + ], + "alt_labels": [ + "3FHA9" + ], + "is_latest_label": true }, { "label": "Medontario", "definition": "Container ship vessel, which is currently flying the flag of Cyprus (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/201" + "about": "http://vocab.aodn.org.au/def/platform/entity/201", + "hidden_labels": [ + "IMO:9437115" + ], + "alt_labels": [ + "5BDC2" + ], + "is_latest_label": true }, { "label": "Forum Samoa II", "definition": "General Cargo ship vessel. It was called the Forum Samoa II from 2001 until June 2010. It was then shortly called the Opal Harmony, then Southern Moana, and is now known as Capitaine Fearn (July, 2015).", - "about": "http://vocab.aodn.org.au/def/platform/entity/202" + "about": "http://vocab.aodn.org.au/def/platform/entity/202", + "hidden_labels": [ + "IMO:9210713" + ], + "alt_labels": [ + "5WDC" + ], + "is_latest_label": true }, { "label": "Montreal Senator", "definition": "Container ship vessel. It was called the Montreal Senator between June 1998 and January 2006, it is now called the Strait Mas (Indonesia, January 2009). It was disposed of in 2016.", - "about": "http://vocab.aodn.org.au/def/platform/entity/203" + "about": "http://vocab.aodn.org.au/def/platform/entity/203", + "hidden_labels": [ + "IMO:8705424" + ], + "alt_labels": [ + "9MCN6" + ], + "is_latest_label": true }, { "label": "Swan River Bridge", "definition": "Container ship vessel, which is currently flying the flag of Singapore (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/204" + "about": "http://vocab.aodn.org.au/def/platform/entity/204", + "hidden_labels": [ + "IMO:9550395" + ], + "alt_labels": [ + "9V8218" + ], + "is_latest_label": true }, { "label": "Australia Star", "definition": "Container ship vessel. It was called the Australia Star from 1978 until Feb 1989, and March 1992 until May 1994. It was disposed of in 2001 (Sea Express).", - "about": "http://vocab.aodn.org.au/def/platform/entity/205" + "about": "http://vocab.aodn.org.au/def/platform/entity/205", + "hidden_labels": [ + "IMO:7636676" + ], + "alt_labels": [ + "9VBZ" + ], + "is_latest_label": true }, { "label": "Tower Bridge", "definition": "Container ship vessel, which is currently flying the flag of Singapore (May 2013). It was disposed of in approximately 2010.", - "about": "http://vocab.aodn.org.au/def/platform/entity/206" + "about": "http://vocab.aodn.org.au/def/platform/entity/206", + "hidden_labels": [ + "IMO:8505989" + ], + "alt_labels": [ + "9VMI6" + ], + "is_latest_label": true }, { "label": "Anro Asia", "definition": "Container ship vessel, which flew the flag of Singapore. It was disposed of in 1997.", - "about": "http://vocab.aodn.org.au/def/platform/entity/207" + "about": "http://vocab.aodn.org.au/def/platform/entity/207", + "hidden_labels": [ + "IMO:7631456" + ], + "alt_labels": [ + "9VUU" + ], + "is_latest_label": true }, { "label": "New Zealand Star", "definition": "Container ship vessel, which flew the flag of Singapore. It was disposed of in 1998.", - "about": "http://vocab.aodn.org.au/def/platform/entity/208" + "about": "http://vocab.aodn.org.au/def/platform/entity/208", + "hidden_labels": [ + "IMO:7113301" + ], + "alt_labels": [ + "9VWM" + ], + "is_latest_label": true }, { "label": "Capitaine Tasman", "definition": "General Cargo ship vessel. It was called the Capitaine Tasman from March 2002 until April 2010. This ship's callsign was P3CV9 in 2002. It is now called Ual Coburg (Cyprus, August 2009).", - "about": "http://vocab.aodn.org.au/def/platform/entity/209" + "about": "http://vocab.aodn.org.au/def/platform/entity/209", + "hidden_labels": [ + "IMO:9210725" + ], + "alt_labels": [ + "A3BN5", + "P3CV9" + ], + "is_latest_label": true }, { "label": "Fua Kavenga", "definition": "Ro-ro cargo ship vessel. It was called the Fua Kavenga from 1979 until May 2002. It is now called the Ocean Glory (Comoros, May 2013). It was disposed of in approximately 2011.", - "about": "http://vocab.aodn.org.au/def/platform/entity/210" + "about": "http://vocab.aodn.org.au/def/platform/entity/210", + "hidden_labels": [ + "IMO:7820538" + ], + "alt_labels": [ + "A3CA" + ], + "is_latest_label": true }, { "label": "Southern Moana", "definition": "General Cargo ship vessel. It was called the Southern Moana from Dec 2001 until may 2011. It is now called the Red Rock (Indonesia, October 2010).", - "about": "http://vocab.aodn.org.au/def/platform/entity/211" + "about": "http://vocab.aodn.org.au/def/platform/entity/211", + "hidden_labels": [ + "IMO:9197026" + ], + "alt_labels": [ + "A3CG3" + ], + "is_latest_label": true }, { "label": "Nedlloyd Nelson", "definition": "Container ship vessel. It was called the P&O Nedlloyd Nelson from July 2002 until May 2004. It is now called the Hansa Nordburg (Liberia, January 2008).", - "about": "http://vocab.aodn.org.au/def/platform/entity/212" + "about": "http://vocab.aodn.org.au/def/platform/entity/212", + "hidden_labels": [ + "IMO:9236212" + ], + "alt_labels": [ + "A8AI6" + ], + "is_latest_label": true }, { "label": "MSC Hobart", "definition": "Container ship vessel. This ship was also called the MSC Hobart from Oct 2004 until May 2007. It has been named as such again from July 2007, and is currently flying the flag of Liberia (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/213" + "about": "http://vocab.aodn.org.au/def/platform/entity/213", + "hidden_labels": [ + "IMO:9077288" + ], + "alt_labels": [ + "A8AK3" + ], + "is_latest_label": true }, { "label": "CMA CGM Charcot", "definition": "Container ship vessel. It was called the CMA CGA Charcot from Nov 2007 until Aug 2011. It is now called the Euro Max (Liberia, October 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/214" + "about": "http://vocab.aodn.org.au/def/platform/entity/214", + "hidden_labels": [ + "IMO:9232773" + ], + "alt_labels": [ + "A8HE4" + ], + "is_latest_label": true }, { "label": "CMA CGM Mimosa", "definition": "Container ship vessel, which is currently flying the flag of Liberia (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/215" + "about": "http://vocab.aodn.org.au/def/platform/entity/215", + "hidden_labels": [ + "IMO:9314961" + ], + "alt_labels": [ + "A8IF2" + ], + "is_latest_label": true }, { "label": "CMA CGM Melbourne", "definition": "Container ship vessel. It was called the CMA CGM Melbourne from 2006 until Aug 2008. It is now called the Westertal (Liberia, March 2008).", - "about": "http://vocab.aodn.org.au/def/platform/entity/216" + "about": "http://vocab.aodn.org.au/def/platform/entity/216", + "hidden_labels": [ + "IMO:9316347" + ], + "alt_labels": [ + "A8IG9" + ], + "is_latest_label": true }, { "label": "Passat Spring", "definition": "Container ship vessel, which is currently flying the flag of Liberia (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/217" + "about": "http://vocab.aodn.org.au/def/platform/entity/217", + "hidden_labels": [ + "IMO:9316359" + ], + "alt_labels": [ + "A8JY8" + ], + "is_latest_label": true }, { "label": "CMA CGM Auckland", "definition": "Container ship vessel, which is currently flying the flag of Liberia (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/218" + "about": "http://vocab.aodn.org.au/def/platform/entity/218", + "hidden_labels": [ + "IMO:9344564" + ], + "alt_labels": [ + "A8KD7" + ], + "is_latest_label": true }, { "label": "Ital Ottima", "definition": "Container ship vessel, which is currently flying the flag of Liberia (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/219" + "about": "http://vocab.aodn.org.au/def/platform/entity/219", + "hidden_labels": [ + "IMO:9337262" + ], + "alt_labels": [ + "A8LN3" + ], + "is_latest_label": true }, { "label": "Buxlink", "definition": "Container ship vessel, which is currently flying the flag of Liberia (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/220" + "about": "http://vocab.aodn.org.au/def/platform/entity/220", + "hidden_labels": [ + "IMO:9235816" + ], + "alt_labels": [ + "A8SW3" + ], + "is_latest_label": true }, { "label": "AS Cypria", "definition": "Container ship vessel, which is currently flying the flag of Liberia (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/221" + "about": "http://vocab.aodn.org.au/def/platform/entity/221", + "hidden_labels": [ + "IMO:9315812" + ], + "alt_labels": [ + "A8UY4" + ], + "is_latest_label": true }, { "label": "MSC Federica", "definition": "A vessel, which flew the flag of Cyprus. It was disposed of in approximately 2010.", - "about": "http://vocab.aodn.org.au/def/platform/entity/222" + "about": "http://vocab.aodn.org.au/def/platform/entity/222", + "hidden_labels": [ + "IMO:7347512" + ], + "alt_labels": [ + "C4LV" + ], + "is_latest_label": true }, { "label": "Brisbane Star", "definition": "Container ship vessel. It was called the Brisbane Star from July 1993 until Jan 1998. It was disposed of in 2002.", - "about": "http://vocab.aodn.org.au/def/platform/entity/223" + "about": "http://vocab.aodn.org.au/def/platform/entity/223", + "hidden_labels": [ + "IMO:7516371" + ], + "alt_labels": [ + "C6LY4" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Adelaide", "definition": "Container ship vessel. It was called the P&O Nedlloyd Adelaide from Oct 2000 until Jan 2006. It is now called the Sky Interest (Hong Kong, 2006). It was disposed of in 2007.", - "about": "http://vocab.aodn.org.au/def/platform/entity/224" + "about": "http://vocab.aodn.org.au/def/platform/entity/224", + "hidden_labels": [ + "IMO:7428380" + ], + "alt_labels": [ + "C6RJ6" + ], + "is_latest_label": true }, { "label": "CMA CGM Utrillo", "definition": "Container ship vessel, which flew the flag of Bahamas. It is now called the CMA CGM Matisse (Cyprus, January 2009).", - "about": "http://vocab.aodn.org.au/def/platform/entity/225" + "about": "http://vocab.aodn.org.au/def/platform/entity/225", + "hidden_labels": [ + "IMO:9192428" + ], + "alt_labels": [ + "C6VL6" + ], + "is_latest_label": true }, { "label": "Stadt Weimar", "definition": "Container ship vessel. This ship was also called the Stadt Weimar from 2006 until March 2011. It has been named as such again from March 2012, and is currently flying the flag of Germany (July 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/226" + "about": "http://vocab.aodn.org.au/def/platform/entity/226", + "hidden_labels": [ + "IMO:9320051" + ], + "alt_labels": [ + "DCHO" + ], + "is_latest_label": true }, { "label": "Canberra Express", "definition": "Container ship vessel, which is currently flying the flag of Germany (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/227" + "about": "http://vocab.aodn.org.au/def/platform/entity/227", + "hidden_labels": [ + "IMO:9224049" + ], + "alt_labels": [ + "DFCW2" + ], + "is_latest_label": true }, { "label": "Wellington Express {DFCX2}", "definition": "Container ship vessel, which is currently flying the flag of Germany (May 2013). The ship's callsign was VSUA5 from 2006 until May 2007.", - "about": "http://vocab.aodn.org.au/def/platform/entity/228" + "about": "http://vocab.aodn.org.au/def/platform/entity/228", + "hidden_labels": [ + "IMO:9224051" + ], + "alt_labels": [ + "DFCX2" + ], + "is_latest_label": true }, { "label": "Adelaide Express", "definition": "Container ship vessel. It was called the Adelaide Express form Feb 2006 until July 2009. It is now called the Classica (Antigua & Barbuda, April 2009). It was disposed of in 2016.", - "about": "http://vocab.aodn.org.au/def/platform/entity/229" + "about": "http://vocab.aodn.org.au/def/platform/entity/229", + "hidden_labels": [ + "IMO:9143245" + ], + "alt_labels": [ + "DHSN" + ], + "is_latest_label": true }, { "label": "Northwest Sanderling", "definition": "LNG tanker vessel, which is currently flying the flag of Australia (June 2017).", - "about": "http://vocab.aodn.org.au/def/platform/entity/23" + "about": "http://vocab.aodn.org.au/def/platform/entity/23", + "hidden_labels": [ + "IMO:8608872" + ], + "alt_labels": [ + "VNVZ" + ], + "is_latest_label": true }, { "label": "Contship Action", "definition": "Container ship vessel, managed by Contship Containerlines, and was sold in 2003. It was disposed of in approximately 2012.", - "about": "http://vocab.aodn.org.au/def/platform/entity/230" + "about": "http://vocab.aodn.org.au/def/platform/entity/230", + "hidden_labels": [ + "IMO:9122215" + ], + "alt_labels": [ + "DLHV" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Encounter", "definition": "Container ship vessel. It was called the P&O Nedlloyd Encounter from April 2002 until Jan 2006. The ship's callsign was ELZZ4 from 2003 until October 2004. It is now called the Santa Rebecca (Germany, January 2008).", - "about": "http://vocab.aodn.org.au/def/platform/entity/231" + "about": "http://vocab.aodn.org.au/def/platform/entity/231", + "hidden_labels": [ + "IMO:9227302" + ], + "alt_labels": [ + "DPGZ", + "ELZZ4" + ], + "is_latest_label": true }, { "label": "Bay Bridge", "definition": "Container ship vessel, which is currently flying the flag of Liberia (May 2013). It was disposed of in approximately 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/232" + "about": "http://vocab.aodn.org.au/def/platform/entity/232", + "hidden_labels": [ + "IMO:8413203" + ], + "alt_labels": [ + "ELES7" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Otago", "definition": "Container ship vessel. It was called the P&O Nedlloyd Otago from Aug 1999 until July 2000. It is now called the Provider (Liberia, March 2006). It was disposed of in approximately 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/233" + "about": "http://vocab.aodn.org.au/def/platform/entity/233", + "hidden_labels": [ + "IMO:7807263" + ], + "alt_labels": [ + "ELJP4" + ], + "is_latest_label": true }, { "label": "Pacific Triangle", "definition": "Bulk Carrier vessel, which is currently flying the flag of Liberia (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/234" + "about": "http://vocab.aodn.org.au/def/platform/entity/234", + "hidden_labels": [ + "IMO:9189158" + ], + "alt_labels": [ + "ELXS8" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Salerno", "definition": "Container ship vessel. It was called the P&O Nedlloyd Salerno from July 2000 until June 2002. It is now called the Isolde (Liberia, Feb 2008).", - "about": "http://vocab.aodn.org.au/def/platform/entity/235" + "about": "http://vocab.aodn.org.au/def/platform/entity/235", + "hidden_labels": [ + "IMO:9187875" + ], + "alt_labels": [ + "ELYE9" + ], + "is_latest_label": true }, { "label": "MSC New Plymouth", "definition": "Container ship vessel. It was called the MSC New Plymouth from January 2002 until January 2004. It is now called the Hansa Aelesund (Liberia, May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/236" + "about": "http://vocab.aodn.org.au/def/platform/entity/236", + "hidden_labels": [ + "IMO:9221061" + ], + "alt_labels": [ + "ELZT9" + ], + "is_latest_label": true }, { "label": "Dalian", "definition": "Container ship vessel, which is currently flying the flag of Malta (September, 2023).", - "about": "http://vocab.aodn.org.au/def/platform/entity/237" + "about": "http://vocab.aodn.org.au/def/platform/entity/237", + "hidden_labels": [ + "IMO:9391268" + ], + "alt_labels": [ + "9HXJ9" + ], + "is_latest_label": true }, { "label": "Melbourne Star", "definition": "Container ship vessel, which is currently flying the flag of UK (June 2011). It was disposed of in 2003.", - "about": "http://vocab.aodn.org.au/def/platform/entity/238" + "about": "http://vocab.aodn.org.au/def/platform/entity/238", + "hidden_labels": [ + "IMO:7108162" + ], + "alt_labels": [ + "GOVL" + ], + "is_latest_label": true }, { "label": "Encounter Bay", "definition": "Container ship vessel, which was flying the flag of UK. It was disposed of in 1999.", - "about": "http://vocab.aodn.org.au/def/platform/entity/239" + "about": "http://vocab.aodn.org.au/def/platform/entity/239", + "hidden_labels": [ + "IMO:6818461" + ], + "alt_labels": [ + "GYRW" + ], + "is_latest_label": true }, { "label": "Tonsberg", "definition": "Vehicle carrier vessel, currently flying the flag of Malta (February 2017).", - "about": "http://vocab.aodn.org.au/def/platform/entity/24" + "about": "http://vocab.aodn.org.au/def/platform/entity/24", + "hidden_labels": [ + "IMO:9515383" + ], + "alt_labels": [ + "HA2066" + ], + "is_latest_label": true }, { "label": "Flinders Bay", "definition": "Container ship vessel, which was flying the flag of UK. It was disposed of in 1996.", - "about": "http://vocab.aodn.org.au/def/platform/entity/240" + "about": "http://vocab.aodn.org.au/def/platform/entity/240", + "hidden_labels": [ + "IMO:6822541" + ], + "alt_labels": [ + "GYSA" + ], + "is_latest_label": true }, { "label": "Botany Bay", "definition": "Container ship vessel, which was flying the flag of UK. It was disposed of in 1999.", - "about": "http://vocab.aodn.org.au/def/platform/entity/241" + "about": "http://vocab.aodn.org.au/def/platform/entity/241", + "hidden_labels": [ + "IMO:6907016" + ], + "alt_labels": [ + "GYSE" + ], + "is_latest_label": true }, { "label": "Discovery Bay", "definition": "Container ship vessel, which was flying the flag of Saint Vincent & Grenadines. It was disposed of in 1998.", - "about": "http://vocab.aodn.org.au/def/platform/entity/242" + "about": "http://vocab.aodn.org.au/def/platform/entity/242", + "hidden_labels": [ + "IMO:6901426" + ], + "alt_labels": [ + "GYXG" + ], + "is_latest_label": true }, { "label": "America Star", "definition": "Container ship vessel, which was flying the flag of UK. It was disposed of in 2003.", - "about": "http://vocab.aodn.org.au/def/platform/entity/243" + "about": "http://vocab.aodn.org.au/def/platform/entity/243", + "hidden_labels": [ + "IMO:7052909" + ], + "alt_labels": [ + "GZKA" + ], + "is_latest_label": true }, { "label": "MSC Didem", "definition": "Container ship vessel, which is currently flying the flag of Panama (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/244" + "about": "http://vocab.aodn.org.au/def/platform/entity/244", + "hidden_labels": [ + "IMO:8517891" + ], + "alt_labels": [ + "H8VZ" + ], + "is_latest_label": true }, { "label": "Safmarine Meru", "definition": "Container ship vessel, which is currently flying the flag of Singapore (April 2012). It was disposed of in 2016.", - "about": "http://vocab.aodn.org.au/def/platform/entity/245" + "about": "http://vocab.aodn.org.au/def/platform/entity/245", + "hidden_labels": [ + "IMO:9311696" + ], + "alt_labels": [ + "9V6535", + "MNDC9" + ], + "is_latest_label": true }, { "label": "Wellington Express {MWSD3}", "definition": "Container ship vessel. It was called the Wellington Express from 1996 until August 2002. It is now caled the Troy Y (Moldova, August 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/246" + "about": "http://vocab.aodn.org.au/def/platform/entity/246", + "hidden_labels": [ + "IMO:9130901" + ], + "alt_labels": [ + "MWSD3" + ], + "is_latest_label": true }, { "label": "Polar Star", "definition": "Icebreaker vessel, which is currently flying the flag of the US (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/247" + "about": "http://vocab.aodn.org.au/def/platform/entity/247", + "hidden_labels": [ + "IMO:7367471" + ], + "alt_labels": [ + "NBTM" + ], + "is_latest_label": true }, { "label": "SA Sederberg", "definition": "Container ship vessel, which was flying the flag of Belgium (2003). It was disposed of in approximately 2008.", - "about": "http://vocab.aodn.org.au/def/platform/entity/248" + "about": "http://vocab.aodn.org.au/def/platform/entity/248", + "hidden_labels": [ + "IMO:7423031" + ], + "alt_labels": [ + "ONAT" + ], + "is_latest_label": true }, { "label": "Maersk Constantia", "definition": "Container ship vessel. It was called the Maersk Constantia from May 2001 until June 2008. It was disposed of in 2008.", - "about": "http://vocab.aodn.org.au/def/platform/entity/249" + "about": "http://vocab.aodn.org.au/def/platform/entity/249", + "hidden_labels": [ + "IMO:7422207" + ], + "alt_labels": [ + "ONAV" + ], + "is_latest_label": true }, { "label": "ANL Waratah", "definition": "Container ship vessel, currently flying the flag of Liberia (March 2017).", - "about": "http://vocab.aodn.org.au/def/platform/entity/25" + "about": "http://vocab.aodn.org.au/def/platform/entity/25", + "hidden_labels": [ + "IMO:9326794" + ], + "alt_labels": [ + "A8IY2" + ], + "is_latest_label": true }, { "label": "Lowlands Prosperity", "definition": "Bulk Carrier vessel. It was called the Lowlands Prosperity from Aug 2004 until Jan 2012. It is now called the John Oldendorff (Liberia, September 2011).", - "about": "http://vocab.aodn.org.au/def/platform/entity/250" + "about": "http://vocab.aodn.org.au/def/platform/entity/250", + "hidden_labels": [ + "IMO:9225005" + ], + "alt_labels": [ + "ONDB" + ], + "is_latest_label": true }, { "label": "Pacific Endeavour {VRUK8}", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (September, 2023).", - "about": "http://vocab.aodn.org.au/def/platform/entity/251" + "about": "http://vocab.aodn.org.au/def/platform/entity/251", + "hidden_labels": [ + "IMO:9913200" + ], + "alt_labels": [ + "VRUK8" + ], + "is_latest_label": true }, { "label": "Contship Ambition", "definition": "Container ship vessel. It was called the CONTSHIP Ambition from 1996 until Dec 2002. It is now called the Pisti (Panama, April 2008).", - "about": "http://vocab.aodn.org.au/def/platform/entity/252" + "about": "http://vocab.aodn.org.au/def/platform/entity/252", + "hidden_labels": [ + "IMO:9122203" + ], + "alt_labels": [ + "P3GU7" + ], + "is_latest_label": true }, { "label": "Bartok", "definition": "General cargo ship vessel. It was called the Bartok from 1990 until 1995. It is now called the Crown Pearl (Panama, April 2010). It was disposed of in approximately 2012.", - "about": "http://vocab.aodn.org.au/def/platform/entity/253" + "about": "http://vocab.aodn.org.au/def/platform/entity/253", + "hidden_labels": [ + "IMO:8702850" + ], + "alt_labels": [ + "P3ZB3" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Jakarta", "definition": "Container ship vessel. It was called the P&O Nedlloyd Jakarta from 1998 until Feb 2006. It is now called the Maersk Penang (Netherlands, November 2010).", - "about": "http://vocab.aodn.org.au/def/platform/entity/254" + "about": "http://vocab.aodn.org.au/def/platform/entity/254", + "hidden_labels": [ + "IMO:9168192" + ], + "alt_labels": [ + "PDHU" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Sydney", "definition": "Container ship vessel. It was called the P&O Nedlloyd Sydney from 1998 until Feb 2006. It is now called the Maersk Pembroke (Netherlands, January 2011).", - "about": "http://vocab.aodn.org.au/def/platform/entity/255" + "about": "http://vocab.aodn.org.au/def/platform/entity/255", + "hidden_labels": [ + "IMO:9168180" + ], + "alt_labels": [ + "PDHY" + ], + "is_latest_label": true }, { "label": "Nedlloyd Raleigh Bay", "definition": "Container ship vessel. It was called the Raleigh Bay from Aug 1994 to Oct 1996. It is now called the Jupiter (Tuvalu, December 2008). It was disposed of in approximately 2012.", - "about": "http://vocab.aodn.org.au/def/platform/entity/256" + "about": "http://vocab.aodn.org.au/def/platform/entity/256", + "hidden_labels": [ + "IMO:8308719" + ], + "alt_labels": [ + "PHKG" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Brisbane", "definition": "Container ship vessel. It was called the P&O Nedlloyd Brisbane from Jan 1997 to Jan 2006. It is now called the Jupiter (Tuvalu, December 2008). It was disposed of in approximately 2012.", - "about": "http://vocab.aodn.org.au/def/platform/entity/257" + "about": "http://vocab.aodn.org.au/def/platform/entity/257", + "hidden_labels": [ + "IMO:8308719" + ], + "alt_labels": [ + "PHKG" + ], + "is_latest_label": true }, { "label": "Maersk Aberdeen", "definition": "Containter ship vessel, which is flying the flag of Hong Kong (May, 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/258" + "about": "http://vocab.aodn.org.au/def/platform/entity/258", + "hidden_labels": [ + "IMO:9175793" + ], + "alt_labels": [ + "S6BD" + ], + "is_latest_label": true }, { "label": "ANL Whyalla", "definition": "Container ship vessel which was known as the ANL Whyalla from 2009 until 2015. It is now known as the SCT Vietnam.", - "about": "http://vocab.aodn.org.au/def/platform/entity/26" + "about": "http://vocab.aodn.org.au/def/platform/entity/26", + "hidden_labels": [ + "IMO:9295359" + ], + "alt_labels": [ + "9VEN5" + ], + "is_latest_label": true }, { "label": "Meridian", "definition": "Training Ship vessel, which was flying the flag of USSR. It was disposed of in 1984.", - "about": "http://vocab.aodn.org.au/def/platform/entity/260" + "about": "http://vocab.aodn.org.au/def/platform/entity/260", + "hidden_labels": [ + "IMO:5232696" + ], + "alt_labels": [ + "UUYY" + ], + "is_latest_label": true }, { "label": "ANL Progress", "definition": "Containter ship vessel. It was called the ANL Progress from July 2003 until May 2005. It is now called the Meratus Batam (Indonesia, May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/261" + "about": "http://vocab.aodn.org.au/def/platform/entity/261", + "hidden_labels": [ + "IMO:9131814" + ], + "alt_labels": [ + "V20D7" + ], + "is_latest_label": true }, { "label": "Ranginui", "definition": "General Cargo ship vessel. It was called the Ranginui from August 1994 until November 1999. It is now called the Aylin (Turkey, May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/262" + "about": "http://vocab.aodn.org.au/def/platform/entity/262", + "hidden_labels": [ + "IMO:8603535" + ], + "alt_labels": [ + "V2AE5" + ], + "is_latest_label": true }, { "label": "Baltrum Trader", "definition": "Container ship vessel. It was called the Baltrum Trader (which callsign V2AP6) from Jan 2000 until May 2007. It is again called the Baltrum Trader (callsign A8ZP9), flying the flag of Liberia (April, 2007).", - "about": "http://vocab.aodn.org.au/def/platform/entity/263" + "about": "http://vocab.aodn.org.au/def/platform/entity/263", + "hidden_labels": [ + "IMO:9138317" + ], + "alt_labels": [ + "V2AP6" + ], + "is_latest_label": true }, { "label": "Florence", "definition": "Container ship vessel. It was called the Florence from Oct 2005 until May 2012. It is now called the Damai Sejahtera li (Indonesia, Oct 2010).", - "about": "http://vocab.aodn.org.au/def/platform/entity/264" + "about": "http://vocab.aodn.org.au/def/platform/entity/264", + "hidden_labels": [ + "IMO:9085601" + ], + "alt_labels": [ + "V2BF1" + ], + "is_latest_label": true }, { "label": "Vega Gotland", "definition": "Container ship vessel, which is currently flying the flag of Antigua & Barbuda (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/265" + "about": "http://vocab.aodn.org.au/def/platform/entity/265", + "hidden_labels": [ + "IMO:9336347" + ], + "alt_labels": [ + "V2BP4" + ], + "is_latest_label": true }, { "label": "Rangitata", "definition": "Cargo ship vessel. It was called the Rangitata from February 1992 until August 1998. It is now called the Emma (Antigua & Barbuda, May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/266" + "about": "http://vocab.aodn.org.au/def/platform/entity/266", + "hidden_labels": [ + "IMO:8509014" + ], + "alt_labels": [ + "V2GB" + ], + "is_latest_label": true }, { "label": "Karin Knorr", "definition": "General Cargo ship vessel. It was called the Karin from October 1990 until 1998. It is now called the Melody li (Panama, May 2013). It was disposed of in approximately 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/267" + "about": "http://vocab.aodn.org.au/def/platform/entity/267", + "hidden_labels": [ + "IMO:6523107" + ], + "alt_labels": [ + "V2HX" + ], + "is_latest_label": true }, { "label": "Iron Dampier", "definition": "Cargo ship vessel. It was called the Iron Dampier from May 1992 until April 1998. The ship's callsign was VNGZ from 1992 until September 1996. It was disposed of in 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/268" + "about": "http://vocab.aodn.org.au/def/platform/entity/268", + "hidden_labels": [ + "IMO:7906942" + ], + "alt_labels": [ + "V2LM", + "VNGZ" + ], + "is_latest_label": true }, { "label": "Anro Australia", "definition": "Ro-ro Cargo ship vessel. It was called the Anro Australia from 1977 until June 1997. It was then called the Kevat (Saint Vincent & Grenadines). It was disposed of in 1997.", - "about": "http://vocab.aodn.org.au/def/platform/entity/269" + "about": "http://vocab.aodn.org.au/def/platform/entity/269", + "hidden_labels": [ + "IMO:7619410" + ], + "alt_labels": [ + "VJBQ" + ], + "is_latest_label": true }, { "label": "Island Chief", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (December 2016)", - "about": "http://vocab.aodn.org.au/def/platform/entity/27" + "about": "http://vocab.aodn.org.au/def/platform/entity/27", + "hidden_labels": [ + "IMO:8810449" + ], + "alt_labels": [ + "VRRB" + ], + "is_latest_label": true }, { "label": "Iron Newcastle", "definition": "Bulk carrier ship vessel. It was called the Iron Newcastle from 1985 until June 1999. It is now called the Camriz (Panama, Aug 2007). It was disposed of in approximately 2010.", - "about": "http://vocab.aodn.org.au/def/platform/entity/270" + "about": "http://vocab.aodn.org.au/def/platform/entity/270", + "hidden_labels": [ + "IMO:8412443" + ], + "alt_labels": [ + "VJDI" + ], + "is_latest_label": true }, { "label": "Iron Kembla", "definition": "Bulk carrier ship vessel. It was called the Iron Kembla from 1986 until May 2005. It was then called the Merit Land (Panama). It was disposed of in approximately 2011.", - "about": "http://vocab.aodn.org.au/def/platform/entity/271" + "about": "http://vocab.aodn.org.au/def/platform/entity/271", + "hidden_labels": [ + "IMO:8412455" + ], + "alt_labels": [ + "VJDK" + ], + "is_latest_label": true }, { "label": "Iron Pacific", "definition": "Bulk carrier ship vessel. It was called the Iron Pacific from 1986 until 1998. It was then called the Berge Pacific (Norway). It was disposed of in approximately 2011.", - "about": "http://vocab.aodn.org.au/def/platform/entity/272" + "about": "http://vocab.aodn.org.au/def/platform/entity/272", + "hidden_labels": [ + "IMO:8412675" + ], + "alt_labels": [ + "VJDP" + ], + "is_latest_label": true }, { "label": "Australian Progress", "definition": "Bulk carrier ship vessel. It was called the Australian Progress from 1977 until March 1991. It was then called Treasure Sea (Panama). It was disposed of in 1992.", - "about": "http://vocab.aodn.org.au/def/platform/entity/274" + "about": "http://vocab.aodn.org.au/def/platform/entity/274", + "hidden_labels": [ + "IMO:7408823" + ], + "alt_labels": [ + "VMAP" + ], + "is_latest_label": true }, { "label": "Iron Flinders", "definition": "General cargo ship vessel. It was called the Iron Flinders from February 1991 until May 1999. It is now called the India Express (Panama, January 2008). It was disposed of in approximately 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/275" + "about": "http://vocab.aodn.org.au/def/platform/entity/275", + "hidden_labels": [ + "IMO:8407199" + ], + "alt_labels": [ + "VNGL" + ], + "is_latest_label": true }, { "label": "MH Green", "definition": "Container ship vessel, which is currently flying the flag of Singapore (October, 2023).", - "about": "http://vocab.aodn.org.au/def/platform/entity/276" + "about": "http://vocab.aodn.org.au/def/platform/entity/276", + "hidden_labels": [ + "IMO:9817353" + ], + "alt_labels": [ + "9V2475" + ], + "is_latest_label": true }, { "label": "Australian Enterprise", "definition": "Container ship vessel. It was called the Australian Enterprise from January 1997 until 2001. It was most recently called the ANL Explorer. It was disposed of in approximately 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/277" + "about": "http://vocab.aodn.org.au/def/platform/entity/277", + "hidden_labels": [ + "IMO:8506098" + ], + "alt_labels": [ + "VNVT" + ], + "is_latest_label": true }, { "label": "Contship Borealis", "definition": "Container ship vessel. It was called the Contship Borealis from 2002 until Aug 2005. It is now called the Glasgow Express (Germany, January 2008).", - "about": "http://vocab.aodn.org.au/def/platform/entity/278" + "about": "http://vocab.aodn.org.au/def/platform/entity/278", + "hidden_labels": [ + "IMO:9232589" + ], + "alt_labels": [ + "VQEN2" + ], + "is_latest_label": true }, { "label": "Contship Australis", "definition": "Container ship vessel. It was called the Contship Australis from 2002 until July 2005. It is now called the Dublin Express (Germany, October 2010).", - "about": "http://vocab.aodn.org.au/def/platform/entity/279" + "about": "http://vocab.aodn.org.au/def/platform/entity/279", + "hidden_labels": [ + "IMO:9232577" + ], + "alt_labels": [ + "VQEN3" + ], + "is_latest_label": true }, { "label": "Kweichow", "definition": "Cargo ship vessel, which is currently flying the flag of Hong Kong (November 2015).", - "about": "http://vocab.aodn.org.au/def/platform/entity/28" + "about": "http://vocab.aodn.org.au/def/platform/entity/28", + "hidden_labels": [ + "IMO:9070694" + ], + "alt_labels": [ + "VRAE2" + ], + "is_latest_label": true }, { "label": "Coral Chief", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/280" + "about": "http://vocab.aodn.org.au/def/platform/entity/280", + "hidden_labels": [ + "IMO:8809191" + ], + "alt_labels": [ + "VROC" + ], + "is_latest_label": true }, { "label": "Papuan Chief", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/281" + "about": "http://vocab.aodn.org.au/def/platform/entity/281", + "hidden_labels": [ + "IMO:8901705" + ], + "alt_labels": [ + "VRRC" + ], + "is_latest_label": true }, { "label": "Kokopo Chief", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/282" + "about": "http://vocab.aodn.org.au/def/platform/entity/282", + "hidden_labels": [ + "IMO:8907412" + ], + "alt_labels": [ + "VRRD" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Napier", "definition": "Container ship vessel, which was flying the flag of Hong Kong. It was called the P&O Nedlloyd Napier from Aug 1998. It was disposed of in approximately 2000.", - "about": "http://vocab.aodn.org.au/def/platform/entity/283" + "about": "http://vocab.aodn.org.au/def/platform/entity/283", + "hidden_labels": [ + "IMO:7020401" + ], + "alt_labels": [ + "VRSC" + ], + "is_latest_label": true }, { "label": "P&O Nedlloyd Wellington", "definition": "Container ship vessel. It was called the P&O Nedlloyd Wellington from June 2004 until Nov 2005. It is now called the Cs Star (UK, September 2011).", - "about": "http://vocab.aodn.org.au/def/platform/entity/284" + "about": "http://vocab.aodn.org.au/def/platform/entity/284", + "hidden_labels": [ + "IMO:9020338" + ], + "alt_labels": [ + "VSOP5" + ], + "is_latest_label": true }, { "label": "TMM Tabasco", "definition": "Container ship vessel. It was called the Tmm Tabasco from 2000 until August 2005. It is now called the Wellington Express {DFCX2} (Germany, May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/285" + "about": "http://vocab.aodn.org.au/def/platform/entity/285", + "hidden_labels": [ + "IMO:9224051" + ], + "alt_labels": [ + "VSUA5" + ], + "is_latest_label": true }, { "label": "Ionikos", "definition": "Container ship vessel, which is currently flying the flag of Liberia (October, 2023).", - "about": "http://vocab.aodn.org.au/def/platform/entity/286" + "about": "http://vocab.aodn.org.au/def/platform/entity/286", + "hidden_labels": [ + "IMO:9397614" + ], + "alt_labels": [ + "A8SD6" + ], + "is_latest_label": true }, { "label": "Canmar Dynasty", "definition": "Container ship vessel. It was called the Canmar Dynasty from May 2003 until July 2005. It is now called the Sydney Express (UK, Feb 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/287" + "about": "http://vocab.aodn.org.au/def/platform/entity/287", + "hidden_labels": [ + "IMO:9062984" + ], + "alt_labels": [ + "VSXC4" + ], + "is_latest_label": true }, { "label": "Sydney Express", "definition": "Container ship vessel, which is currently flying the flag of the UK (Feb, 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/288" + "about": "http://vocab.aodn.org.au/def/platform/entity/288", + "hidden_labels": [ + "IMO:9062984" + ], + "alt_labels": [ + "VSXC4" + ], + "is_latest_label": true }, { "label": "Nimos", "definition": "Container ship vessel. It was called the Nimos from 1977 until December 1990. It was disposed of in approximately 2011.", - "about": "http://vocab.aodn.org.au/def/platform/entity/289" + "about": "http://vocab.aodn.org.au/def/platform/entity/289", + "hidden_labels": [ + "IMO:7640005" + ], + "alt_labels": [ + "ZCSL" + ], + "is_latest_label": true }, { "label": "Philadelphia", "definition": "Container ship vessel, which is currently flying the flag of Liberia (August 2015).", - "about": "http://vocab.aodn.org.au/def/platform/entity/29" + "about": "http://vocab.aodn.org.au/def/platform/entity/29", + "hidden_labels": [ + "IMO:9232101" + ], + "alt_labels": [ + "A8CN8" + ], + "is_latest_label": true }, { "label": "Contship Aurora", "definition": "Container ship vessel. It was called the Contship Aurora from 2002 until 2005. It is currently called the Liverpool Express (Germany, May 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/290" + "about": "http://vocab.aodn.org.au/def/platform/entity/290", + "hidden_labels": [ + "IMO:9232565" + ], + "alt_labels": [ + "ZIZP9" + ], + "is_latest_label": true }, { "label": "Act 6", "definition": "Container ship vessel. It was called the Act 6 from 1972 until January 1992. It was disposed of in 2003.", - "about": "http://vocab.aodn.org.au/def/platform/entity/291" + "about": "http://vocab.aodn.org.au/def/platform/entity/291", + "hidden_labels": [ + "IMO:7226275" + ], + "alt_labels": [ + "GOVN" + ], + "is_latest_label": true }, { "label": "Progress C", "definition": "Container ship vessel, which is currently flying the flag of Panama (October, 2023).", - "about": "http://vocab.aodn.org.au/def/platform/entity/292" + "about": "http://vocab.aodn.org.au/def/platform/entity/292", + "hidden_labels": [ + "IMO:9158563" + ], + "alt_labels": [ + "3FDV8" + ], + "is_latest_label": true }, { "label": "RTM Wakmatha", "definition": "Bulk Carrier vessel, which is currently flying the flag of Singapore (October 2014). This ship previously flew the UK flag, with a corresponding callsign of MVTW4.", - "about": "http://vocab.aodn.org.au/def/platform/entity/3" + "about": "http://vocab.aodn.org.au/def/platform/entity/3", + "hidden_labels": [ + "IMO:9341914" + ], + "alt_labels": [ + "9V2768", + "MVTW4" + ], + "is_latest_label": true }, { "label": "Portugal", "definition": "Container ship vessel, which is currently flying the flag of Liberia (December 2015).", - "about": "http://vocab.aodn.org.au/def/platform/entity/30" + "about": "http://vocab.aodn.org.au/def/platform/entity/30", + "hidden_labels": [ + "IMO:9147083" + ], + "alt_labels": [ + "D5IH5" + ], + "is_latest_label": true }, { "label": "Salome", "definition": "Vehicle carrier vessel, currently flying the flag of Singapore (April 2015).", - "about": "http://vocab.aodn.org.au/def/platform/entity/31" + "about": "http://vocab.aodn.org.au/def/platform/entity/31", + "hidden_labels": [ + "IMO:9515412" + ], + "alt_labels": [ + "9V9112" + ], + "is_latest_label": true }, { "label": "Pacific Endeavour {D5SO2}", "definition": "General cargo vessel, which is currently flying the flag of Liberia (February, 2024)", - "about": "http://vocab.aodn.org.au/def/platform/entity/349" + "about": "http://vocab.aodn.org.au/def/platform/entity/349", + "hidden_labels": [ + "IMO:9358022" + ], + "alt_labels": [ + "D5SO2" + ], + "is_latest_label": true }, { "label": "Rusalka", "definition": "Sailing vessel, which is currently flying the flag of Australia (February, 2024)", - "about": "http://vocab.aodn.org.au/def/platform/entity/350" + "about": "http://vocab.aodn.org.au/def/platform/entity/350", + "hidden_labels": [ + "MMSI:503016850" + ], + "alt_labels": [ + "VJN4678" + ], + "is_latest_label": true }, { "label": "Maersk Gairloch {9V6221}", "definition": "Container ship vessel, which is currently flying the flag of Singapore.", - "about": "http://vocab.aodn.org.au/def/platform/entity/351" + "about": "http://vocab.aodn.org.au/def/platform/entity/351", + "hidden_labels": [ + "IMO:9235567" + ], + "alt_labels": [ + "9V6221" + ], + "is_latest_label": true }, { "label": "Asia Endeavour", "definition": "Gas tanker vessel, which is currently flying the flag of Singapore (February, 2024).", - "about": "http://vocab.aodn.org.au/def/platform/entity/352" + "about": "http://vocab.aodn.org.au/def/platform/entity/352", + "hidden_labels": [ + "IMO:9610779" + ], + "alt_labels": [ + "C6AX6" + ], + "is_latest_label": true }, { "label": "Melanesian Chief", "definition": "Container ship vessel, which is currently flying the flag of Liberia (February, 2024).", - "about": "http://vocab.aodn.org.au/def/platform/entity/353" + "about": "http://vocab.aodn.org.au/def/platform/entity/353", + "hidden_labels": [ + "IMO:9405100" + ], + "alt_labels": [ + "5LCX6" + ], + "is_latest_label": true }, { "label": "Arkadia", "definition": "Container ship vessel, which is currently flying the flag of Liberia (February, 2024).", - "about": "http://vocab.aodn.org.au/def/platform/entity/354" + "about": "http://vocab.aodn.org.au/def/platform/entity/354", + "hidden_labels": [ + "IMO:9226815" + ], + "alt_labels": [ + "A8ET4" + ], + "is_latest_label": true }, { "label": "Coral Adventurer", "definition": "Passenger ship vessel, which is currently flying the flag of Australia (February, 2023).", - "about": "http://vocab.aodn.org.au/def/platform/entity/358" + "about": "http://vocab.aodn.org.au/def/platform/entity/358", + "hidden_labels": [ + "IMO:9838644" + ], + "alt_labels": [ + "VMFR" + ], + "is_latest_label": true }, { "label": "Coral Geographer", "definition": "Passenger ship vessel, which is currently flying the flag of Australia (February, 2024).", - "about": "http://vocab.aodn.org.au/def/platform/entity/359" + "about": "http://vocab.aodn.org.au/def/platform/entity/359", + "hidden_labels": [ + "IMOS:9883986" + ], + "alt_labels": [ + "VMIT" + ], + "is_latest_label": true }, { "label": "ANL Elaroo", "definition": "Container ship vessel, which is currently flying the flag of Liberia (January 2019).", - "about": "http://vocab.aodn.org.au/def/platform/entity/41" + "about": "http://vocab.aodn.org.au/def/platform/entity/41", + "hidden_labels": [ + "IMO:9516777" + ], + "alt_labels": [ + "D5BG5" + ], + "is_latest_label": true }, { "label": "HMB Endeavour", "definition": "Passenger ship vessel, which is currently flying the flag of Australia (February, 2019).", - "about": "http://vocab.aodn.org.au/def/platform/entity/43" + "about": "http://vocab.aodn.org.au/def/platform/entity/43", + "hidden_labels": [ + "IMO:8644967" + ], + "alt_labels": [ + "VNJC" + ], + "is_latest_label": true }, { "label": "Highland Chief {VROJ8}", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (October, 2019).", - "about": "http://vocab.aodn.org.au/def/platform/entity/44" + "about": "http://vocab.aodn.org.au/def/platform/entity/44", + "hidden_labels": [ + "IMO:9689940" + ], + "alt_labels": [ + "VROJ8" + ], + "is_latest_label": true }, { "label": "Hansa Freyburg", "definition": "Container ship vessel, which is currently flying the flag of Liberia (October, 2019).", - "about": "http://vocab.aodn.org.au/def/platform/entity/45" + "about": "http://vocab.aodn.org.au/def/platform/entity/45", + "hidden_labels": [ + "IMO:9256389" + ], + "alt_labels": [ + "D5PC7" + ], + "is_latest_label": true }, { "label": "Tropical Islander", "definition": "General Cargo ship vessel, which is currently flying the flag of Panama (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/453" + "about": "http://vocab.aodn.org.au/def/platform/entity/453", + "hidden_labels": [ + "IMO:9385219" + ], + "alt_labels": [ + "3FLZ" + ], + "is_latest_label": true }, { "label": "CMA CGM Onyx", "definition": "Container ship vessel, which is currently flying the flag of Singapore (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/454" + "about": "http://vocab.aodn.org.au/def/platform/entity/454", + "hidden_labels": [ + "IMO:9334143" + ], + "alt_labels": [ + "9VBM5" + ], + "is_latest_label": true }, { "label": "Cap Reinga", "definition": "Container ship vessel. It was called the Cap Reinga from August 2007 until September 2010. It is now called the Jupiter (Liberia, November 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/455" + "about": "http://vocab.aodn.org.au/def/platform/entity/455", + "hidden_labels": [ + "IMO:9226504" + ], + "alt_labels": [ + "A8FA6" + ], + "is_latest_label": true }, { "label": "CSCL Longkou", "definition": "Container ship vessel. It was called the CSCL Longkou from May 2001 until Augus 2007. It is now called the Jupiter (Liberia, November 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/456" + "about": "http://vocab.aodn.org.au/def/platform/entity/456", + "hidden_labels": [ + "IMO:9226504" + ], + "alt_labels": [ + "A8FA6" + ], + "is_latest_label": true }, { "label": "CMA CGM Lavender", "definition": "Container ship vessel. It was called the CMA CGM Lavender until November 2016. It is now called the Montpellier (Liberia, July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/457" + "about": "http://vocab.aodn.org.au/def/platform/entity/457", + "hidden_labels": [ + "IMO:9314973" + ], + "alt_labels": [ + "A8IG2" + ], + "is_latest_label": true }, { "label": "ANL Benalla", "definition": "Container ship vessel, which is currently flying the flag of Liberia (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/458" + "about": "http://vocab.aodn.org.au/def/platform/entity/458", + "hidden_labels": [ + "IMO:9334519" + ], + "alt_labels": [ + "A8JM5" + ], + "is_latest_label": true }, { "label": "JPO Scorpius", "definition": "Container ship vessel, which is currently flying the flag of Liberia (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/459" + "about": "http://vocab.aodn.org.au/def/platform/entity/459", + "hidden_labels": [ + "IMO:9307279" + ], + "alt_labels": [ + "A8KC6" + ], + "is_latest_label": true }, { "label": "Seatrade Orange", "definition": "Container ship vessel, which is currently flying the flag of Liberia (October, 2019).", - "about": "http://vocab.aodn.org.au/def/platform/entity/46" + "about": "http://vocab.aodn.org.au/def/platform/entity/46", + "hidden_labels": [ + "IMO:9690092" + ], + "alt_labels": [ + "D5LJ7" + ], + "is_latest_label": true }, { "label": "Maersk Fuji", "definition": "Container ship vessel. It was called the Maersk Fuji from July 2005 unitl June 2010. It is now called the Spyros (Marshall Islands, February 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/460" + "about": "http://vocab.aodn.org.au/def/platform/entity/460", + "hidden_labels": [ + "IMO:9308584" + ], + "alt_labels": [ + "C4BZ2" + ], + "is_latest_label": true }, { "label": "Merkur Sky", "definition": "Container ship vessel. It was called the Merkur Sky from 1997 to April 1998, December 1998 to 1999, May 2001 to March 2002, November 2002 to June 2003, August 2005 to July 2007 and April 2011 to September 2012. It is now called the M Sky (Saint Kitts & Nevis, June 2012). It was disposed of in approximately 2012.", - "about": "http://vocab.aodn.org.au/def/platform/entity/461" + "about": "http://vocab.aodn.org.au/def/platform/entity/461", + "hidden_labels": [ + "IMO:9158977" + ], + "alt_labels": [ + "DDPH" + ], + "is_latest_label": true }, { "label": "Icebird", "definition": "Cargo ship vessel. It was called the Icebird from 1984 until December 1994. It is now called the Almog (Honduras, November 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/462" + "about": "http://vocab.aodn.org.au/def/platform/entity/462", + "hidden_labels": [ + "IMO:8403533" + ], + "alt_labels": [ + "DPIB" + ], + "is_latest_label": true }, { "label": "Hoegh Seoul", "definition": "Vehicles carrier vessel, which is currently flying the flag of Norway (July, 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/463" + "about": "http://vocab.aodn.org.au/def/platform/entity/463", + "hidden_labels": [ + "IMO:9285495" + ], + "alt_labels": [ + "LADO6" + ], + "is_latest_label": true }, { "label": "Hoegh St. Petersburg", "definition": "Vehicles carrier vessel, which is currently flying the flag of Norway (July, 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/464" + "about": "http://vocab.aodn.org.au/def/platform/entity/464", + "hidden_labels": [ + "IMO:9420045" + ], + "alt_labels": [ + "LAII7" + ], + "is_latest_label": true }, { "label": "Conti Harmony", "definition": "Container ship vessel, which is currently flying the flag of Cyprus (July 2013). It was disposed of in approximately 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/465" + "about": "http://vocab.aodn.org.au/def/platform/entity/465", + "hidden_labels": [ + "IMO:9137894" + ], + "alt_labels": [ + "P3JM9" + ], + "is_latest_label": true }, { "label": "Schelde Trader", "definition": "Container ship vessel, which is currently flying the flag of Netherlands (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/466" + "about": "http://vocab.aodn.org.au/def/platform/entity/466", + "hidden_labels": [ + "IMO:9264752" + ], + "alt_labels": [ + "PBKZ" + ], + "is_latest_label": true }, { "label": "Maersk Fukuoka", "definition": "Container ship vessel. It was called the Maersk Fukuoka from 2005 until December 2010. It is now called the Georgia (Marshall Islands, September 2011).", - "about": "http://vocab.aodn.org.au/def/platform/entity/467" + "about": "http://vocab.aodn.org.au/def/platform/entity/467", + "hidden_labels": [ + "IMO:9308601" + ], + "alt_labels": [ + "V2BM5" + ], + "is_latest_label": true }, { "label": "Isar Trader", "definition": "Container ship vessel. It was called the Isar Trader from December 2010 until August 2012. It is now called the Georgia (Marshall Islands, September 2011).", - "about": "http://vocab.aodn.org.au/def/platform/entity/468" + "about": "http://vocab.aodn.org.au/def/platform/entity/468", + "hidden_labels": [ + "IMO:9308601" + ], + "alt_labels": [ + "V2BM5" + ], + "is_latest_label": true }, { "label": "Sofrana Surville", "definition": "Container ship vessel, which is currently flying the flag of Antigua and Barbuda (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/469" + "about": "http://vocab.aodn.org.au/def/platform/entity/469", + "hidden_labels": [ + "IMO:9295529" + ], + "alt_labels": [ + "V2CN5" + ], + "is_latest_label": true }, { "label": "Montpellier", "definition": "Container ship vessel, which is currently flying the flag of Liberia (October, 2019).", - "about": "http://vocab.aodn.org.au/def/platform/entity/47" + "about": "http://vocab.aodn.org.au/def/platform/entity/47", + "hidden_labels": [ + "IMO:9314973" + ], + "alt_labels": [ + "A8IG2" + ], + "is_latest_label": true }, { "label": "BC San Francisco", "definition": "Container ship vessel, which is currently flying the flag of Antigua and Barbuda (June 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/470" + "about": "http://vocab.aodn.org.au/def/platform/entity/470", + "hidden_labels": [ + "IMO:9346562" + ], + "alt_labels": [ + "V2QD4" + ], + "is_latest_label": true }, { "label": "CMA CGM Jade", "definition": "Container ship vessel, which is currently flying the flag of Marshall Islands (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/471" + "about": "http://vocab.aodn.org.au/def/platform/entity/471", + "hidden_labels": [ + "IMO:9324875" + ], + "alt_labels": [ + "V7NX2" + ], + "is_latest_label": true }, { "label": "Santos Express", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/472" + "about": "http://vocab.aodn.org.au/def/platform/entity/472", + "hidden_labels": [ + "IMO:9301835" + ], + "alt_labels": [ + "VRCF6" + ], + "is_latest_label": true }, { "label": "Manila Express", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/473" + "about": "http://vocab.aodn.org.au/def/platform/entity/473", + "hidden_labels": [ + "IMO:9301859" + ], + "alt_labels": [ + "VRCX7" + ], + "is_latest_label": true }, { "label": "Pacific Gas", "definition": "LPG Tanker vessel, which is currently flying the flag of Vanuatu (October 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/474" + "about": "http://vocab.aodn.org.au/def/platform/entity/474", + "hidden_labels": [ + "IMO:8915421" + ], + "alt_labels": [ + "YJZC5" + ], + "is_latest_label": true }, { "label": "Mississauga Express", "definition": "Container ship vessel, which is currently flying the flag of Bermuda (July 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/475" + "about": "http://vocab.aodn.org.au/def/platform/entity/475", + "hidden_labels": [ + "IMO:9165358" + ], + "alt_labels": [ + "ZCBP6" + ], + "is_latest_label": true }, { "label": "Seatrade Red", "definition": "Container ship vessel, which is currently flying the flag of Liberia (October, 2020).", - "about": "http://vocab.aodn.org.au/def/platform/entity/58" + "about": "http://vocab.aodn.org.au/def/platform/entity/58", + "hidden_labels": [ + "IMO:9690107" + ], + "alt_labels": [ + "D5LR9" + ], + "is_latest_label": true }, { "label": "Szechuen", "definition": "Container ship vessel, which is currently flying the flag of Singapore (January, 2021). It was called Scechuen between 2014 and 2021, it is now called Vanuatu Chief.", - "about": "http://vocab.aodn.org.au/def/platform/entity/60" + "about": "http://vocab.aodn.org.au/def/platform/entity/60", + "hidden_labels": [ + "IMO:9614543" + ], + "alt_labels": [ + "9V9718" + ], + "is_latest_label": true }, { "label": "Everest", "definition": "This multi purpose vessel (MPV), is classed as an offshore construction vessel, which is currently flying the flag of Bahamas (March 2021)", - "about": "http://vocab.aodn.org.au/def/platform/entity/62" + "about": "http://vocab.aodn.org.au/def/platform/entity/62", + "hidden_labels": [ + "IMO:9769130" + ], + "alt_labels": [ + "C6CZ6" + ], + "is_latest_label": true }, { "label": "Akademik Shokalskiy", "definition": "Passenger ship vessel, which is currently flying the flag of Russia (November, 2020).", - "about": "http://vocab.aodn.org.au/def/platform/entity/63" + "about": "http://vocab.aodn.org.au/def/platform/entity/63", + "hidden_labels": [ + "IMO:8010336" + ], + "alt_labels": [ + "UBNF" + ], + "is_latest_label": true }, { "label": "Hansa Offenburg", "definition": "Container ship vessel, which is currently flying the flag of Liberia (March, 2021).", - "about": "http://vocab.aodn.org.au/def/platform/entity/64" + "about": "http://vocab.aodn.org.au/def/platform/entity/64", + "hidden_labels": [ + "IMO:9516765" + ], + "alt_labels": [ + "D5TL2" + ], + "is_latest_label": true }, { "label": "CMA CGM Abu Dhabi", "definition": "Container ship vessel, which is currently flying the flag of Malta (December, 2021)", - "about": "http://vocab.aodn.org.au/def/platform/entity/75" + "about": "http://vocab.aodn.org.au/def/platform/entity/75", + "hidden_labels": [ + "IMO:9802499" + ], + "alt_labels": [ + "9HA4782" + ], + "is_latest_label": true }, { "label": "Nordpacific", "definition": "Container ship vessel, which is currently flying the flag of Cyprus (December, 2021)", - "about": "http://vocab.aodn.org.au/def/platform/entity/76" + "about": "http://vocab.aodn.org.au/def/platform/entity/76", + "hidden_labels": [ + "IMO:9802487" + ], + "alt_labels": [ + "5BVZ4" + ], + "is_latest_label": true }, { "label": "Vanuatu Chief", "definition": "Container ship vessel, which is currently flying the flag of Singapore (February, 2022). It was called the Szechuen until 2021.", - "about": "http://vocab.aodn.org.au/def/platform/entity/81" + "about": "http://vocab.aodn.org.au/def/platform/entity/81", + "hidden_labels": [ + "IMO:9614543" + ], + "alt_labels": [ + "9V9718" + ], + "is_latest_label": true }, { "label": "Seatrade Blue", "definition": "Container ship vessel, which is currently flying the flag of Liberia (July, 2022)", - "about": "http://vocab.aodn.org.au/def/platform/entity/82" + "about": "http://vocab.aodn.org.au/def/platform/entity/82", + "hidden_labels": [ + "IMO:9756107" + ], + "alt_labels": [ + "D5LS3" + ], + "is_latest_label": true }, { "label": "Safeen Prime", "definition": "Container ship vessel, which is currently flying the flag of the Marshall Island (July, 2022)", - "about": "http://vocab.aodn.org.au/def/platform/entity/83" + "about": "http://vocab.aodn.org.au/def/platform/entity/83", + "hidden_labels": [ + "IMO:9504607" + ], + "alt_labels": [ + "V7CR2" + ], + "is_latest_label": true }, { "label": "Samoa Chief", "definition": "Container ship vessel, which is currently flying the flag of Singapore (July, 2022)", - "about": "http://vocab.aodn.org.au/def/platform/entity/84" + "about": "http://vocab.aodn.org.au/def/platform/entity/84", + "hidden_labels": [ + "IMO:9614476" + ], + "alt_labels": [ + "9V9710" + ], + "is_latest_label": true }, { "label": "Mariner", "definition": "Container ship vessel, which is currently flying the flag of Singapore (October, 2022).", - "about": "http://vocab.aodn.org.au/def/platform/entity/85" + "about": "http://vocab.aodn.org.au/def/platform/entity/85", + "hidden_labels": [ + "IMO:9694414" + ], + "alt_labels": [ + "9V3398" + ], + "is_latest_label": true }, { "label": "Tasman Chief", "definition": "Cargo ship vessel, which is currently flying the flag of Liberia (October, 2022).", - "about": "http://vocab.aodn.org.au/def/platform/entity/86" + "about": "http://vocab.aodn.org.au/def/platform/entity/86", + "hidden_labels": [ + "IMO:9363546" + ], + "alt_labels": [ + "D5AM6" + ], + "is_latest_label": true }, { "label": "Seatrade White", "definition": "Container ship vessel, which is currently flying the flag of Liberia (February, 2023).", - "about": "http://vocab.aodn.org.au/def/platform/entity/87" + "about": "http://vocab.aodn.org.au/def/platform/entity/87", + "hidden_labels": [ + "IMO:9756092" + ], + "alt_labels": [ + "D5LS2" + ], + "is_latest_label": true }, { "label": "Mia Schulte", "definition": "Container ship vessel, which is currently flying the flag of Singapore (March, 2023)", - "about": "http://vocab.aodn.org.au/def/platform/entity/88" + "about": "http://vocab.aodn.org.au/def/platform/entity/88", + "hidden_labels": [ + "IMO:9676735" + ], + "alt_labels": [ + "9V3054" + ], + "is_latest_label": true }, { "label": "Maersk Jalan", "definition": "Cargo ship vessel, which is currently flying the flag of Singapore (February 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/890" + "about": "http://vocab.aodn.org.au/def/platform/entity/890", + "hidden_labels": [ + "IMO:9294161" + ], + "alt_labels": [ + "9V3581" + ], + "is_latest_label": true }, { "label": "Patricia Schulte", "definition": "Container ship vessel, which is currently flying the flag of Cyprus (February 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/891" + "about": "http://vocab.aodn.org.au/def/platform/entity/891", + "hidden_labels": [ + "IMO:9294185" + ], + "alt_labels": [ + "5BPB3" + ], + "is_latest_label": true }, { "label": "Siangtan", "definition": "Cargo ship vessel, which is currently flying the flag of Singapore (February 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/892" + "about": "http://vocab.aodn.org.au/def/platform/entity/892", + "hidden_labels": [ + "IMO:9614529" + ], + "alt_labels": [ + "9V9832" + ], + "is_latest_label": true }, { "label": "Capitaine Fearn", "definition": "General Cargo ship vessel. It was called the Forum Samoa II from 2001 until June 2010. It was then shortly called the Opal Harmony, then Southern Moana, and is now known as Capitaine Fearn, and flies the flag of Samoa (July, 2015).", - "about": "http://vocab.aodn.org.au/def/platform/entity/908" + "about": "http://vocab.aodn.org.au/def/platform/entity/908", + "hidden_labels": [ + "IMO:9210713" + ], + "alt_labels": [ + "5WDC" + ], + "is_latest_label": true }, { "label": "Shengking", "definition": "Container ship vessel, which is currently flying the flag of Singapore (February 2016)", - "about": "http://vocab.aodn.org.au/def/platform/entity/909" + "about": "http://vocab.aodn.org.au/def/platform/entity/909", + "hidden_labels": [ + "IMO:9614505" + ], + "alt_labels": [ + "9V9713" + ], + "is_latest_label": true }, { "label": "Chenan", "definition": "General Cargo ship vessel. It was called the Chenan from December 1999 to February 2005, and again from January 2012, and is currently flying the flag of Hong Kong (Feb 2016)", - "about": "http://vocab.aodn.org.au/def/platform/entity/910" + "about": "http://vocab.aodn.org.au/def/platform/entity/910", + "hidden_labels": [ + "IMO:9007374" + ], + "alt_labels": [ + "VRUB2" + ], + "is_latest_label": true }, { "label": "Southern Lily", "definition": "Container ship vessel. It was called the Southern Lily in 2011, and is now known as the Southern Trader, which is currently flying the flag of Singapore (Jan, 2015)", - "about": "http://vocab.aodn.org.au/def/platform/entity/912" + "about": "http://vocab.aodn.org.au/def/platform/entity/912", + "hidden_labels": [ + "IMO:9359674" + ], + "alt_labels": [ + "9VEY2" + ], + "is_latest_label": true }, { "label": "ANL Yarrunga", "definition": "Container ship vessel, which was called the ANL Yarrunga until October 2009. It is now called the Karin Rambow, and is currently flying the flag of Antigua and Barbados (May, 2016)", - "about": "http://vocab.aodn.org.au/def/platform/entity/913" + "about": "http://vocab.aodn.org.au/def/platform/entity/913", + "hidden_labels": [ + "IMO:9327566" + ], + "alt_labels": [ + "V2BJ5" + ], + "is_latest_label": true }, { "label": "Shearwater", "definition": "Bulk Carrier vessel, which flew the flag of Panama (September 2010). It was disposed of in ??.", - "about": "http://vocab.aodn.org.au/def/platform/entity/914" + "about": "http://vocab.aodn.org.au/def/platform/entity/914", + "hidden_labels": [ + "IMO:8508709" + ], + "alt_labels": [ + "3ECT5" + ], + "is_latest_label": true }, { "label": "Act 10", "definition": "Container ship vessel, which was called the Act 10 from 1990 until 1991. It's final name was P and O Nedlloyd Luanda. It was disposed of in 2002.", - "about": "http://vocab.aodn.org.au/def/platform/entity/915" + "about": "http://vocab.aodn.org.au/def/platform/entity/915", + "hidden_labels": [ + "IMO:7817115" + ], + "alt_labels": [ + "C6HL" + ], + "is_latest_label": true }, { "label": "Southern Queen", "definition": "General Cargo ship vessel. It was called the Southern Queen from Oct-Dec 2001. It is now called the Red Rock (Indonesia, October 2010).", - "about": "http://vocab.aodn.org.au/def/platform/entity/916" + "about": "http://vocab.aodn.org.au/def/platform/entity/916", + "hidden_labels": [ + "IMO:9197026" + ], + "alt_labels": [ + "C6J55" + ], + "is_latest_label": true }, { "label": "Maersk Auckland", "definition": "Container ship vessel, which was known as the Maersk Auckland from February 2003 until July 2007. It was disposed of in 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/917" + "about": "http://vocab.aodn.org.au/def/platform/entity/917", + "hidden_labels": [ + "IMO:9236236" + ], + "alt_labels": [ + "A8ES9" + ], + "is_latest_label": true }, { "label": "E.R. Wilhelmshaven", "definition": "Container ship vessel, which is currently flying the flag of Liberia (May, 2013).", - "about": "http://vocab.aodn.org.au/def/platform/entity/918" + "about": "http://vocab.aodn.org.au/def/platform/entity/918", + "hidden_labels": [ + "IMO:9246310" + ], + "alt_labels": [ + "ELZY3" + ], + "is_latest_label": true }, { "label": "Maersk Phuket", "definition": "Container ship vessel, which is currently flying the flag of Singapore (July, 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/919" + "about": "http://vocab.aodn.org.au/def/platform/entity/919", + "hidden_labels": [ + "IMO:9168219" + ], + "alt_labels": [ + "9V3819" + ], + "is_latest_label": true }, { "label": "Southland Star", "definition": "Reefer vessel, which flew the flag of Britain. It was disposed of in 1993.", - "about": "http://vocab.aodn.org.au/def/platform/entity/920" + "about": "http://vocab.aodn.org.au/def/platform/entity/920", + "hidden_labels": [ + "IMO:6707909" + ], + "alt_labels": [ + "3DTF" + ], + "is_latest_label": true }, { "label": "California Star", "definition": "Container ship vessel, which was known as the Caifornia Star from 1989 until 1996. It's final name was the Golden Gate. It was disposed of in 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/921" + "about": "http://vocab.aodn.org.au/def/platform/entity/921", + "hidden_labels": [ + "IMO:7817103" + ], + "alt_labels": [ + "C6JF2" + ], + "is_latest_label": true }, { "label": "Vishva Nandin", "definition": "General cargo ship vessel, which flew the flag of India. It was disposed of in 1999.", - "about": "http://vocab.aodn.org.au/def/platform/entity/922" + "about": "http://vocab.aodn.org.au/def/platform/entity/922", + "hidden_labels": [ + "IMO:0000761" + ], + "alt_labels": [ + "ATSQ" + ], + "is_latest_label": true }, { "label": "Vishva Prafulla", "definition": "General cargo ship vessel, which flew the flag of India, and was last known as the Asha Manan. It was disposed of in 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/923" + "about": "http://vocab.aodn.org.au/def/platform/entity/923", + "hidden_labels": [ + "IMO:7803425" + ], + "alt_labels": [ + "ATVB" + ], + "is_latest_label": true }, { "label": "Bhavabhuti", "definition": "General cargo ship vessel, which flew the flag of India. It was disposed of in 2001.", - "about": "http://vocab.aodn.org.au/def/platform/entity/924" + "about": "http://vocab.aodn.org.au/def/platform/entity/924", + "hidden_labels": [ + "IMO:7719208" + ], + "alt_labels": [ + "ATUF" + ], + "is_latest_label": true }, { "label": "Vishva Parijet", "definition": "General cargo ship vessel, which flew the flag of India. It was disposed of in 2000.", - "about": "http://vocab.aodn.org.au/def/platform/entity/925" + "about": "http://vocab.aodn.org.au/def/platform/entity/925", + "hidden_labels": [ + "IMO:7803401" + ], + "alt_labels": [ + "ATVC" + ], + "is_latest_label": true }, { "label": "CMA CGM Orchid", "definition": "Container ship vessel, which flew the flag of Liberia. It is now known as the As Cypria (January, 2011).", - "about": "http://vocab.aodn.org.au/def/platform/entity/926" + "about": "http://vocab.aodn.org.au/def/platform/entity/926", + "hidden_labels": [ + "IMO:9315812" + ], + "alt_labels": [ + "DDLF2" + ], + "is_latest_label": true }, { "label": "OOCL Houston", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (April, 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/927" - }, - { - "label": "Swan", - "definition": "Reefer ship vessel. It was called the Swan from April 1999 until September 2007. It is now called the Pavlovsk.", - "about": "http://vocab.aodn.org.au/def/platform/entity/928" + "about": "http://vocab.aodn.org.au/def/platform/entity/927", + "hidden_labels": [ + "IMO:9355757" + ], + "alt_labels": [ + "VRDE7" + ], + "is_latest_label": true }, { "label": "Mathilde Schulte", "definition": "Container ship vessel, which is currently flying the flag of Singapore (July, 2023).", - "about": "http://vocab.aodn.org.au/def/platform/entity/97" + "about": "http://vocab.aodn.org.au/def/platform/entity/97", + "hidden_labels": [ + "IMO:9676709" + ], + "alt_labels": [ + "9V3051" + ], + "is_latest_label": true }, { "label": "Highland Chief {VROB}", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/99" + "about": "http://vocab.aodn.org.au/def/platform/entity/99", + "hidden_labels": [ + "IMO:8809189" + ], + "alt_labels": [ + "VROB" + ], + "is_latest_label": true }, { "label": "Northwest Sandpiper", "definition": "LNG Tanker vessel, which is currently flying the flag of Australia.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/0970" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/0970", + "hidden_labels": [ + "IMO:8913150" + ], + "alt_labels": [ + "VNVG" + ], + "is_latest_label": true }, { "label": "Goliath", "definition": "Bulk carrier vessel, which is currently flying the flag of Australia.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/09ZK" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/09ZK", + "hidden_labels": [ + "IMO:9036430" + ], + "alt_labels": [ + "VMGO" + ], + "is_latest_label": true }, { "label": "Josephine Maersk", "definition": "Container ship vessel, which is currently flying the flag of Denmark (September 2016).", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/26JM" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/26JM", + "hidden_labels": [ + "IMO:9215191" + ], + "alt_labels": [ + "OWKF2" + ], + "is_latest_label": true }, { "label": "Maersk Gairloch {VQGQ4}", "definition": "Container ship vessel, which is currently flying the flag of Singapore.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/747M" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/747M", + "hidden_labels": [ + "IMO:9235567" + ], + "alt_labels": [ + "VQGQ4" + ], + "is_latest_label": true }, { "label": "OOCL Texas", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong (January, 2019).", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/HK8L" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/HK8L", + "hidden_labels": [ + "IMO:9329552" + ], + "alt_labels": [ + "VRDP4" + ], + "is_latest_label": true }, { "label": "OOCL Le Havre", "definition": "Container ship vessel, which is currently flying the flag of Hong Kong.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/HKC2" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/HKC2", + "hidden_labels": [ + "IMO:9404857" + ], + "alt_labels": [ + "VRGE3" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "self-propelled small boat", "definition": "A small self-propelled platform operating on the surface of the water column that may be easily removed from the water (e.g. shore-based RIBs ships' boats).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/33" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/33", + "is_latest_label": true }, { "label": "vessel of opportunity on fixed route", @@ -1464,29 +3131,62 @@ { "label": "Spirit of Tasmania 2", "definition": "Passenger/Ro-Ro Cargo ship vessel, which is currently flying the flag of Australia (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/100" + "about": "http://vocab.aodn.org.au/def/platform/entity/100", + "hidden_labels": [ + "IMO:9158434" + ], + "alt_labels": [ + "VNSZ" + ], + "is_latest_label": true }, { "label": "Sea Flyte", "definition": "Passenger ship vessel, which is currently flying the flag of Australia (February, 2009).", - "about": "http://vocab.aodn.org.au/def/platform/entity/107" + "about": "http://vocab.aodn.org.au/def/platform/entity/107", + "hidden_labels": [ + "IMO:9129768" + ], + "alt_labels": [ + "VHW5167" + ], + "is_latest_label": true }, { "label": "Fantasea Wonder", "definition": "Passenger ship vessel, which is currently flying the flag of Australia (June, 2012).", - "about": "http://vocab.aodn.org.au/def/platform/entity/108" + "about": "http://vocab.aodn.org.au/def/platform/entity/108", + "alt_labels": [ + "VJQ7467" + ], + "is_latest_label": true }, { "label": "Spirit of Tasmania 1", "definition": "Spirit of Tasmania 1 is owned by the TT-Line Company. It was built in 1998 by Kvaerner Masa-Yards in Finland as Superfast IV on the Patras-Ancona route. Since 2002, It is operating on the Melbourne (Victoria) - Devonport (Tasmania) route across Bass Strait", - "about": "http://vocab.aodn.org.au/def/platform/entity/73" + "about": "http://vocab.aodn.org.au/def/platform/entity/73", + "hidden_labels": [ + "IMO: 9158446" + ], + "alt_labels": [ + "VLST" + ], + "is_latest_label": true }, { "label": "Harbour Master", "definition": "Passenger ship vessel, which is currently flying the flag of Australia.", - "about": "http://vocab.aodn.org.au/def/platform/entity/77" + "about": "http://vocab.aodn.org.au/def/platform/entity/77", + "hidden_labels": [ + "MMSI:503106610" + ], + "alt_labels": [ + "XPJ6VHP" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "fishing vessel", @@ -1496,159 +3196,353 @@ { "label": "Tangaroa", "definition": "Fishing support vessel, which is currently flying the flag of New Zealand (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/111" + "about": "http://vocab.aodn.org.au/def/platform/entity/111", + "hidden_labels": [ + "IMO:9011571" + ], + "alt_labels": [ + "ZMFR" + ], + "is_latest_label": true }, { "label": "Santo Rocco", "definition": "Trawler fishing vessel operated by Australian Wild Tuna, which is currently flying the Australian flag (May 2012)", - "about": "http://vocab.aodn.org.au/def/platform/entity/112" + "about": "http://vocab.aodn.org.au/def/platform/entity/112", + "hidden_labels": [ + "IMO:8402826" + ], + "alt_labels": [ + "LFB13191P" + ], + "is_latest_label": true }, { "label": "Austral Leader II", "definition": "Trawler fishing vessel, currently flying the Australian flag (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/113" + "about": "http://vocab.aodn.org.au/def/platform/entity/113", + "hidden_labels": [ + "IMO:7382770" + ], + "alt_labels": [ + "VHLU" + ], + "is_latest_label": true }, { "label": "Janas", "definition": "Fishing vessel, currently flying the New Zealand flag (May 2013)", - "about": "http://vocab.aodn.org.au/def/platform/entity/114" + "about": "http://vocab.aodn.org.au/def/platform/entity/114", + "hidden_labels": [ + "IMO:9057109" + ], + "alt_labels": [ + "ZMTW" + ], + "is_latest_label": true }, { "label": "Will Watch", "definition": "Trawler fishing vessel, currently flying the New Zealand flag (May 2012)", - "about": "http://vocab.aodn.org.au/def/platform/entity/115" + "about": "http://vocab.aodn.org.au/def/platform/entity/115", + "hidden_labels": [ + "IMO:7225831" + ], + "alt_labels": [ + "E5WW" + ], + "is_latest_label": true }, { "label": "Southern Champion", "definition": "Trawler fishing vessel, currently flying the Australian flag (May 2013). It was decommissioned in 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/116" + "about": "http://vocab.aodn.org.au/def/platform/entity/116", + "hidden_labels": [ + "IMO:7351147" + ], + "alt_labels": [ + "VHGI" + ], + "is_latest_label": true }, { "label": "Rehua", "definition": "Trawler fishing vessel, currently flying the New Zealand flag (August 2011)", - "about": "http://vocab.aodn.org.au/def/platform/entity/117" + "about": "http://vocab.aodn.org.au/def/platform/entity/117", + "hidden_labels": [ + "IMO:9147784" + ], + "alt_labels": [ + "ZMRE" + ], + "is_latest_label": true }, { "label": "San Tongariro", "definition": "Trawler fishing vessel, currently flying the flag of New Zealand.", - "about": "http://vocab.aodn.org.au/def/platform/entity/15" + "about": "http://vocab.aodn.org.au/def/platform/entity/15", + "hidden_labels": [ + "IMO:9149914" + ], + "alt_labels": [ + "ZMA3180" + ], + "is_latest_label": true }, { "label": "Elena Rose", "definition": "Fishing vessel, which is currently flying the flag of Australia (February, 2024)", - "about": "http://vocab.aodn.org.au/def/platform/entity/348" + "about": "http://vocab.aodn.org.au/def/platform/entity/348", + "hidden_labels": [ + "MMSI:503152260" + ], + "alt_labels": [ + "FB10814" + ], + "is_latest_label": true }, { "label": "Amaltal Enterprise", "definition": "Fishing vessel, which was flying the flag of New Zealand (December, 2011).", - "about": "http://vocab.aodn.org.au/def/platform/entity/355" + "about": "http://vocab.aodn.org.au/def/platform/entity/355", + "hidden_labels": [ + "IMO:8619534" + ], + "alt_labels": [ + "ZMKW" + ], + "is_latest_label": true }, { "label": "Paerangi", "definition": "Fishing vessel which was known as the Paerangi until 2008. It is now known as the Jawhart Al Wusta.", - "about": "http://vocab.aodn.org.au/def/platform/entity/356" + "about": "http://vocab.aodn.org.au/def/platform/entity/356", + "hidden_labels": [ + "IMO:9256664" + ], + "alt_labels": [ + "ZMDS" + ], + "is_latest_label": true }, { "label": "Tokatu", "definition": "Trawler fishing vessel, currently flying the New Zealand flag (November 2019)", - "about": "http://vocab.aodn.org.au/def/platform/entity/48" + "about": "http://vocab.aodn.org.au/def/platform/entity/48", + "hidden_labels": [ + "IMO:9816153" + ], + "alt_labels": [ + "ZMTK" + ], + "is_latest_label": true }, { "label": "Geelong Star", "definition": "Fishing vessel, currently flying the Netherlands flag (January 2017)", - "about": "http://vocab.aodn.org.au/def/platform/entity/6" + "about": "http://vocab.aodn.org.au/def/platform/entity/6", + "hidden_labels": [ + "IMO:8209171" + ], + "alt_labels": [ + "VHKJ" + ], + "is_latest_label": true }, { "label": "Antarctic Aurora", "definition": "Fishing vessel, which is currently flying the flag of Australia (December, 2020)", - "about": "http://vocab.aodn.org.au/def/platform/entity/61" + "about": "http://vocab.aodn.org.au/def/platform/entity/61", + "hidden_labels": [ + "IMO:9876244" + ], + "alt_labels": [ + "VKAA" + ], + "is_latest_label": true }, { "label": "Empress Pearl", "definition": "Trawler fishing vessel, currently flying the Australian flag (January, 2017)", - "about": "http://vocab.aodn.org.au/def/platform/entity/7" + "about": "http://vocab.aodn.org.au/def/platform/entity/7", + "hidden_labels": [ + "IMO:8409214" + ], + "alt_labels": [ + "VM7743" + ], + "is_latest_label": true }, { "label": "Amaltal Explorer", "definition": "Trawler fishing vessel, which is currently flying the flag of New Zealand (February, 2022).", - "about": "http://vocab.aodn.org.au/def/platform/entity/78" + "about": "http://vocab.aodn.org.au/def/platform/entity/78", + "hidden_labels": [ + "IMO:8510805" + ], + "alt_labels": [ + "ZMTZ" + ], + "is_latest_label": true }, { "label": "Amaltal Columbia", "definition": "Factory trawler fishing vessel, which is currently flying the flag of New Zealand (January, 2022).", - "about": "http://vocab.aodn.org.au/def/platform/entity/79" + "about": "http://vocab.aodn.org.au/def/platform/entity/79", + "hidden_labels": [ + "IMO:8913265" + ], + "alt_labels": [ + "ZMAC" + ], + "is_latest_label": true }, { "label": "Antarctic Discovery", "definition": "Fishing vessel, currently flying the Australian flag (January 2017)", - "about": "http://vocab.aodn.org.au/def/platform/entity/8" + "about": "http://vocab.aodn.org.au/def/platform/entity/8", + "hidden_labels": [ + "IMO:9123219" + ], + "alt_labels": [ + "VKAD" + ], + "is_latest_label": true }, { "label": "Cape Arkona", "definition": "Fishing vessel, which is currently flying the flag of Australia (February, 2022).", - "about": "http://vocab.aodn.org.au/def/platform/entity/80" + "about": "http://vocab.aodn.org.au/def/platform/entity/80", + "hidden_labels": [ + "IMO:9857585" + ], + "alt_labels": [ + "VMDY" + ], + "is_latest_label": true }, { "label": "Isla Eden", "definition": "Fishing vessel, currently flying the Australian flag (March 2016)", - "about": "http://vocab.aodn.org.au/def/platform/entity/896" + "about": "http://vocab.aodn.org.au/def/platform/entity/896", + "hidden_labels": [ + "IMO:9111694" + ], + "alt_labels": [ + "VJN4147" + ], + "is_latest_label": true }, { "label": "Saxon Onward", "definition": "Fishing vessel, currently flying the Australian flag (March 2016)", - "about": "http://vocab.aodn.org.au/def/platform/entity/897" + "about": "http://vocab.aodn.org.au/def/platform/entity/897", + "hidden_labels": [ + "IMO:5314987" + ], + "alt_labels": [ + "VJT5748" + ], + "is_latest_label": true }, { "label": "Sniper", "definition": "Fishing vessel, currently flying the Australian flag (January 2017)", - "about": "http://vocab.aodn.org.au/def/platform/entity/9" + "about": "http://vocab.aodn.org.au/def/platform/entity/9", + "hidden_labels": [ + "MMSI:503798800" + ], + "alt_labels": [ + "VHN7652" + ], + "is_latest_label": true }, { "label": "Antarctic Chieftain", "definition": "Fishing vessel, currently flying the Australian flag (August 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/933" + "about": "http://vocab.aodn.org.au/def/platform/entity/933", + "hidden_labels": [ + "IMO:9262833" + ], + "alt_labels": [ + "VJT6415" + ], + "is_latest_label": true }, { "label": "Corinthian Bay", "definition": "Fishing vessel, currently flying the Australian flag (September 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/934" + "about": "http://vocab.aodn.org.au/def/platform/entity/934", + "hidden_labels": [ + "IMO:9188960" + ], + "alt_labels": [ + "VJN4779" + ], + "is_latest_label": true }, { "label": "Atlas Cove", "definition": "Fishing vessel, currently flying the Australian flag (August 2016).", - "about": "http://vocab.aodn.org.au/def/platform/entity/935" + "about": "http://vocab.aodn.org.au/def/platform/entity/935", + "hidden_labels": [ + "IMO:9171008" + ], + "alt_labels": [ + "VHJT" + ], + "is_latest_label": true }, { "label": "Oscar Dyson", "definition": "Fishery vessel owned by NOAA, which is currently flying the US flag.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/33OA" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/33OA", + "hidden_labels": [ + "IMO:9270335" + ], + "alt_labels": [ + "WTEP" + ], + "is_latest_label": true }, { "label": "Reuben Lasker", "definition": "Fishing vessel owned by NOAA, which is currently flying the US flag.", - "about": "http://vocab.nerc.ac.uk/collection/C17/current/33UD" + "about": "http://vocab.nerc.ac.uk/collection/C17/current/33UD", + "hidden_labels": [ + "IMO:9664988" + ], + "alt_labels": [ + "WTEG" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "self-propelled boat", "definition": "A small self-propelled platform operating on the surface of the water column in unpredictable locations that is smaller than a ship but too large to easily remove from the water.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/37" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/37", + "is_latest_label": true }, { "label": "man-powered boat", "definition": "A platform operating on the surface of the water column that is manually propelled and may not be easily removed from the water (e.g. trireme).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/38" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/38", + "is_latest_label": true }, { "label": "naval vessel", "definition": "A platform operating on the surface of the water column in unpredictable locations that is primarily equipped manned and operated for military purposes. Includes surface warships of all sizes and logistic support vessels.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/39" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/39", + "is_latest_label": true }, { "label": "man-powered small boat", "definition": "A platform operating on the surface of the water column that is manually propelled and may be easily removed from the water (e.g. rowing boat canoe).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/3A" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/3A", + "is_latest_label": true } ] }, @@ -1660,42 +3554,50 @@ { "label": "organism", "definition": "A living creature carrying instruments or collecting samples", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/70" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/70", + "is_latest_label": true }, { "label": "human", "definition": "A human being without specialised equipment operating on land or the surface of the water column.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/71" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/71", + "is_latest_label": true }, { "label": "diver", "definition": "A human being with self-contained equipment or surface-connected suit enabling operation within the water column.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/72" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/72", + "is_latest_label": true }, { "label": "flightless bird", "definition": "A bird that is unable to fly with the ability to exist within the water column (e.g. penguin).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/73" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/73", + "is_latest_label": true }, { "label": "seabird and duck", "definition": "A flighted bird that is able to exist on the water column surface and dive into the water column (e.g. cormorants auks ducks and gulls).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/74" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/74", + "is_latest_label": true }, { "label": "cetacean", "definition": "A mammal that exists within the water column but needing to regularly surface to breathe (i.e. dolphins and whales).", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/75" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/75", + "is_latest_label": true }, { "label": "fish", "definition": "A free-swimming creature that exists totally within the water column.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/76" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/76", + "is_latest_label": true }, { "label": "land-sea mammals", "definition": "A mammal that exists both on land and within the water column. Includes seals sealions sea-otters and walruses.", - "about": "http://vocab.nerc.ac.uk/collection/L06/current/77" + "about": "http://vocab.nerc.ac.uk/collection/L06/current/77", + "is_latest_label": true } ] }, @@ -1712,14 +3614,23 @@ { "label": "Himawari-8", "definition": "This satellite was the 1st flight of the Himawari 3rd generation programme. It operated from October 2014, and was replaced by Himawari-9 as the primary satellite in December 2022, it operated at an altitude of 35786km, in a geostationary orbit. Instrumentation: Advanced Himawari Imager, Data Collection Service, Space Environment Data Acquisition monitor.", - "about": "http://vocab.aodn.org.au/def/platform/entity/95" + "about": "http://vocab.aodn.org.au/def/platform/entity/95", + "hidden_labels": [ + "JMA - Himawari 3rd generation - Himawari-8" + ], + "is_latest_label": true }, { "label": "Himawari-9", "definition": "This satellite was the 2nd flight of the Himawari 3rd generation programme. It operated from Novermber 2016, it operated at an altitude of 35786km, in a geostationary orbit. Instrumentation: Advanced Himawari Imager, Data Collection Service, Space Environment Data Acquisition monitor.", - "about": "http://vocab.aodn.org.au/def/platform/entity/96" + "about": "http://vocab.aodn.org.au/def/platform/entity/96", + "hidden_labels": [ + "JMA - Himawari 3rd generation - Himawari-9" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "orbiting satellite", @@ -1729,139 +3640,256 @@ { "label": "SNPP", "definition": "This satellite was a prototype of the JPSS programme, originally designed as Preparatory Programme of the aborted NPOESS (National Polar-orbiting Operational Environmental Satellite System). It operated from October 2011, at an altitute of 825km, in a sunsynchronous orbit. Instrumentation: Advanced Technology Microwave Sounder, Clouds and the Earth’s Radiant Energy System, Cross-track Infrared Sounder, Ozone Mapping and Profiler Suite, and Visible/Infrared Imager Radiometer Suite.", - "about": "http://vocab.aodn.org.au/def/platform/entity/42" + "about": "http://vocab.aodn.org.au/def/platform/entity/42", + "hidden_labels": [ + "NASA/NOAA - Joint Polar Satellite System (JPSS) - SNPP", + "Suomi National Polar-orbiting Partnership" + ], + "is_latest_label": true }, { "label": "Sentinel-1A", "definition": "This satellite was the 1st flight of the Sentinel-1 programme, providing SAR observation. It operated between April 2014 and is operational until 2021, at an altitude of 693km, in a sunsynchronous orbit. Instrumentation: Synthetic Aperture Radar (C-band).", - "about": "http://vocab.aodn.org.au/def/platform/entity/49" + "about": "http://vocab.aodn.org.au/def/platform/entity/49", + "is_latest_label": true }, { "label": "Sentinel-1B", "definition": "This satellite was the 2nd flight of the Sentinel-1 programme, providing SAR observation. It operated between April 2016 and is operational until 2023, at an altitude of 693km, in a sunsynchronous orbit. Instrumentation: Synthetic Aperture Radar (C-band).", - "about": "http://vocab.aodn.org.au/def/platform/entity/50" + "about": "http://vocab.aodn.org.au/def/platform/entity/50", + "is_latest_label": true }, { "label": "NOAA-8", "definition": "This satellite was the 4th flight unit of the NOAA 4th generation programme, and 1st of the ATN series. It operated between March 1983 and December 1985 at an altitutde of 820km, in a sunsynchronous orbit. Instrumentation: Argos Data Collection System , Advanced Very High Resolution Radiometer, High-resolution Infra Red Sounder / 2, Microwave Sounding Unit, Search and Rescue Satellite-Aided Tracking System, Stratospheric Sounding Unit, SEM / Medium energy proton detector and SEM / Total Energy Detector.", - "about": "http://vocab.aodn.org.au/def/platform/entity/863" + "about": "http://vocab.aodn.org.au/def/platform/entity/863", + "hidden_labels": [ + "NOAA 4th Generation - Polar Operational Environmental Satellites (POES) - NOAA-8", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-9", "definition": "This satellite was the 5th flight unit of the NOAA 4th generation programme, and 2nd of the ATN series. It operated between December 1984 and February 1998 at an altitutde of 850km, in a sunsynchronous orbit. Instrumentation: Argos Data Collection System, Advanced Very High Resolution Radiometer / 2, Earth Radiation Budget Experiment, High-resolution Infra Red Sounder / 2, Microwave Sounding Unit, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, Stratospheric Sounding Unit, SEM / Medium energy proton detector and SEM / Total Energy Detector", - "about": "http://vocab.aodn.org.au/def/platform/entity/864" + "about": "http://vocab.aodn.org.au/def/platform/entity/864", + "hidden_labels": [ + "NOAA 4th Generation - Polar Operational Environmental Satellites (POES) - NOAA-9", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-10", "definition": "This satellite was the 6th flight unit of the NOAA 4th generation programme, and 3rd of the ATN series. It operated between September 1986 and August 2001 at an altitutde of 810km, in a sunsynchronous orbit. Instrumentation: Argos Data Collection System, Advanced Very High Resolution Radiometer, Earth Radiation Budget Experiment, High-resolution Infra Red Sounder / 2, Microwave Sounding Unit, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, Stratospheric Sounding Unit, SEM / Medium energy proton detector and SEM / Total Energy Detector", - "about": "http://vocab.aodn.org.au/def/platform/entity/865" + "about": "http://vocab.aodn.org.au/def/platform/entity/865", + "hidden_labels": [ + "NOAA 4th Generation - Polar Operational Environmental Satellites (POES) - NOAA-10", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-11", "definition": "This satellite was the 7th flight unit of the NOAA 4th generation programme, and 4th of the ATN series. It operated between September 1988 and June 2004 at an altitutde of 843km, in a sunsynchronous orbit. Instrumentation: Argos Data Collection System, Advanced Very High Resolution Radiometer / 2, High-resolution Infra Red Sounder / 2, Microwave Sounding Unit, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, Stratospheric Sounding Unit, SEM / Medium energy proton detector and SEM / Total Energy Detector", - "about": "http://vocab.aodn.org.au/def/platform/entity/866" + "about": "http://vocab.aodn.org.au/def/platform/entity/866", + "hidden_labels": [ + "NOAA 4th Generation - Polar Operational Environmental Satellites (POES) - NOAA-11", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-12", "definition": "This satellite was the 8th flight unit of the NOAA 4th generation programme, and 5th of the ATN series. It operated between May 1991 and August 2007 at an altitutde of 804km, in a sunsynchronous orbit. Instrumentation: Argos Data Collection System, Advanced Very High Resolution Radiometer / 2, High-resolution Infra Red Sounder / 2, Microwave Sounding Unit, Stratospheric Sounding Unit, SEM / Medium energy proton detector and SEM / Total Energy Detector", - "about": "http://vocab.aodn.org.au/def/platform/entity/867" + "about": "http://vocab.aodn.org.au/def/platform/entity/867", + "hidden_labels": [ + "NOAA 4th Generation - Polar Operational Environmental Satellites (POES) - NOAA-12", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-13", "definition": "This satellite was the 9th flight unit of the NOAA 4th generation programme, and 6th of the ATN series. It operated between 09 August 1993 and 21 August 1993 at an altitutde of 820km, in a sunsynchronous orbit. Instrumentation: Argos Data Collection System, Advanced Very High Resolution Radiometer / 2, High-resolution Infra Red Sounder / 2, Microwave Sounding Unit, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, Stratospheric Sounding Unit, SEM / Medium energy proton detector and SEM / Total Energy Detector", - "about": "http://vocab.aodn.org.au/def/platform/entity/868" + "about": "http://vocab.aodn.org.au/def/platform/entity/868", + "hidden_labels": [ + "NOAA 4th Generation - Polar Operational Environmental Satellites (POES) - NOAA-13", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-14", "definition": "This satellite was the 10th (last) flight unit of the NOAA 4th generation programme, and 7th of the ATN series. It operated between December 1994 and May 2007 at an altitutde of 844km, in a sunsynchronous orbit. Instrumentation: Argos Data Collection System, Advanced Very High Resolution Radiometer / 2, High-resolution Infra Red Sounder / 2, Microwave Sounding Unit, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, Stratospheric Sounding Unit, SEM / Medium energy proton detector and SEM / Total Energy Detector", - "about": "http://vocab.aodn.org.au/def/platform/entity/869" + "about": "http://vocab.aodn.org.au/def/platform/entity/869", + "hidden_labels": [ + "NOAA 4th Generation - Polar Operational Environmental Satellites (POES) - NOAA-14", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-15", "definition": "This satellite was the 1st flight of the NOAA 5th generation programme. It operated between May 1998 and 2018, at an altitude of 807km, in a sunsynchronous orbit. Instrumentation: Advanced Microwave Sounding Unit - A, Advanced Microwave Sounding Unit - B, Advanced Very High Resolution Radiometer / 3, High-resolution Infra Red Sounder / 3, Search and Rescue Satellite-Aided Tracking System, Data Collection System / 2 (also called Argos-2), SEM / Medium energy proton detector and SEM / Total Energy Detector.", - "about": "http://vocab.aodn.org.au/def/platform/entity/870" + "about": "http://vocab.aodn.org.au/def/platform/entity/870", + "hidden_labels": [ + "NOAA 5th Generation - Polar Operational Environmental Satellites (POES) - NOAA-15", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-16", "definition": "This satellite was the 2nd flight of the NOAA 5th generation programme. It operated between September 2000 and June 2014, at an altitude of 849km, in a sunsynchronous orbit. Instrumentation: Advanced Microwave Sounding Unit - A, Advanced Microwave Sounding Unit - B, Advanced Very High Resolution Radiometer / 3, High-resolution Infra Red Sounder / 3, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, Data Collection System / 2 (also called Argos-2), SEM / Medium energy proton detector and SEM / Total Energy Detector", - "about": "http://vocab.aodn.org.au/def/platform/entity/871" + "about": "http://vocab.aodn.org.au/def/platform/entity/871", + "hidden_labels": [ + "NOAA 5th Generation - Polar Operational Environmental Satellites (POES) - NOAA-16", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-17", "definition": "This satellite was the 3rd flight of the NOAA 5th generation programme. It operated between June 2002 and April 2013, at an altitude of 810km, in a sunsynchronous orbit. Instrumentation: Advanced Microwave Sounding Unit - A, Advanced Microwave Sounding Unit - B, Advanced Very High Resolution Radiometer / 3, High-resolution Infra Red Sounder / 3, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, Data Collection System / 2 (also called Argos-2), SEM / Medium energy proton detector and SEM / Total Energy Detector", - "about": "http://vocab.aodn.org.au/def/platform/entity/872" + "about": "http://vocab.aodn.org.au/def/platform/entity/872", + "hidden_labels": [ + "NOAA 5th Generation - Polar Operational Environmental Satellites (POES) - NOAA-17", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-18", "definition": "This satellite was the 4th flight of the NOAA 5th generation programme. It operated between May 2005 and 2018, at an altitude of 854km, in a sunsynchronous orbit. Instrumentation: Advanced Microwave Sounding Unit - A, Advanced Very High Resolution Radiometer / 3, High-resolution Infra Red Sounder / 4, Microwave Humidity Sounding, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, Data Collection System / 2 (also called Argos-2), SEM / Medium energy proton detector and SEM / Total Energy Detector.", - "about": "http://vocab.aodn.org.au/def/platform/entity/873" + "about": "http://vocab.aodn.org.au/def/platform/entity/873", + "hidden_labels": [ + "NOAA 5th Generation - Polar Operational Environmental Satellites (POES) - NOAA-18", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "NOAA-19", "definition": "This satellite was the 5th (last) flight of the NOAA 5th generation programme. It operated between February 2009 and 2018, at an altitude of 870km, in a sunsynchronous orbit. Instrumentation: Advanced Data Collection System (also called Argos-3), Advanced Microwave Sounding Unit - A, Advanced Very High Resolution Radiometer / 3, High-resolution Infra Red Sounder / 4, Microwave Humidity Sounding, Search and Rescue Satellite-Aided Tracking System, Solar Backscatter Ultraviolet / 2, SEM / Medium energy proton detector and SEM / Total Energy Detector.", - "about": "http://vocab.aodn.org.au/def/platform/entity/874" + "about": "http://vocab.aodn.org.au/def/platform/entity/874", + "hidden_labels": [ + "NOAA 5th Generation - Polar Operational Environmental Satellites (POES) - NOAA-19", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "Aqua", "definition": "This satellite was the 2nd flight of the NASA EOS programme. It operated between May 2002 and 2018, at an altitude of 705km, in a sunsynchronous orbit. Instrumentation: Atmospheric Infra-Red Sounder, Advanced Microwave Scanning Radiometer for EOS, Advanced Microwave Sounding Unit - A, Clouds and the Earth’s Radiant Energy System, Humidity Sounder for Brazil and Moderate-resolution Imaging Spectro-radiometer.", - "about": "http://vocab.aodn.org.au/def/platform/entity/879" + "about": "http://vocab.aodn.org.au/def/platform/entity/879", + "hidden_labels": [ + "NASA - Earth Observation System (EOS) - Aqua" + ], + "is_latest_label": true }, { "label": "OrbView-2", "definition": "This satellite was the only flight of the OrbView-2/SeaStar (former name) programme. It operated between August 1997 and December 2010, at an altitude of 705km, in a sunsynchronous orbit. Instrumentation: Sea-viewing Wide Field-of-view Sensor (SeaWiFS).", - "about": "http://vocab.aodn.org.au/def/platform/entity/881" + "about": "http://vocab.aodn.org.au/def/platform/entity/881", + "hidden_labels": [ + "GeoEye - OrbView-2 (former: SeaStar)" + ], + "is_latest_label": true }, { "label": "SAC-D", "definition": "This satellite was the 4th flight of the Satélite de Aplicaciones Cientificas (SAC) Aquarius Mission programme. It operated between June 2011 and June 2015, at an altitude of 661km, in a sunsynchronous orbit. Instrumentation: Aquarius.", - "about": "http://vocab.aodn.org.au/def/platform/entity/882" + "about": "http://vocab.aodn.org.au/def/platform/entity/882", + "hidden_labels": [ + "CONAE/NASA - Satélite de Aplicaciones Cientificas (SAC) Aquarius Mission - SAC-D" + ], + "is_latest_label": true }, { "label": "TOPEX-Poseidon", "definition": "This satellite was the only flight of the TOPEX-Poseidon programme. It operated between August 1992 and October 2005, at an altitude of 1336km, in a drifting orbit. Instrumentation: Doppler Orbitography and Radiopositioning Integrated by Satellite, GPS Demonstration Receiver, Laser Retroreflector Array, Single-frequency Solid-state Altimeter, TOPEX Microwave Radiometer, NASA Radar Altimeter.", - "about": "http://vocab.aodn.org.au/def/platform/entity/883" + "about": "http://vocab.aodn.org.au/def/platform/entity/883", + "hidden_labels": [ + "NASA/CNES - Topography Experiment - Positioning,Ocean,Solid Earth, Ice Dynamics, Orbital Navigator (TOPEX-Poseidon)" + ], + "is_latest_label": true }, { "label": "JASON-1", "definition": "This satellite was the 1st flight of the JASON series. It operated between December 2001 and July 2013, at an altitude of 1324km, in a drifting orbit. Instrumentation: Doppler Orbitography and Radiopositioning Integrated by Satellite, JASON Microwave Radiometer, Laser Retroreflector Array, Poseidon 2, Turbo Rogue Space Receiver.", - "about": "http://vocab.aodn.org.au/def/platform/entity/884" + "about": "http://vocab.aodn.org.au/def/platform/entity/884", + "hidden_labels": [ + "NASA/CNES/EUMETSAT/NOAA - Joint Altimetry Satellite Oceanography Network (JASON) - JASON-1" + ], + "is_latest_label": true }, { "label": "JASON-2", "definition": "This satellite was the 2nd flight of the JASON series, also called the Ocean Surface Topography Mission (OSTM). It operated between June 2008 and October 2019, at an altitude of 1336km, in a drifting orbit. Instrumentation: Advanced Microwave Radiometer, Doppler Orbitography and Radiopositioning Integrated by Satellite, Laser Retroreflector Array, Poseidon 3, Turbo Rogue Space Receiver.", - "about": "http://vocab.aodn.org.au/def/platform/entity/885" + "about": "http://vocab.aodn.org.au/def/platform/entity/885", + "hidden_labels": [ + "NASA/CNES/EUMETSAT/NOAA - Joint Altimetry Satellite Oceanography Network (JASON) - JASON-2" + ], + "is_latest_label": true }, { "label": "JASON-3", "definition": "This satellite will be the 3rd flight of the JASON series, also called the Ocean Surface Topography Mission (OSTM). It is planned to be operational between 2016 and 2021, at an altitude of 1336km, in a drifting orbit. Instrumentation: Advanced Microwave Radiometer, Doppler Orbitography and Radiopositioning Integrated by Satellite, Laser Retroreflector Array, Poseidon 3B, Turbo Rogue Space Receiver.", - "about": "http://vocab.aodn.org.au/def/platform/entity/886" + "about": "http://vocab.aodn.org.au/def/platform/entity/886", + "hidden_labels": [ + "NASA/CNES/EUMETSAT/NOAA - Joint Altimetry Satellite Oceanography Network (JASON) - JASON-3" + ], + "is_latest_label": true }, { "label": "GFO", "definition": "This satellite was the 2nd (last) flight of the GEOSat programme. It operated between February 1998 and October 2008 at an altitude of 784km, in a drifting orbit. Instrumentation: GEOSat Follow-On Radar Altimeter, Laser Retroreflector Array, Turbo Rogue Space Receiver and Water Vapor Radiometer.", - "about": "http://vocab.aodn.org.au/def/platform/entity/887" + "about": "http://vocab.aodn.org.au/def/platform/entity/887", + "hidden_labels": [ + "DoD/NASA - GEOSat Follow-on (GFO)" + ], + "is_latest_label": true }, { "label": "NOAA-20", "definition": "This satellite was the 1st flight of the JPSS programme, re-named NOAA-20 after the launch. It operated from November 2017, at an altitude of 834km, in a sunsynchronous orbit. Instrumentation: Advanced Technology Microwave Sounder, Clouds and the Earth’s Radiant Energy System, Cross-track Infrared Sounder, Ozone Mapping and Profiler Suite, and Visible/Infrared Imager Radiometer Suite.", - "about": "http://vocab.aodn.org.au/def/platform/entity/91" + "about": "http://vocab.aodn.org.au/def/platform/entity/91", + "hidden_labels": [ + "NASA/NOAA - Joint Polar Satellite System (JPSS) - NOAA-20", + "National Oceanic and Atmospheric Administration" + ], + "is_latest_label": true }, { "label": "MetOpA", "definition": "This satellite was the 1st flight of the EPS programme.It operated from October 2006 until November 2021, at an altitude of 827km, in a sunsychronous orbit. Instrumentation: Advanced Data Collection System, Advanced Microwave Sounding Unit, Advanced Scatterometer, Advanced Very High Resolution Radiometer, Global Ozone Monitoring Experiment, GNSS Receiver for Atmospheric Sounding, High-resolution Infra Red Sounder, Infrared Atmospheric Sounding Interferometer, Microwave Humidity Sounding, Search & Rescue Satellite-Aided Tracking System, SEM / Total Energy Detector, SEM / Medium energy proton detector.", - "about": "http://vocab.aodn.org.au/def/platform/entity/92" + "about": "http://vocab.aodn.org.au/def/platform/entity/92", + "hidden_labels": [ + "EUMETSAT/ ESA - EUMETSAT Polar System (EPS) - MetOpA" + ], + "is_latest_label": true }, { "label": "MetOpB", "definition": "This satellite was the 2nd flight of the EPS programme.It operated from September 2012, at an altitude of 827km, in a sunsychronous orbit. Instrumentation: Advanced Data Collection System, Advanced Microwave Sounding Unit, Advanced Scatterometer, Advanced Very High Resolution Radiometer, Global Ozone Monitoring Experiment, GNSS Receiver for Atmospheric Sounding, High-resolution Infra Red Sounder, Infrared Atmospheric Sounding Interferometer, Microwave Humidity Sounding, Search & Rescue Satellite-Aided Tracking System, SEM / Total Energy Detector, SEM / Medium energy proton detector.", - "about": "http://vocab.aodn.org.au/def/platform/entity/93" + "about": "http://vocab.aodn.org.au/def/platform/entity/93", + "hidden_labels": [ + "EUMETSAT/ ESA - EUMETSAT Polar System (EPS) - MetOpB" + ], + "is_latest_label": true }, { "label": "MetOpC", "definition": "This satellite was the 3rd flight of the EPS programme.It operated from November 2018, at an altitude of 817km, in a sunsychronous orbit. Instrumentation: Advanced Data Collection System, Advanced Microwave Sounding Unit, Advanced Scatterometer, Advanced Very High Resolution Radiometer, Global Ozone Monitoring Experiment, GNSS Receiver for Atmospheric Sounding, Infrared Atmospheric Sounding Interferometer, Microwave Humidity Sounding, SEM / Total Energy Detector, SEM / Medium energy proton detector.", - "about": "http://vocab.aodn.org.au/def/platform/entity/94" + "about": "http://vocab.aodn.org.au/def/platform/entity/94", + "hidden_labels": [ + "EUMETSAT/ ESA - EUMETSAT Polar System (EPS) - MetOpC" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] }, @@ -1873,12 +3901,14 @@ { "label": "WERA beam forming HF radar", "definition": "", - "about": "http://vocab.aodn.org.au/def/platform/entity/726" + "about": "http://vocab.aodn.org.au/def/platform/entity/726", + "is_latest_label": true }, { "label": "SeaSonde direction finding HF radar", "definition": "", - "about": "http://vocab.aodn.org.au/def/platform/entity/727" + "about": "http://vocab.aodn.org.au/def/platform/entity/727", + "is_latest_label": true } ] }, @@ -1895,19 +3925,23 @@ { "label": "Slocum Glider", "definition": "The Slocum glider is 1.8 m long, 21.3 cm in diameter and weighs 52 kg.  Manufactured by Webb Research Corporation, the glider is designed to operate in coastal waters of up to 200 m deep where high maneuverability is needed.  Moving at an average forward velocity of 25 - 40 cm/s the glider travels in a sawtooth pattern through the water navigating its way to a series of pre-programmed waypoints using GPS and altimeter measurements.  Operating on C cell alkaline batteries, typical deployments can range up to 500 km with a duration of approximately 30 days.", - "about": "http://vocab.aodn.org.au/def/platform/entity/293" + "about": "http://vocab.aodn.org.au/def/platform/entity/293", + "is_latest_label": true }, { "label": "Seaglider UW", "definition": "These Seagliders are 1.8m long, 30cm in diameter and weigh 52kg. Manufactured by the Seaglider Fabrication Center at the University of Washington, the gliders are designed to operate in the open ocean in depth up to 1000m.  Moving at an average forward velocity of 25 cm/s, Seagliders travel more slowly, alternately diving and climbing along slanting glide paths.  The gliders obtain GPS navigation fixes when they surface, which they use to glide through a sequence of programmed targets.  As they are deployed in the open ocean, Seagliders have a very large range sufficient to transit entire ocean basins and can be deployed for periods of up to 6 months.", - "about": "http://vocab.aodn.org.au/def/platform/entity/294" + "about": "http://vocab.aodn.org.au/def/platform/entity/294", + "is_latest_label": true }, { "label": "1KA Seaglider", "definition": "These Seagliders are 1.8-2m long, 30cm in diameter and weigh 52kg. Manufactured by iROBOT, they are designed to operate in the open ocean in depth up to 1000m.  Moving at an average forward velocity of 25 cm/s, Seagliders travel more slowly, alternately diving and climbing along slanting glide paths.  The gliders obtain GPS navigation fixes when they surface, which they use to glide through a sequence of programmed targets.  As they are deployed in the open ocean, Seagliders have a very large range sufficient to transit entire ocean basins and can be deployed for periods of up to 6 months.", - "about": "http://vocab.aodn.org.au/def/platform/entity/295" + "about": "http://vocab.aodn.org.au/def/platform/entity/295", + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] }, @@ -1924,94 +3958,167 @@ { "label": "Lizard Island Sensor Float 1", "definition": "A round 1.4m yellow buoy has been deployed in the southern part of the main lagoon of Lizard Island to the south-east of Palfrey Island. The buoy is configured as a sensor-float with a Campbell Scientific logger, spread-spectrum radio and 2.4/5 GHz 802.11 wireless for communicating with the base station (located at the workshop near the Research Station) a surface mounted (60cm under the water surface) thermistor and an inductive modem to support a range of inductive sensors, initially this will be a SeaBird SBE39 measuring temperature and pressure (depth) and a SeaBird SBE37 measuring conductivity (salinity), temperature and depth. As of August 2010 the inductive sensors are just located in the area around the buoy, it is intended at a later date to re-position these southwards on the external reef slope to give a profile of water outside the lagoon. This buoy was decommissioned in March 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/311" + "about": "http://vocab.aodn.org.au/def/platform/entity/311", + "alt_labels": [ + "LIZSF1" + ], + "is_latest_label": true }, { "label": "Lizard Island Sensor Float 2", "definition": "A round 1.4m yellow buoy has been deployed in the southern part of the main lagoon of Lizard Island to the east of Palfrey Island. The buoy is configured as a sensor-float with a Campbell Scientific logger, spread-spectrum radio and 2.4/5 GHz 802.11 wireless for communicating with the base station (located at the workshop near the Research Station) a surface mounted (60cm under the water surface) thermistor and an inductive modem to support a range of inductive sensors, initially this will be a SeaBird SBE39 measuring temperature and pressure (depth) and a SeaBird SBE37 measuring conductivity (salinity), temperature and depth. As of August 2010 the inductive sensors are located along a 30m cable that runs north into the main lagoon with a SBE39 located at the base of the buoy and the SBE37 at the end of the sensor run. This buoy was decommissioned in March 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/312" + "about": "http://vocab.aodn.org.au/def/platform/entity/312", + "alt_labels": [ + "LIZSF2" + ], + "is_latest_label": true }, { "label": "Lizard Island Sensor Float 3", "definition": "A round 1.4m yellow buoy has been deployed in the eastern part of the main lagoon of Lizard Island. The buoy is configured as a sensor-float with a Campbell Scientific logger, spread-spectrum radio and 2.4/5 GHz 802.11 wireless for communicating with the base station (located at the workshop near the Research Station) a surface mounted (60cm under the water surface) thermistor and an inductive modem to support a range of inductive sensors, initially this will be a SeaBird SBE39 measuring temperature and pressure (depth). As of August 2010 the inductive sensors are located along a 30m cable that runs north into the main lagoon with a SBE39 located at the end of the sensor run. This float was decommissioned in April 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/313" + "about": "http://vocab.aodn.org.au/def/platform/entity/313", + "alt_labels": [ + "LIZSF3" + ], + "is_latest_label": true }, { "label": "Lizard Island Sensor Float 4", "definition": "A round 1.4m yellow buoy has been deployed in the western part of the main lagoon of Lizard Island to the south of the research station. The buoy is configured as a sensor-float with a Campbell Scientific logger, spread-spectrum radio and 2.4/5 GHz 802.11 wireless for communicating with the base station (located at the workshop near the Research Station) a surface mounted (60cm under the water surface) thermistor and an inductive modem to support a range of inductive sensors, initially this will be a SeaBird SBE39 measuring temperature and pressure (depth) and a SeaBird SBE37 measuring conductivity (salinity), temperature and pressure (depth). As of August 2010 the inductive sensors are located along a 50m cable that runs north into the main lagoon with a SBE39 located at the base of the buoy and the 37 at the end of the sensor run. This float was decommissioned in April 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/314" + "about": "http://vocab.aodn.org.au/def/platform/entity/314", + "alt_labels": [ + "LIZSF4" + ], + "is_latest_label": true }, { "label": "Orpheus Island Sensor Float 1", "definition": "A round 1.4m yellow buoy has been deployed in Little Pioneer Bay, Orpheus Island, just off the research station in the central part of the Great Barrier Reef. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the base station (located near the Research Station) a surface mounted (60cm under the water surface) thermistor and an inductive modem to support a range of inductive sensors, initially this will be a SeaBird SBE39 measuring temperature and pressure (depth). The float is moored at the entrance to Little Pioneer Bay, just deep of the reef front and will be used to measure the water entering the bay with particular interest in warm water pushing up into the bay. The data will support work being done in the bay by James Cook University researchers. This float was decommissioned in June 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/319" + "about": "http://vocab.aodn.org.au/def/platform/entity/319", + "alt_labels": [ + "OISF1" + ], + "is_latest_label": true }, { "label": "Orpheus Island Sensor Float 2", "definition": "A round 1.4m yellow buoy has been deployed in Little Pioneer Bay, Orpheus Island, just off the research station in the central part of the Great Barrier Reef. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the base station (located near the Research Station) a surface mounted (60cm under the water surface) thermistor and an inductive modem to support a range of inductive sensors, initialy this will be a SeaBird SBE39 measuring temperature and pressure (depth). The float is moored at the entrance to Little Pioneer Bay, just deep of the reef front and will be used to measure the water entering the bay with particular interest in warm water pushing up into the bay. The data will support work being done in the bay by James Cook University researchers. This float was decommissioned in June 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/320" + "about": "http://vocab.aodn.org.au/def/platform/entity/320", + "alt_labels": [ + "OISF2" + ], + "is_latest_label": true }, { "label": "Rib Reef Sensor Float 1", "definition": "The infrastructure consists of a single 1300 mm buoy located off the north (front) of the reef. The buoy has an Inductive Modem (IM) line that extends from the buoy to the bottom and then along the bottom for around 50 m and then rises to flotation located 9 m below the surface. Instruments are located on this riser to give a profile through the water column. The station is designed to measure temperature of the water column at the front of the reef and in particular to detect upwelling and other events where warmer bottom water is pushed across the shelf onto the reefs. This not only indicates processes operating across the shelf but also conditions when coral bleaching may be more common. The buoy was decommissioned in July 2017.", - "about": "http://vocab.aodn.org.au/def/platform/entity/321" + "about": "http://vocab.aodn.org.au/def/platform/entity/321", + "alt_labels": [ + "RIBSF1" + ], + "is_latest_label": true }, { "label": "Myrmidon Reef Sensor Float 1", "definition": "In February 2011 Cyclone 'Yasi' damaged the existing AIMS weather station and so this buoy was deployed with both AIMS weather station sensors and sensors for the IMOS funded GBROOS project. In December 2011, a replacement buoy was deployed with the above water sensors being the existing AIMS weather station units and the in-water sensors being provided under the IMOS funded GBROOS project. This resulted in a data gap between the cyclone in February 2011 and the buoy being deployed in December 2011. It is antcipated that the AIMS weather station will be restored in late 2012 in which case the above water sensors will transition back to the AIMS tower with the in-water sensors remaining as part of the IMOS funded work. This buoy was decommissioned in 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/323" + "about": "http://vocab.aodn.org.au/def/platform/entity/323", + "alt_labels": [ + "MYRSF1" + ], + "is_latest_label": true }, { "label": "Davies Reef Sensor Float 1", "definition": "A round 1.4m yellow buoy has been deployed in the Davies Reef lagoon as part of the sensor network infrastructure at Davies Reef in the central Great Barrier Reef off Townsville, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a SeaBird Inductive modem and initially a surface mounted (30cm under the water surface) thermistor and bottom mounted SeaBird SBE39 (temperature and pressure). This buoy was decommissioned in March 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/325" + "about": "http://vocab.aodn.org.au/def/platform/entity/325", + "alt_labels": [ + "DAVSF1" + ], + "is_latest_label": true }, { "label": "Davies Reef Sensor Float 2", "definition": "A round 1.4m yellow buoy has been deployed in the Davies Reef lagoon as part of the sensor network infrastructure at Davies Reef in the central Great Barrier Reef off Townsville, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a SeaBird Inductive modem and initially a surface mounted (30cm under the water surface) thermistor and bottom mounted SeaBird SBE39 (temperature and pressure). The buoy was decommissioned in 2011.", - "about": "http://vocab.aodn.org.au/def/platform/entity/326" + "about": "http://vocab.aodn.org.au/def/platform/entity/326", + "alt_labels": [ + "DAVSF2" + ], + "is_latest_label": true }, { "label": "Davies Reef Sensor Float 3", "definition": "A round 1.4m yellow buoy has been deployed in the Davies Reef lagoon as part of the sensor network infrastructure at Davies Reef in the central Great Barrier Reef off Townsville, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a SeaBird Inductive modem and initially a surface mounted (30cm under the water surface) thermistor and bottom mounted SeaBird SBE39 (temperature and pressure). The buoy was decommissioned in 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/327" + "about": "http://vocab.aodn.org.au/def/platform/entity/327", + "alt_labels": [ + "DAVSF3" + ], + "is_latest_label": true }, { "label": "Davies Reef Sensor Float 4", "definition": "A round 1.4m yellow buoy has been deployed in the Davies Reef lagoon as part of the sensor network infrastructure at Davies Reef in the central Great Barrier Reef off Townsville, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a SeaBird Inductive modem and initially a surface mounted (30cm under the water surface) thermistor and bottom mounted SeaBird SBE37 (conductivity, temperature and pressure). This buoy was decommissioned in March 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/328" + "about": "http://vocab.aodn.org.au/def/platform/entity/328", + "alt_labels": [ + "DAVSF4" + ], + "is_latest_label": true }, { "label": "Davies Reef Sensor Float 5", "definition": "A round 1.4m yellow buoy has been deployed in the Davies Reef lagoon as part of the sensor network infrastructure at Davies Reef in the central Great Barrier Reef off Townsville, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a SeaBird Inductive modem and initially a surface mounted (30cm under the water surface) thermistor and bottom mounted SeaBird SBE37 (conductivity, temperature and pressure). This buoy was decommissioned in March 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/329" + "about": "http://vocab.aodn.org.au/def/platform/entity/329", + "alt_labels": [ + "DAVSF5" + ], + "is_latest_label": true }, { "label": "Heron Island Sensor Float 1", "definition": "A round 1.4m yellow buoy has been deployed in the Heron Island lagoon as part of the sensor network infrastructure at Heron Island in the southern Great Barrier Reef off Gladstone, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a GPS and initially a surface mounted (30cm under the water surface) thermistor. The float is moored in the lagoon of Heron Island in around 3m of water and will be used to monitor the flow of water through the lagoon. It will be fitted with surface salinity and bottom depth and temperature in late 2008. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The buoy is re-locatable and the GPS data should be used to find the current location. This float was decommissioned in September 2021.", - "about": "http://vocab.aodn.org.au/def/platform/entity/343" + "about": "http://vocab.aodn.org.au/def/platform/entity/343", + "alt_labels": [ + "HISF1" + ], + "is_latest_label": true }, { "label": "Heron Island Sensor Float 2", "definition": "A round 1.4m yellow buoy has been deployed in the Heron Island lagoon as part of the sensor network infrastructure at Heron Island in the southern Great Barrier Reef off Gladstone, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a GPS and initially a surface mounted (30cm under the water surface) thermistor. The float is moored in the lagoon of Heron Island in around 3m of water and will be used to monitor the flow of water through the lagoon. It will be fitted with surface salinity and bottom depth and temperature in late 2008. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The buoy is re-locatable and the GPS data should be used to find the current location. This buoy was decommissioned in 2016.", - "about": "http://vocab.aodn.org.au/def/platform/entity/344" + "about": "http://vocab.aodn.org.au/def/platform/entity/344", + "alt_labels": [ + "HISF2" + ], + "is_latest_label": true }, { "label": "Heron Island Sensor Float 3", "definition": "A round 1.4m yellow buoy has been deployed in the Heron Island lagoon as part of the sensor network infrastructure at Heron Island in the southern Great Barrier Reef off Gladstone, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a GPS and initially a surface mounted (30cm under the water surface) thermistor. The float is moored in the lagoon of Heron Island in around 3m of water and will be used to monitor the flow of water through the lagoon. It will be fitted with surface salinity and bottom depth and temperature in late 2008. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The buoy is re-locatable and the GPS data should be used to find the current location. This buoy was decommissioned in 2017.", - "about": "http://vocab.aodn.org.au/def/platform/entity/345" + "about": "http://vocab.aodn.org.au/def/platform/entity/345", + "alt_labels": [ + "HISF3" + ], + "is_latest_label": true }, { "label": "Heron Island Sensor Float 4", "definition": "A round 1.4m yellow buoy has been deployed in the Heron Island lagoon as part of the sensor network infrastructure at Heron Island in the southern Great Barrier Reef off Gladstone, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a GPS and initially a surface mounted (30cm under the water surface) thermistor. The float is moored in the lagoon of Heron Island in around 3m of water and will be used to monitor the flow of water through the lagoon. It will be fitted with surface salinity and bottom depth and temperature in late 2008. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The buoy is re-locatable and the GPS data should be used to find the current location. This buoy was decommissioned in 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/346" + "about": "http://vocab.aodn.org.au/def/platform/entity/346", + "alt_labels": [ + "HISF4" + ], + "is_latest_label": true }, { "label": "Heron Island Sensor Float 5", "definition": "A round 1.4m yellow buoy has been deployed in the Heron Island lagoon as part of the sensor network infrastructure at Heron Island in the southern Great Barrier Reef off Gladstone, Australia. The buoy is configured as a sensor-float with a Campbell Scientific logger, a spread-spectrum radio for communicating with the on-reef wireless network, a GPS and initially a surface mounted (30cm under the water surface) thermistor. The float is moored in the lagoon of Heron Island in around 3m of water and will be used to monitor the flow of water through the lagoon. It will be fitted with surface salinity and bottom depth and temperature in late 2008. The unit will be serviced every six months and will be used in the future for attaching new sets of sensors. The buoy is re-locatable and the GPS data should be used to find the current location. This buoy was decommissioned in 2017.", - "about": "http://vocab.aodn.org.au/def/platform/entity/347" + "about": "http://vocab.aodn.org.au/def/platform/entity/347", + "alt_labels": [ + "HISF5" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "subsurface mooring", @@ -2021,69 +4128,116 @@ { "label": "Esperance National Reference Station Sub-surface Mooring", "definition": "Sub-surface mooring located at the Esperance National Reference Station. This mooring is operated by CSIRO. This mooring was decommissioned in December 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/143" + "about": "http://vocab.aodn.org.au/def/platform/entity/143", + "alt_labels": [ + "NRSESP-SubSurface" + ], + "is_latest_label": true }, { "label": "Kangaroo Island National Reference Station Sub-surface Mooring", "definition": "Sub-surface mooring located at the Kangaroo Island National Reference Station. This mooring is operated by SARDI (South Australian Research and Development Institute).", - "about": "http://vocab.aodn.org.au/def/platform/entity/145" + "about": "http://vocab.aodn.org.au/def/platform/entity/145", + "alt_labels": [ + "NRSKAI-SubSurface" + ], + "is_latest_label": true }, { "label": "North Stradbroke Island National Reference Station Sub-surface Mooring", "definition": "Sub-surface mooring located at the North Stradbroke Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/148" + "about": "http://vocab.aodn.org.au/def/platform/entity/148", + "is_latest_label": true }, { "label": "Rottnest Island National Reference Station Sub-surface Mooring", "definition": "Sub-surface mooring located at the Rottnest Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/151" + "about": "http://vocab.aodn.org.au/def/platform/entity/151", + "is_latest_label": true }, { "label": "Perth Canyon, WA Passive Acoustic Observatory", "definition": "The Perth Canyon, WA Passive Acoustic Observatory, is a series of moorings operated by Curtin University which collect data in the Perth Canyon region. This observatory was decommissioned in October 2017.", - "about": "http://vocab.aodn.org.au/def/platform/entity/178" + "about": "http://vocab.aodn.org.au/def/platform/entity/178", + "alt_labels": [ + "PAPCA" + ], + "is_latest_label": true }, { "label": "Portland, VIC Passive Acoustic Observatory", "definition": "The Portland, VIC Passive Acoustic Observatory, is a series of moorings operated by Curtin University which collect data in the Portland region. This observatory was decommissioned early in 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/179" + "about": "http://vocab.aodn.org.au/def/platform/entity/179", + "alt_labels": [ + "PAPOR" + ], + "is_latest_label": true }, { "label": "Tuncurry, NSW Passive Acoustic Observatory", "definition": "The Tuncurry, NSW Passive Acoustic Observatory, is a series of moorings operated by Curtin University which collect data in the Tuncurry/Forster region. This observatory was decommissioned in early 2018.", - "about": "http://vocab.aodn.org.au/def/platform/entity/180" + "about": "http://vocab.aodn.org.au/def/platform/entity/180", + "alt_labels": [ + "PATUN" + ], + "is_latest_label": true }, { "label": "Kangaroo Island, SA Passive Acoustic Observatory", "definition": "The Kangaroo Island, SA Passive Acoustic Observatory, is a series of moorings operated by SARDI (South Australian Research and Development Institute) which collect data west of Kangaroo Island. This observatory was decommissioned in November 2017.", - "about": "http://vocab.aodn.org.au/def/platform/entity/5" + "about": "http://vocab.aodn.org.au/def/platform/entity/5", + "alt_labels": [ + "PAKAI" + ], + "is_latest_label": true }, { "label": "Bass Strait Calibration site Mooring", "definition": "This calibration site mooring is located in Bass Strait. This is used for the calibration of the TOPEX/Poseidon (T/P) and Jason-1 satellite altimeters. This location lies on the descending (N -> S) pass 088 of the satellite altimeter, and thus shares similar satellite orbit characteristics to the Storm Bay mooring. The use of these two sites allows detailed investigation into the accuracy of the altimeter over two different wave climates. The average significant wave height at Storm Bay is approximately double that observed at the comparatively sheltered Bass Strait location. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/560" + "about": "http://vocab.aodn.org.au/def/platform/entity/560", + "alt_labels": [ + "SRSBAS" + ], + "is_latest_label": true }, { "label": "Storm Bay Calibration site Mooring", "definition": "This calibration site mooring is located in Storm Bay. This is used for the calibration of the TOPEX/Poseidon (T/P) and Jason-1 satellite altimeters. This location lies on the descending (N -> S) pass 088 of the satellite altimeter, and thus shares similar satellite orbit characteristics to the Bass Strait mooring. The use of these two sites allows detailed investigation into the accuracy of the altimeter over two different wave climates. The average significant wave height at Storm Bay is approximately double that observed at the comparatively sheltered Bass Strait location. This mooring is operated by CSIRO. This mooring was decommissioned in September 2016.", - "about": "http://vocab.aodn.org.au/def/platform/entity/561" + "about": "http://vocab.aodn.org.au/def/platform/entity/561", + "alt_labels": [ + "SRSSTO" + ], + "is_latest_label": true }, { "label": "Maria Island National Reference Station sub-surface mooring", "definition": "Sub-surface mooring located at the Maria Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/67" + "about": "http://vocab.aodn.org.au/def/platform/entity/67", + "alt_labels": [ + "NRSMAI-SubSurface" + ], + "is_latest_label": true }, { "label": "Kimberley, WA Passive Acoustic Observatory", "definition": "The Kimberley, WA Passive Acoustic Observatory, is a series of moorings operated by Curtin University which collect data in the Kimberley region. This observatory was decommissioned in May 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/904" + "about": "http://vocab.aodn.org.au/def/platform/entity/904", + "alt_labels": [ + "PAKIM" + ], + "is_latest_label": true }, { "label": "Pilbara, WA Passive Acoustic Observatory", "definition": "The Pilbara, WA Passive Acoustic Observatory, is a series of moorings operated by Curtin University which collect data in the Pilbara region. This mooring was decommissioned in June 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/905" + "about": "http://vocab.aodn.org.au/def/platform/entity/905", + "alt_labels": [ + "PAKIL" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true }, { "label": "mooring", @@ -2093,499 +4247,893 @@ { "label": "Bateman's Marine Park 90m Mooring", "definition": "The Bateman's Marine Park 90m Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data adjacent to the Bateman's Marine Park. This mooring was decommissioned in September 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/120" + "about": "http://vocab.aodn.org.au/def/platform/entity/120", + "alt_labels": [ + "BMP090" + ], + "is_latest_label": true }, { "label": "Bateman's Marine Park 120m Mooring", "definition": "The Bateman's Marine Park 120m Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data adjacent to the Bateman's Marine Park. This mooring was briefly decommissioned in 2014, but re-deployed shortly afterwards.", - "about": "http://vocab.aodn.org.au/def/platform/entity/121" + "about": "http://vocab.aodn.org.au/def/platform/entity/121", + "alt_labels": [ + "BMP120" + ], + "is_latest_label": true }, { "label": "Coffs Harbour 70m Mooring", "definition": "The Coffs Harbour 100m Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data in the Coffs Harbour region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/122" + "about": "http://vocab.aodn.org.au/def/platform/entity/122", + "alt_labels": [ + "CH070" + ], + "is_latest_label": true }, { "label": "Coffs Harbour 100m Mooring", "definition": "The Coffs Harbour 100m Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data in the Coffs Harbour region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/123" + "about": "http://vocab.aodn.org.au/def/platform/entity/123", + "alt_labels": [ + "CH100" + ], + "is_latest_label": true }, { "label": "Capricorn Channel Mooring", "definition": "The Capricorn Channel Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data in the Great Barrier Reef region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/124" + "about": "http://vocab.aodn.org.au/def/platform/entity/124", + "alt_labels": [ + "GBRCCH" + ], + "is_latest_label": true }, { "label": "Elusive Reef Mooring", "definition": "The Elusive Reef Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data in the Great Barrier Reef region. This mooring was decommissioned in October 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/125" + "about": "http://vocab.aodn.org.au/def/platform/entity/125", + "alt_labels": [ + "GBRELR" + ], + "is_latest_label": true }, { "label": "Heron Island South Mooring", "definition": "The Heron Island South Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data in the Great Barrier Reef region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/126" + "about": "http://vocab.aodn.org.au/def/platform/entity/126", + "alt_labels": [ + "GBRHIS" + ], + "is_latest_label": true }, { "label": "Lizard Shelf Mooring", "definition": "The Lizard Shelf Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data in the Great Barrier Reef region. This mooring was decommissioned in May 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/127" + "about": "http://vocab.aodn.org.au/def/platform/entity/127", + "alt_labels": [ + "GBRLSH" + ], + "is_latest_label": true }, { "label": "Lizard Slope Mooring", "definition": "The Lizard Slope Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data in the Great Barrier Reef region. This mooring was decommissioned in May 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/128" + "about": "http://vocab.aodn.org.au/def/platform/entity/128", + "alt_labels": [ + "GBRLSL" + ], + "is_latest_label": true }, { "label": "Myrmidon Mooring", "definition": "The Myrmidon Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data in the Great Barrier Reef region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/129" + "about": "http://vocab.aodn.org.au/def/platform/entity/129", + "alt_labels": [ + "GBRMYR" + ], + "is_latest_label": true }, { "label": "One Tree East Mooring", "definition": "The One Tree East Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data in the Great Barrier Reef region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/130" + "about": "http://vocab.aodn.org.au/def/platform/entity/130", + "alt_labels": [ + "GBROTE" + ], + "is_latest_label": true }, { "label": "Palm Passage Mooring", "definition": "The Palm Passage Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data in the Great Barrier Reef region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/131" + "about": "http://vocab.aodn.org.au/def/platform/entity/131", + "alt_labels": [ + "GBRPPS" + ], + "is_latest_label": true }, { "label": "Flat Top Banks Shelf Mooring", "definition": "The Flat Top Banks Shelf Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Indonesian Thoughflow array. It was decommissioned in 2019.", - "about": "http://vocab.aodn.org.au/def/platform/entity/132" + "about": "http://vocab.aodn.org.au/def/platform/entity/132", + "alt_labels": [ + "ITFFTB" + ], + "is_latest_label": true }, { "label": "Joseph Bonaparte Gulf Shelf Mooring", "definition": "The Joseph Bonaparte Gulf Shelf Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Indonesian Thoughflow array. It was decommissioned in 2019.", - "about": "http://vocab.aodn.org.au/def/platform/entity/133" + "about": "http://vocab.aodn.org.au/def/platform/entity/133", + "alt_labels": [ + "ITFJBG" + ], + "is_latest_label": true }, { "label": "Margaret Harries Banks Shelf Mooring", "definition": "The Margaret Harries Banks Shelf Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Indonesian Thoughflow array. It was decommissioned in 2019.", - "about": "http://vocab.aodn.org.au/def/platform/entity/134" + "about": "http://vocab.aodn.org.au/def/platform/entity/134", + "alt_labels": [ + "ITFMHB" + ], + "is_latest_label": true }, { "label": "Timor South Shelf Mooring", "definition": "The Timor South Shelf Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Indonesian Thoughflow array. It was decommissioned in 2019.", - "about": "http://vocab.aodn.org.au/def/platform/entity/135" + "about": "http://vocab.aodn.org.au/def/platform/entity/135", + "alt_labels": [ + "ITFTIS" + ], + "is_latest_label": true }, { "label": "Jervis Bay Mooring", "definition": "The Jervis Bay Mooring is operated by UNSW (University of New South Wales), ADFA (Australian Defence Force Academy) and collects data in Jervis Bay. This mooring was decommissioned in October 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/136" + "about": "http://vocab.aodn.org.au/def/platform/entity/136", + "alt_labels": [ + "JB070" + ], + "is_latest_label": true }, { "label": "Kimberley 50m Mooring", "definition": "The Kimberley 50m Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Kimberley array. This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/137" + "about": "http://vocab.aodn.org.au/def/platform/entity/137", + "alt_labels": [ + "KIM050" + ], + "is_latest_label": true }, { "label": "Kimberley 100m Mooring", "definition": "The Kimberley 100m Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Kimberley array. This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/138" + "about": "http://vocab.aodn.org.au/def/platform/entity/138", + "alt_labels": [ + "KIM100" + ], + "is_latest_label": true }, { "label": "Kimberley 200m Mooring", "definition": "The Kimberley 200m Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Kimberley array. This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/139" + "about": "http://vocab.aodn.org.au/def/platform/entity/139", + "alt_labels": [ + "KIM200" + ], + "is_latest_label": true }, { "label": "Kimberley 400m Mooring", "definition": "The Kimberley 400m Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Kimberley array. This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/140" + "about": "http://vocab.aodn.org.au/def/platform/entity/140", + "alt_labels": [ + "KIM400" + ], + "is_latest_label": true }, { "label": "Darwin National Reference Station Mooring", "definition": "The Darwin National Reference Station Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data from coastal ocean waters off Darwin.", - "about": "http://vocab.aodn.org.au/def/platform/entity/141" + "about": "http://vocab.aodn.org.au/def/platform/entity/141", + "alt_labels": [ + "NRSDAR" + ], + "is_latest_label": true }, { "label": "Esperance National Reference Station ADCP Mooring", "definition": "ADCP mooring located at the Esperance National Reference Station. This mooring is operated by CSIRO. This mooring was decommissioned in December 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/142" + "about": "http://vocab.aodn.org.au/def/platform/entity/142", + "alt_labels": [ + "NRSESP-ADCP" + ], + "is_latest_label": true }, { "label": "Kangaroo Island National Reference Station Acidification Mooring", "definition": "Acidification mooring located at the Kangaroo Island National Reference Station. This mooring is operated by SARDI (South Australian Research and Development Institute).", - "about": "http://vocab.aodn.org.au/def/platform/entity/144" + "about": "http://vocab.aodn.org.au/def/platform/entity/144", + "alt_labels": [ + "NRSKAI-CO2" + ], + "is_latest_label": true }, { "label": "Ningaloo Reef National Reference Station Mooring", "definition": "The Ningaloo Reef National Reference Station Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data from coastal ocean waters around Nigaloo Reef. This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/146" + "about": "http://vocab.aodn.org.au/def/platform/entity/146", + "alt_labels": [ + "NRSNIN" + ], + "is_latest_label": true }, { "label": "North Stradbroke Island National Reference Station ADCP Mooring", "definition": "ADCP mooring located at the North Stradbroke Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/147" + "about": "http://vocab.aodn.org.au/def/platform/entity/147", + "is_latest_label": true }, { "label": "North Stradbroke Island National Reference Station Surface Mooring", "definition": "Surface mooring located at the North Stradbroke Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/149" + "about": "http://vocab.aodn.org.au/def/platform/entity/149", + "alt_labels": [ + "NRSNSI" + ], + "is_latest_label": true }, { "label": "Rottnest Island National Reference Station ADCP Mooring", "definition": "ADCP mooring located at the Rottnest Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/150" + "about": "http://vocab.aodn.org.au/def/platform/entity/150", + "alt_labels": [ + "NRSROT-ADCP" + ], + "is_latest_label": true }, { "label": "Yongala National Reference Station Mooring", "definition": "The Yongala National Reference Station Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data near the Yongala Wreck, out from Cape Bowling Green in the central Great Barrier Reef.", - "about": "http://vocab.aodn.org.au/def/platform/entity/152" + "about": "http://vocab.aodn.org.au/def/platform/entity/152", + "alt_labels": [ + "NRSYON" + ], + "is_latest_label": true }, { "label": "Port Hacking 100m Mooring", "definition": "The Port Hacking 100m Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data from coastal ocean waters off Port Hacking.", - "about": "http://vocab.aodn.org.au/def/platform/entity/153" + "about": "http://vocab.aodn.org.au/def/platform/entity/153", + "alt_labels": [ + "PH100" + ], + "is_latest_label": true }, { "label": "Pilbara 50m Mooring", "definition": "The Pilbara 50m Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Pilbara array. This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/154" + "about": "http://vocab.aodn.org.au/def/platform/entity/154", + "alt_labels": [ + "PIL050" + ], + "is_latest_label": true }, { "label": "Pilbara 100m Mooring", "definition": "The Pilbara 100m Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Pilbara array. This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/155" + "about": "http://vocab.aodn.org.au/def/platform/entity/155", + "alt_labels": [ + "PIL100" + ], + "is_latest_label": true }, { "label": "Pilbara 200m Mooring", "definition": "The Pilbara 200m Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data as part of the Pilbara array. This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/156" + "about": "http://vocab.aodn.org.au/def/platform/entity/156", + "alt_labels": [ + "PIL200" + ], + "is_latest_label": true }, { "label": "Deep Slope Mooring (M1)", "definition": "The Deep Slope Mooring (M1) is operated by SARDI (South Australian Research and Development Institute), and was a South Australian regional mooring. This mooring was decommissioned in June 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/157" + "about": "http://vocab.aodn.org.au/def/platform/entity/157", + "alt_labels": [ + "SAM1DS" + ], + "is_latest_label": true }, { "label": "Cabbage Patch Mooring (M2)", "definition": "The Cabbage Patch Mooring (M2) is operated by SARDI (South Australian Research and Development Institute), and is a South Australian regional mooring. This mooring was decommissioned in March 2010.", - "about": "http://vocab.aodn.org.au/def/platform/entity/158" + "about": "http://vocab.aodn.org.au/def/platform/entity/158", + "alt_labels": [ + "SAM2CP" + ], + "is_latest_label": true }, { "label": "Mid-Slope Mooring (M3)", "definition": "The Mid-Slope Mooring (M3) is operated by SARDI (South Australian Research and Development Institute), and was a South Australian regional mooring. This mooring was decommissioned in June 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/159" + "about": "http://vocab.aodn.org.au/def/platform/entity/159", + "alt_labels": [ + "SAM3MS" + ], + "is_latest_label": true }, { "label": "Canyon Mooring (M4)", "definition": "The Canyon Mooring (M4) is operated by SARDI (South Australian Research and Development Institute), and is a South Australian regional mooring. This mooring was decommissioned in March 2010.", - "about": "http://vocab.aodn.org.au/def/platform/entity/160" + "about": "http://vocab.aodn.org.au/def/platform/entity/160", + "alt_labels": [ + "SAM4CY" + ], + "is_latest_label": true }, { "label": "Coffin Bay Mooring (M5)", "definition": "The Coffin Bay Mooring (M5) is operated by SARDI (South Australian Research and Development Institute), and is one of five South Australian regional moorings.", - "about": "http://vocab.aodn.org.au/def/platform/entity/161" + "about": "http://vocab.aodn.org.au/def/platform/entity/161", + "alt_labels": [ + "SAM5CB" + ], + "is_latest_label": true }, { "label": "Investigator Strait Mooring (M6)", "definition": "The Investigator Strait Mooring (M6) is operated by SARDI (South Australian Research and Development Institute), and is a South Australian regional mooring. This mooring was decommissioned in June 2009.", - "about": "http://vocab.aodn.org.au/def/platform/entity/162" + "about": "http://vocab.aodn.org.au/def/platform/entity/162", + "alt_labels": [ + "SAM6IS" + ], + "is_latest_label": true }, { "label": "Deep-Slope Mooring (M7)", "definition": "The Deep Slope Mooring (M7) is operated by SARDI (South Australian Research and Development Institute), and was a South Australian regional mooring. This mooring was decommissioned in March 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/163" + "about": "http://vocab.aodn.org.au/def/platform/entity/163", + "alt_labels": [ + "SAM7DS" + ], + "is_latest_label": true }, { "label": "Spencer Gulf Mouth Mooring (M8)", "definition": "The Spencer Gulf Mooring (M8) is operated by SARDI (South Australian Research and Development Institute), and is one of five South Australian regional moorings.", - "about": "http://vocab.aodn.org.au/def/platform/entity/164" + "about": "http://vocab.aodn.org.au/def/platform/entity/164", + "alt_labels": [ + "SAM8SG" + ], + "is_latest_label": true }, { "label": "Sydney 100m Mooring", "definition": "The Sydney 100m Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data in the Sydney region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/165" + "about": "http://vocab.aodn.org.au/def/platform/entity/165", + "alt_labels": [ + "SYD100" + ], + "is_latest_label": true }, { "label": "Sydney 140m Mooring", "definition": "The Sydney 140m Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data in the Sydney region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/166" + "about": "http://vocab.aodn.org.au/def/platform/entity/166", + "alt_labels": [ + "SYD140" + ], + "is_latest_label": true }, { "label": "Canyon 200m Head Mooring", "definition": "The Canyon 200m Head Mooring is operated by CSIRO and collects data in the Perth Canyon region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/167" + "about": "http://vocab.aodn.org.au/def/platform/entity/167", + "alt_labels": [ + "WACA20" + ], + "is_latest_label": true }, { "label": "Canyon 500m North Mooring", "definition": "The Canyon 500m North Mooring is operated by CSIRO and collects data in the Perth Canyon region. This mooring was decommissioned in July 2010.", - "about": "http://vocab.aodn.org.au/def/platform/entity/168" + "about": "http://vocab.aodn.org.au/def/platform/entity/168", + "alt_labels": [ + "WACANO" + ], + "is_latest_label": true }, { "label": "Canyon 500m South Mooring", "definition": "The Canyon 500m South Mooring is operated by CSIRO and collects data in the Perth Canyon region. This mooring was decommissioned in March 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/169" + "about": "http://vocab.aodn.org.au/def/platform/entity/169", + "alt_labels": [ + "WACASO" + ], + "is_latest_label": true }, { "label": "Two Rocks 50m Shelf Mooring", "definition": "The Two Rocks 50m Shelf Mooring is operated by CSIRO and collects data in the Two Rocks region. This mooring was decommissioned in May 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/170" + "about": "http://vocab.aodn.org.au/def/platform/entity/170", + "alt_labels": [ + "WATR05" + ], + "is_latest_label": true }, { "label": "Two Rocks 100m Shelf Mooring", "definition": "The Two Rocks 100m Shelf Mooring is operated by CSIRO and collects data in the Two Rocks region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/171" + "about": "http://vocab.aodn.org.au/def/platform/entity/171", + "alt_labels": [ + "WATR10" + ], + "is_latest_label": true }, { "label": "Two Rocks 150m Shelf Mooring", "definition": "The Two Rocks 150m Shelf Mooring is operated by CSIRO and collects data in the Two Rocks region. This mooring was decommissioned in October 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/172" + "about": "http://vocab.aodn.org.au/def/platform/entity/172", + "alt_labels": [ + "WATR15" + ], + "is_latest_label": true }, { "label": "Two Rocks 200m Shelf Mooring", "definition": "The Two Rocks 200m Shelf Mooring is operated by CSIRO and collects data in the Two Rocks region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/173" + "about": "http://vocab.aodn.org.au/def/platform/entity/173", + "alt_labels": [ + "WATR20" + ], + "is_latest_label": true }, { "label": "Two Rocks 500m Shelf Mooring", "definition": "The Two Rocks 500m Shelf Mooring is operated by CSIRO and collects data in the Two Rocks region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/174" + "about": "http://vocab.aodn.org.au/def/platform/entity/174", + "alt_labels": [ + "WATR50" + ], + "is_latest_label": true }, { "label": "South-East Queensland 200m Mooring", "definition": "The South-East Queensland 200m Mooring is operated by CSIRO and collects data as part of the East Australian Current (EAC) array. This mooring was decommissioned in June 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/175" + "about": "http://vocab.aodn.org.au/def/platform/entity/175", + "alt_labels": [ + "SEQ200" + ], + "is_latest_label": true }, { "label": "South-East Queensland 400m Mooring", "definition": "The South-East Queensland 400m Mooring is operated by CSIRO and collects data as part of the East Australian Current (EAC) array. This mooring was decommissioned in June 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/176" + "about": "http://vocab.aodn.org.au/def/platform/entity/176", + "alt_labels": [ + "SEQ400" + ], + "is_latest_label": true }, { "label": "Ocean Reference Station Sydney Mooring", "definition": "The Ocean Reference Station Sydney Mooring is operated by Sydney Water and collects data in the Sydney region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/177" + "about": "http://vocab.aodn.org.au/def/platform/entity/177", + "alt_labels": [ + "ORS065" + ], + "is_latest_label": true }, { "label": "Southern ocean Flux Station mooring", "definition": "The Southern ocean Flux Station Mooring is operated by the Australian Bureau of Meteorology (BOM), which collect data in the Sub-Antarctic Zone.", - "about": "http://vocab.aodn.org.au/def/platform/entity/181" + "about": "http://vocab.aodn.org.au/def/platform/entity/181", + "alt_labels": [ + "SOFS" + ], + "is_latest_label": true }, { "label": "Sub-Antarctic Zone Sediment Trap Mooring", "definition": "The Sub-Antarctic Zone Sediment Trap Mooring is operated by CSIRO, which collect data in the Sub-Antarctic Zone.", - "about": "http://vocab.aodn.org.au/def/platform/entity/187" + "about": "http://vocab.aodn.org.au/def/platform/entity/187", + "alt_labels": [ + "SAZOTS" + ], + "is_latest_label": true }, { "label": "East Australian Current 1 Mooring", "definition": "The East Australian Current 1 Mooring is operated by CSIRO, and collects data in the East Australian Current. The array that this mooring was part of was decommissioned in August 2013, and a newly configured array (with new moorings) was redeployed in May 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/188" + "about": "http://vocab.aodn.org.au/def/platform/entity/188", + "alt_labels": [ + "EAC1" + ], + "is_latest_label": true }, { "label": "East Australian Current 2 Mooring", "definition": "The East Australian Current 2 Mooring is operated by CSIRO, and collects data in the East Australian Current. The array that this mooring was part of was decommissioned in August 2013, and a newly configured array (with new moorings) was redeployed in May 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/189" + "about": "http://vocab.aodn.org.au/def/platform/entity/189", + "alt_labels": [ + "EAC2" + ], + "is_latest_label": true }, { "label": "East Australian Current 3 Mooring", "definition": "The East Australian Current 3 Mooring is operated by CSIRO, and collects data in the East Australian Current. The array that this mooring was part of was decommissioned in August 2013, and a newly configured array (with new moorings) was redeployed in May 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/190" + "about": "http://vocab.aodn.org.au/def/platform/entity/190", + "alt_labels": [ + "EAC3" + ], + "is_latest_label": true }, { "label": "East Australian Current 4 Mooring", "definition": "The East Australian Current 4 Mooring is operated by CSIRO, and collects data in the East Australian Current. The array that this mooring was part of was decommissioned in August 2013, and a newly configured array (with new moorings) was redeployed in May 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/191" + "about": "http://vocab.aodn.org.au/def/platform/entity/191", + "alt_labels": [ + "EAC4" + ], + "is_latest_label": true }, { "label": "East Australian Current 5 Mooring", "definition": "The East Australian Current 5 Mooring is operated by CSIRO, and collects data in the East Australian Current. The array that this mooring was part of was decommissioned in August 2013, and a newly configured array (with new moorings) was redeployed in May 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/192" + "about": "http://vocab.aodn.org.au/def/platform/entity/192", + "alt_labels": [ + "EAC5" + ], + "is_latest_label": true }, { "label": "Ombai Mooring", "definition": "The Ombai Mooring is operated by CSIRO, and collects data in the Indonesian Throughflow. This mooring was decommissioned in October 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/193" + "about": "http://vocab.aodn.org.au/def/platform/entity/193", + "alt_labels": [ + "ITFOMB" + ], + "is_latest_label": true }, { "label": "Timor North Mooring", "definition": "The Timor North Mooring is operated by CSIRO, and collects data in the Indonesian Throughflow. This mooring was decommissioned in April 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/194" + "about": "http://vocab.aodn.org.au/def/platform/entity/194", + "alt_labels": [ + "ITFTIN" + ], + "is_latest_label": true }, { "label": "Timor Sill Mooring", "definition": "The Timor Sill Mooring is operated by CSIRO, and collects data in the Indonesian Throughflow. This mooring was decommissioned in October 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/195" + "about": "http://vocab.aodn.org.au/def/platform/entity/195", + "alt_labels": [ + "ITFTSL" + ], + "is_latest_label": true }, { "label": "Polynya1 Mooring", "definition": "The Polynya1 mooring is operated by CSIRO, and collects data near the Adelie Land coast, in the Southern Ocean. This mooring was decommissioned in January 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/196" + "about": "http://vocab.aodn.org.au/def/platform/entity/196", + "alt_labels": [ + "POLYNYA1" + ], + "is_latest_label": true }, { "label": "Polynya2 Mooring", "definition": "The Polynya2 mooring is operated by CSIRO, and collects data near the Adelie Land coast, in the Southern Ocean. This mooring was decommissioned in January 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/197" + "about": "http://vocab.aodn.org.au/def/platform/entity/197", + "alt_labels": [ + "POLYNYA2" + ], + "is_latest_label": true }, { "label": "Polynya3 Mooring", "definition": "The Polynya3 mooring is operated by CSIRO, and collects data near the Adelie Land coast, in the Southern Ocean. The mooring is trapped in sea ice, and considered irretrievable in 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/198" + "about": "http://vocab.aodn.org.au/def/platform/entity/198", + "alt_labels": [ + "POLYNYA3" + ], + "is_latest_label": true }, { "label": "Beagle Gulf Mooring", "definition": "The Beagle Gulf Mooring is operated by AIMS (Australian Institute of Marine Science) and collects data which complements the National Reference Station in Darwin Harbour. This mooring was decommissioned in July 2017.", - "about": "http://vocab.aodn.org.au/def/platform/entity/2" + "about": "http://vocab.aodn.org.au/def/platform/entity/2", + "alt_labels": [ + "DARBGF" + ], + "is_latest_label": true }, { "label": "Bateman's Marine Park 70m Mooring", "definition": "It is one of two moorings deployed near Narooma, southern NSW, to capture the variability of the shelf waters, poleward of the East Australian Current (EAC) separation point. This mooring replaces the former 90m mooring, and was enabled through co-investment from Bega Valley Shire Council.", - "about": "http://vocab.aodn.org.au/def/platform/entity/20" + "about": "http://vocab.aodn.org.au/def/platform/entity/20", + "alt_labels": [ + "BMP070" + ], + "is_latest_label": true }, { "label": "Camden Sound 50m Mooring", "definition": "The Camden 50m mooring (platform code CAM050) was deployed in 2014 for a short time in the Kimberley region replacing the former Kimberley and Pilbara arrays. It was decommissioned in 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/21" + "about": "http://vocab.aodn.org.au/def/platform/entity/21", + "alt_labels": [ + "CAM050" + ], + "is_latest_label": true }, { "label": "Camden Sound 100m Mooring", "definition": "The Camden 100m mooring (platform code CAM100) was deployed in 2014 for a short time in the Kimberley region replacing the former Kimberley and Pilbara arrays. It was decommissioned in 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/22" + "about": "http://vocab.aodn.org.au/def/platform/entity/22", + "alt_labels": [ + "CAM100" + ], + "is_latest_label": true }, { "label": "Pulse Mooring", "definition": "The Pulse mooring is operated by CSIRO, and measures biogeochemical properties of the Southern Ocean. It was first deployed in October 2008. This mooring was decommissioned in April 2016.", - "about": "http://vocab.aodn.org.au/def/platform/entity/32" + "about": "http://vocab.aodn.org.au/def/platform/entity/32", + "alt_labels": [ + "PULSE" + ], + "is_latest_label": true }, { "label": "East Australian Current 500m Mooring", "definition": "The East Australian Current 500m Mooring is operated by CSIRO Oceans and Atmosphere, and collects data in the East Australian Current. This mooring forms part of the second deployment of the EAC array, and was reconfigured to incorporate parts of the continental shelf. The array that this mooring was part of was decommissioned in July 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/33" + "about": "http://vocab.aodn.org.au/def/platform/entity/33", + "alt_labels": [ + "EAC0500" + ], + "is_latest_label": true }, { "label": "East Australian Current 2000m Mooring", "definition": "The East Australian Current 2000m Mooring is operated by CSIRO Oceans and Atmosphere, and collects data in the East Australian Current. This mooring forms part of the second deployment of the EAC array, and was reconfigured to incorporate parts of the continental shelf. The array that this mooring was part of was decommissioned in July 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/34" + "about": "http://vocab.aodn.org.au/def/platform/entity/34", + "alt_labels": [ + "EAC2000" + ], + "is_latest_label": true }, { "label": "East Australian Current 3200m Mooring", "definition": "The East Australian Current 3200m Mooring is operated by CSIRO Oceans and Atmosphere, and collects data in the East Australian Current. This mooring forms part of the second deployment of the EAC array, and was reconfigured to incorporate parts of the continental shelf. The array that this mooring was part of was decommissioned in July 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/35" + "about": "http://vocab.aodn.org.au/def/platform/entity/35", + "alt_labels": [ + "EAC3200" + ], + "is_latest_label": true }, { "label": "East Australian Current 4200m Mooring", "definition": "The East Australian Current 4200m Mooring is operated by CSIRO Oceans and Atmosphere, and collects data in the East Australian Current. This mooring forms part of the second deployment of the EAC array, and was reconfigured to incorporate parts of the continental shelf. The array that this mooring was part of was decommissioned in July 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/36" + "about": "http://vocab.aodn.org.au/def/platform/entity/36", + "alt_labels": [ + "EAC4200" + ], + "is_latest_label": true }, { "label": "East Australian Current 4700m Mooring", "definition": "The East Australian Current 4700m Mooring is operated by CSIRO Oceans and Atmosphere, and collects data in the East Australian Current. This mooring forms part of the second deployment of the EAC array, and was reconfigured to incorporate parts of the continental shelf. The array that this mooring was part of was decommissioned in July 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/37" + "about": "http://vocab.aodn.org.au/def/platform/entity/37", + "alt_labels": [ + "EAC4700" + ], + "is_latest_label": true }, { "label": "East Australian Current 4800m Mooring", "definition": "The East Australian Current 4800m Mooring is operated by CSIRO Oceans and Atmosphere, and collects data in the East Australian Current. This mooring forms part of the second deployment of the EAC array, and was reconfigured to incorporate parts of the continental shelf. The array that this mooring was part of was decommissioned in July 2022.", - "about": "http://vocab.aodn.org.au/def/platform/entity/38" + "about": "http://vocab.aodn.org.au/def/platform/entity/38", + "alt_labels": [ + "EAC4800" + ], + "is_latest_label": true }, { "label": "Coffs Harbour 50m Mooring", "definition": "The Coffs Harbour 50m Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data in the Coffs Harbour region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/40" + "about": "http://vocab.aodn.org.au/def/platform/entity/40", + "alt_labels": [ + "CH050" + ], + "is_latest_label": true }, { "label": "Bonney Coast Mooring", "definition": "The Bonney Coast Mooring is operated by SARDI (South Australian Research and Development Institute), and collects data off the Victorian coast.", - "about": "http://vocab.aodn.org.au/def/platform/entity/51" + "about": "http://vocab.aodn.org.au/def/platform/entity/51", + "alt_labels": [ + "VBM100" + ], + "is_latest_label": true }, { "label": "Lynedoch Shoal Mooring", "definition": "The Lynedoch Shoal Mooring is operated by the Australian Institute of Marine Science (AIMS), and collects data on the North West Shelf, WA.", - "about": "http://vocab.aodn.org.au/def/platform/entity/52" + "about": "http://vocab.aodn.org.au/def/platform/entity/52", + "alt_labels": [ + "NWSLYN" + ], + "is_latest_label": true }, { "label": "Browse Island Mooring", "definition": "The Browse Island Mooring is operated by the Australian Institute of Marine Science (AIMS), and collects data on the North West Shelf, WA.", - "about": "http://vocab.aodn.org.au/def/platform/entity/53" + "about": "http://vocab.aodn.org.au/def/platform/entity/53", + "alt_labels": [ + "NWSBRW" + ], + "is_latest_label": true }, { "label": "Rowley Shoals Mooring", "definition": "The Rowley Shoals Mooring is operated by the Australian Institute of Marine Science (AIMS), and collects data on the North West Shelf, WA.", - "about": "http://vocab.aodn.org.au/def/platform/entity/54" + "about": "http://vocab.aodn.org.au/def/platform/entity/54", + "alt_labels": [ + "NWSROW" + ], + "is_latest_label": true }, { "label": "Barrow Island Mooring", "definition": "The Barrow Island Mooring is operated by the Australian Institute of Marine Science (AIMS), and collects data on the North West Shelf, WA.", - "about": "http://vocab.aodn.org.au/def/platform/entity/55" + "about": "http://vocab.aodn.org.au/def/platform/entity/55", + "alt_labels": [ + "NWSBAR" + ], + "is_latest_label": true }, { "label": "Upper Spencer Gulf Mooring", "definition": "The Upper Spencer Gulf Mooring is operated by SARDI (South Australian Research and Development Institute), and collects data in the Spencer Gulf, SA.", - "about": "http://vocab.aodn.org.au/def/platform/entity/56" + "about": "http://vocab.aodn.org.au/def/platform/entity/56", + "alt_labels": [ + "SAMUSG" + ], + "is_latest_label": true }, { "label": "Gulf St Vincent Mooring", "definition": "The Gulf St Vincent Mooring is operated by SARDI (South Australian Research and Development Institute), and collects data in the Gulf St Vincent, SA.", - "about": "http://vocab.aodn.org.au/def/platform/entity/57" + "about": "http://vocab.aodn.org.au/def/platform/entity/57", + "alt_labels": [ + "SAMGSV" + ], + "is_latest_label": true }, { "label": "Heron Island North mooring", "definition": "The Heron Island North Mooring is operated by AIMS (Australian Institute of Marine Science) and collect data in Great Barrier Reef region. This mooring was decommissioned in March 2013.", - "about": "http://vocab.aodn.org.au/def/platform/entity/65" + "about": "http://vocab.aodn.org.au/def/platform/entity/65", + "alt_labels": [ + "GBRHIN" + ], + "is_latest_label": true }, { "label": "Maria Island National Reference Station ADCP mooring", "definition": "ADCP mooring located at the Maria Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/66" + "about": "http://vocab.aodn.org.au/def/platform/entity/66", + "alt_labels": [ + "NRSMAI-ADCP" + ], + "is_latest_label": true }, { "label": "Maria Island National Reference Station surface mooring", "definition": "Surface mooring located at the Maria Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/68" + "about": "http://vocab.aodn.org.au/def/platform/entity/68", + "alt_labels": [ + "NRSMAI-Surface" + ], + "is_latest_label": true }, { "label": "Maria Island National Reference Station Acidification Mooring", "definition": "Acidification mooring located at the Maria Island National Reference Station. This mooring is operated by CSIRO.", - "about": "http://vocab.aodn.org.au/def/platform/entity/69" + "about": "http://vocab.aodn.org.au/def/platform/entity/69", + "alt_labels": [ + "NRSMAI-CO2" + ], + "is_latest_label": true }, { "label": "Animal Tracking Facility Seal Rocks Line (SRL2) Mooring", "definition": "The Animal Tracking Facility Seal Rocks Line (SRL2) Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data in the mid north coast region of New South Wales.", - "about": "http://vocab.aodn.org.au/def/platform/entity/89" + "about": "http://vocab.aodn.org.au/def/platform/entity/89", + "alt_labels": [ + "SR030" + ], + "is_latest_label": true }, { "label": "Wistari Channel acidification Mooring", "definition": "Acidification mooring located adjacent to the Heron Island reef slope in the Wistari channel on the Great Barrier Reef. This mooring is operated by AIMS (Australian Institute of Marine Science).", - "about": "http://vocab.aodn.org.au/def/platform/entity/898" + "about": "http://vocab.aodn.org.au/def/platform/entity/898", + "alt_labels": [ + "GBRWIS-CO2" + ], + "is_latest_label": true }, { "label": "Yongala National Reference Station Acidification Mooring", "definition": "Acidification mooring co-located with the Yongala National Reference Station (NRSYON) in Queensland. This mooring is operated by AIMS (Australian Institute of Marine Science). This mooring was decommissioned in August 2014.", - "about": "http://vocab.aodn.org.au/def/platform/entity/899" + "about": "http://vocab.aodn.org.au/def/platform/entity/899", + "alt_labels": [ + "NRSYON-CO2" + ], + "is_latest_label": true }, { "label": "Animal Tracking Facility Seal Rocks Line (SRL5) Mooring", "definition": "The Animal Tracking Facility Seal Rocks Line (SRL5) Mooring is operated by SIMS (Sydney Institute of Marine Science) and collects data in the mid north coast region of New South Wales.", - "about": "http://vocab.aodn.org.au/def/platform/entity/90" + "about": "http://vocab.aodn.org.au/def/platform/entity/90", + "alt_labels": [ + "SR050" + ], + "is_latest_label": true }, { "label": "TOTTEN1 Mooring", "definition": "Mooring 1 in the 2014-2015 Dalton/Totten mooring array, which was operated by CSIRO, and collects data adjacent to the Totten Glacier. This mooring was decommissioned in January 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/900" + "about": "http://vocab.aodn.org.au/def/platform/entity/900", + "alt_labels": [ + "TOTTEN1" + ], + "is_latest_label": true }, { "label": "TOTTEN2 Mooring", "definition": "Mooring 2 in the 2014-2015 Dalton/Totten mooring array, which was operated by CSIRO, and collects data adjacent to the Totten Glacier. This mooring was decommissioned in January 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/901" + "about": "http://vocab.aodn.org.au/def/platform/entity/901", + "alt_labels": [ + "TOTTEN2" + ], + "is_latest_label": true }, { "label": "TOTTEN3 Mooring", "definition": "Mooring 3 in the 2014-2015 Dalton/Totten mooring array, which was operated by CSIRO, and collects data adjacent to the Totten Glacier. This mooring was decommissioned in January 2015.", - "about": "http://vocab.aodn.org.au/def/platform/entity/902" + "about": "http://vocab.aodn.org.au/def/platform/entity/902", + "alt_labels": [ + "TOTTEN3" + ], + "is_latest_label": true }, { "label": "Two Rocks 44m Mooring", "definition": "The Two Rocks 44m Shelf Mooring is operated by CSIRO and collects data in the Two Rocks region.", - "about": "http://vocab.aodn.org.au/def/platform/entity/903" + "about": "http://vocab.aodn.org.au/def/platform/entity/903", + "alt_labels": [ + "WATR04" + ], + "is_latest_label": true }, { "label": "FluxPulse Mooring", "definition": "The FluxPulse mooring is operated by CSIRO, and measures biogeochemical properties of the Southern Ocean. It combines the instrumentation from previous separate deployments of the Pulse and SOFS mooring. It had one deployment in April 2016 and was replaced by a SOFS mooring.", - "about": "http://vocab.aodn.org.au/def/platform/entity/911" + "about": "http://vocab.aodn.org.au/def/platform/entity/911", + "alt_labels": [ + "FluxPulse" + ], + "is_latest_label": true } - ] + ], + "is_latest_label": true } ] } diff --git a/indexer/src/main/java/au/org/aodn/esindexer/service/IndexerServiceImpl.java b/indexer/src/main/java/au/org/aodn/esindexer/service/IndexerServiceImpl.java index 69ef7afe..7e1184a4 100644 --- a/indexer/src/main/java/au/org/aodn/esindexer/service/IndexerServiceImpl.java +++ b/indexer/src/main/java/au/org/aodn/esindexer/service/IndexerServiceImpl.java @@ -196,17 +196,13 @@ protected StacCollectionModel getMappedMetadataValues(String metadataValues) thr } // organisation vocabs - List processedOrganisationVocabs = vocabService.extractVocabLabelsFromThemes(stacCollectionModel.getThemes(), AppConstants.AODN_ORGANISATION_VOCABS); - if (!processedOrganisationVocabs.isEmpty()) { - stacCollectionModel.getSummaries().setOrganisationVocabs(processedOrganisationVocabs); - } + // TODO: the logics for mapping record's organisation vocabs are heavily customised for a manual approach, AI now or later? need dedicated service's method // search_as_you_type enabled fields can be extended SearchSuggestionsModel searchSuggestionsModel = SearchSuggestionsModel.builder() .abstractPhrases(this.extractTokensFromDescription(stacCollectionModel.getDescription())) .parameterVocabs(!processedParameterVocabs.isEmpty() ? processedParameterVocabs : null) .platformVocabs(!processedPlatformVocabs.isEmpty() ? processedPlatformVocabs : null) - .organisationVocabs(!processedOrganisationVocabs.isEmpty() ? processedOrganisationVocabs : null) .build(); stacCollectionModel.setSearchSuggestionsModel(searchSuggestionsModel); diff --git a/indexer/src/main/java/au/org/aodn/esindexer/service/VocabServiceImpl.java b/indexer/src/main/java/au/org/aodn/esindexer/service/VocabServiceImpl.java index 0cf5fa40..07c8ac65 100644 --- a/indexer/src/main/java/au/org/aodn/esindexer/service/VocabServiceImpl.java +++ b/indexer/src/main/java/au/org/aodn/esindexer/service/VocabServiceImpl.java @@ -92,10 +92,8 @@ public List extractVocabLabelsFromThemes(List themes, Strin List vocabs = switch (vocabType) { case AppConstants.AODN_DISCOVERY_PARAMETER_VOCABS -> self.getParameterVocabs(); case AppConstants.AODN_PLATFORM_VOCABS -> self.getPlatformVocabs(); - case AppConstants.AODN_ORGANISATION_VOCABS -> self.getOrganisationVocabs(); default -> new ArrayList<>(); }; - if (!vocabs.isEmpty() && !themes.isEmpty()) { vocabs.stream().filter(Objects::nonNull).forEach(topLevelVocab -> { if (topLevelVocab.has("narrower") && !topLevelVocab.get("narrower").isEmpty()) { diff --git a/indexer/src/main/resources/config_files/vocabs_index_schema.json b/indexer/src/main/resources/config_files/vocabs_index_schema.json index 8055f597..9c3113ef 100644 --- a/indexer/src/main/resources/config_files/vocabs_index_schema.json +++ b/indexer/src/main/resources/config_files/vocabs_index_schema.json @@ -7,6 +7,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "definition": { "type": "text" }, @@ -19,6 +34,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "about": { "type": "keyword" }, @@ -28,6 +58,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "about": { "type": "keyword" } @@ -42,6 +87,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "definition": { "type": "text" }, @@ -54,6 +114,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "about": { "type": "keyword" }, @@ -63,6 +138,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "about": { "type": "keyword" } @@ -77,6 +167,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "definition": { "type": "text" }, @@ -89,6 +194,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "about": { "type": "keyword" }, @@ -98,6 +218,21 @@ "label": { "type": "text" }, + "display_label": { + "type": "text" + }, + "hidden_labels": { + "type": "text" + }, + "alt_labels": { + "type": "text" + }, + "is_latest_label": { + "type": "boolean" + }, + "replaced_by": { + "type": "text" + }, "about": { "type": "keyword" } 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 1ba2309c..39440309 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 @@ -278,10 +278,6 @@ public void verifyExtractedVocabsFromActualRecord() throws IOException { List expectedPlatformVocabs = List.of("small boat"); List actualPlatformVocabs = indexerObjectMapper.convertValue(rootNode.path("summaries").path("platform_vocabs"), indexerObjectMapper.getTypeFactory().constructCollectionType(List.class, String.class)); Assertions.assertEquals(expectedPlatformVocabs.size(), actualPlatformVocabs.size(), "PlatformVocabs not equals for sample11."); - - List expectedOrganisationVocabs = List.of("national mooring network facility, integrated marine observing system (imos)"); - List actualOrganisationVocabs = indexerObjectMapper.convertValue(rootNode.path("summaries").path("organisation_vocabs"), indexerObjectMapper.getTypeFactory().constructCollectionType(List.class, String.class)); - Assertions.assertEquals(expectedOrganisationVocabs.size(), actualOrganisationVocabs.size(), "OrganisationVocabs not equals for sample11."); } finally { deleteRecord(uuid); } diff --git a/indexer/src/test/java/au/org/aodn/esindexer/service/VocabServiceTest.java b/indexer/src/test/java/au/org/aodn/esindexer/service/VocabServiceTest.java index 000aa443..e06839a8 100644 --- a/indexer/src/test/java/au/org/aodn/esindexer/service/VocabServiceTest.java +++ b/indexer/src/test/java/au/org/aodn/esindexer/service/VocabServiceTest.java @@ -98,30 +98,6 @@ void testExtractPlatformVocabLabelsFromThemes() throws IOException { assertEquals(5, platformVocabs.size()); } - @Test - void testExtractPOrganisationVocabLabelsFromThemes() throws IOException { - // Prepare themes - List themes = List.of( - new ThemesModel(Arrays.asList( - new ConceptModel("Hornsby Shire Council", "http://vocab.aodn.org.au/def/organisation/entity/408"), - new ConceptModel("Department of Environment and Natural Resources (DENR), Northern Territory Government", "http://vocab.aodn.org.au/def/organisation/entity/487"), - new ConceptModel("Parks Australia, Department of Agriculture, Water and the Environment (DAWE), Australian Government", "http://vocab.aodn.org.au/def/organisation/entity/637"), - new ConceptModel("Bureau of Meteorology (BOM), Department of Environment (DoE), Australian Government", "http://vocab.aodn.org.au/def/organisation/entity/11") - ), "theme", null, "AODN Organisation Vocabulary") - ); - - // Perform the test - List organisationVocabs = vocabService.extractVocabLabelsFromThemes(themes, AppConstants.AODN_ORGANISATION_VOCABS); - - // Assertions - assertNotNull(organisationVocabs); - assertTrue(organisationVocabs.stream().anyMatch(vocab -> vocab.equalsIgnoreCase("New South Wales Councils"))); - assertTrue(organisationVocabs.stream().anyMatch(vocab -> vocab.equalsIgnoreCase("Northern Territory Government"))); - assertTrue(organisationVocabs.stream().anyMatch(vocab -> vocab.equalsIgnoreCase("Department of Agriculture, Water and the Environment (DAWE), Australian Government"))); - assertTrue(organisationVocabs.stream().anyMatch(vocab -> vocab.equalsIgnoreCase("Department of the Environment (DoE), Australian Government"))); - assertEquals(4, organisationVocabs.size()); - } - @Test void testProcessParameterVocabs() throws IOException, JSONException { // read from ARDC